Skip to main content

Distributed Asynchronous Hyperparameter Optimization

Project description

Hyperopt: Distributed Hyperparameter Optimization

build pre-commit.ci status PyPI version Anaconda-Server Badge

Hyperopt is a Python library for serial and parallel optimization over awkward search spaces, which may include real-valued, discrete, and conditional dimensions.

Getting started

Install hyperopt from PyPI

pip install hyperopt
# or with uv
uv add hyperopt

Hyperopt supports the following extras:

  • SparkTrials
  • MongoTrials
  • ATPE

to run your first example

# define an objective function
def objective(args):
    case, val = args
    if case == 'case 1':
        return val
    else:
        return val ** 2

# define a search space
from hyperopt import hp
space = hp.choice('a',
    [
        ('case 1', 1 + hp.lognormal('c1', 0, 1)),
        ('case 2', hp.uniform('c2', -10, 10))
    ])

# minimize the objective over the space
from hyperopt import fmin, tpe, space_eval
best = fmin(objective, space, algo=tpe.suggest, max_evals=100)

print(best)
# -> {'a': 1, 'c2': 0.01420615366247227}
print(space_eval(space, best))
# -> ('case 2', 0.01420615366247227}

Contributing

If you're a developer and wish to contribute, please follow these steps.

Setup (based on this)

This project uses uv for dependency management. Install it first if you haven’t:

curl -LsSf https://astral.sh/uv/install.sh | sh
  1. Create an account on GitHub if you do not already have one.

  2. Fork the project repository: click on the ‘Fork’ button near the top of the page. This creates a copy of the code under your account on the GitHub user account. For more details on how to fork a repository see this guide.

  3. Clone your fork of the hyperopt repo from your GitHub account to your local disk:

    git clone https://github.com/<github username>/hyperopt.git
    cd hyperopt
    
  4. Install all dependencies (uv creates and manages the virtual environment automatically):

    uv sync --group dev
    
  5. Add the upstream remote. This saves a reference to the main hyperopt repository, which you can use to keep your repository synchronized with the latest changes:

    git remote add upstream https://github.com/hyperopt/hyperopt.git
    

    You should now have a working installation of hyperopt, and your git repository properly configured. The next steps now describe the process of modifying code and submitting a PR:

  6. Synchronize your master branch with the upstream master branch:

    git checkout master
    git pull upstream master
    
  7. Create a feature branch to hold your development changes:

    git checkout -b my_feature
    

    and start making changes. Always use a feature branch. It’s good practice to never work on the master branch!

  8. We recommend to use Black to format your code before submitting a PR, which is installed automatically in step 4.

  9. Then, once you commit ensure that git hooks are activated (Pycharm for example has the option to omit them). This can be done using pre-commit, which is installed automatically in step 4, as follows:

    uv run pre-commit install
    

    This will run black automatically when you commit on all files you modified, failing if there are any files requiring to be blacked. In case black does not run execute the following:

    uv run pre-commit run --all-files
    
  10. Develop the feature on your feature branch on your computer, using Git to do the version control. When you’re done editing, add changed files using git add and then git commit:

    git add modified_files
    git commit -m "my first hyperopt commit"
    
  11. The tests for this project use PyTest and can be run with:

    uv run pytest
    

    To test against all supported Python versions (matching CI), use nox:

    # all versions sequentially
    uv run nox
    
    # all versions in parallel
    uv run nox -s tests_parallel
    
    # a specific version only
    uv run nox -p 3.12
    
  12. Record your changes in Git, then push the changes to your GitHub account with:

    git push -u origin my_feature
    

Algorithms

Currently three algorithms are implemented in hyperopt:

Hyperopt has been designed to accommodate Bayesian optimization algorithms based on Gaussian processes and regression trees, but these are not currently implemented.

All algorithms can be parallelized in two ways, using:

Documentation

Hyperopt documentation can be found here, but is partly still hosted on the wiki. Here are some quick links to the most relevant pages:

Related Projects

Examples

See projects using hyperopt on the wiki.

Announcements mailing list

Announcements

Discussion mailing list

Discussion

Cite

If you use this software for research, please cite the paper (http://proceedings.mlr.press/v28/bergstra13.pdf) as follows:

Bergstra, J., Yamins, D., Cox, D. D. (2013) Making a Science of Model Search: Hyperparameter Optimization in Hundreds of Dimensions for Vision Architectures. TProc. of the 30th International Conference on Machine Learning (ICML 2013), June 2013, pp. I-115 to I-23.

Thanks

This project has received support from

  • National Science Foundation (IIS-0963668),
  • Banting Postdoctoral Fellowship program,
  • National Science and Engineering Research Council of Canada (NSERC),
  • D-Wave Systems, Inc.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hyperopt-0.3.0rc0.tar.gz (1.2 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hyperopt-0.3.0rc0-py3-none-any.whl (973.6 kB view details)

Uploaded Python 3

File details

Details for the file hyperopt-0.3.0rc0.tar.gz.

File metadata

  • Download URL: hyperopt-0.3.0rc0.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hyperopt-0.3.0rc0.tar.gz
Algorithm Hash digest
SHA256 24934faf4f1a093a62a585568b0ce69274e3f8b21e15b8c97895a9bc7206a99d
MD5 e1889b788ab9f59825a91a82fa316851
BLAKE2b-256 233103cb859aea9aa05748b81c02b0b21c9cc5e6279c498a0b6ee0131f9b78c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hyperopt-0.3.0rc0.tar.gz:

Publisher: publish-to-pypi.yml on hyperopt/hyperopt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hyperopt-0.3.0rc0-py3-none-any.whl.

File metadata

  • Download URL: hyperopt-0.3.0rc0-py3-none-any.whl
  • Upload date:
  • Size: 973.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hyperopt-0.3.0rc0-py3-none-any.whl
Algorithm Hash digest
SHA256 06398e17bdfa484657a65d1b0e6124de8f5f740af69abd682cceaf6af912c7c8
MD5 f5cf39bf8bb8bf5e1ebda8b821e3da44
BLAKE2b-256 4824260c298908291916f055a739ce4197335d1d37887abd9cd26e450327bdb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for hyperopt-0.3.0rc0-py3-none-any.whl:

Publisher: publish-to-pypi.yml on hyperopt/hyperopt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page