Metadata-Version: 2.4
Name: hyperopt
Version: 0.3.0rc0
Summary: Distributed Asynchronous Hyperparameter Optimization
Project-URL: Homepage, https://hyperopt.github.io/hyperopt
Project-URL: Source, https://github.com/hyperopt/hyperopt
Author-email: James Bergstra <james.bergstra@gmail.com>
License-Expression: BSD-3-Clause
License-File: LICENSE.txt
Keywords: Bayesian optimization,hyperparameter,model selection
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Requires-Python: >=3.10
Requires-Dist: cloudpickle
Requires-Dist: importlib-resources>=1.3; python_version < '3.9'
Requires-Dist: networkx>=2.2
Requires-Dist: numpy>=1.17
Requires-Dist: scipy>=1.5.0
Requires-Dist: tqdm
Provides-Extra: atpe
Requires-Dist: lightgbm; extra == 'atpe'
Requires-Dist: scikit-learn; extra == 'atpe'
Provides-Extra: mongotrials
Requires-Dist: pymongo>=4.0.0; extra == 'mongotrials'
Provides-Extra: sparktrials
Requires-Dist: py4j; extra == 'sparktrials'
Requires-Dist: pyspark; extra == 'sparktrials'
Description-Content-Type: text/markdown


# Hyperopt: Distributed Hyperparameter Optimization

<p align="center">
<img src="https://i.postimg.cc/TPmffWrp/hyperopt-new.png" />
</p>

[![build](https://github.com/hyperopt/hyperopt/actions/workflows/build.yml/badge.svg)](https://github.com/hyperopt/hyperopt/actions/workflows/build.yml)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/hyperopt/hyperopt/master.svg)](https://results.pre-commit.ci/latest/github/hyperopt/hyperopt/master)
[![PyPI version](https://badge.fury.io/py/hyperopt.svg)](https://badge.fury.io/py/hyperopt)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/hyperopt/badges/version.svg)](https://anaconda.org/conda-forge/hyperopt)

[Hyperopt](https://github.com/hyperopt/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

```bash
pip install hyperopt
# or with uv
uv add hyperopt
```

Hyperopt supports the following [extras](https://packaging.python.org/en/latest/specifications/dependency-specifiers/#extras):
- `SparkTrials`
- `MongoTrials`
- `ATPE`

to run your first example

```python
# 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](https://scikit-learn.org/stable/developers/contributing.html#contributing-code))

This project uses [uv](https://docs.astral.sh/uv/) for dependency management. Install it first if you haven’t:

```bash
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](https://help.github.com/articles/fork-a-repo/).

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

   ```bash
   git clone https://github.com/<github username>/hyperopt.git
   cd hyperopt
   ```

4. Install all dependencies (uv creates and manages the virtual environment automatically):

   ```bash
   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:

    ```bash
    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:

    ```bash
    git checkout master
    git pull upstream master
    ```

7. Create a feature branch to hold your development changes:

    ```bash
    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](https://github.com/psf/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](https://pre-commit.com/), which is installed automatically in step 4, as follows:

    ```bash
    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:

    ```bash
    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:

    ```bash
    git add modified_files
    git commit -m "my first hyperopt commit"
    ```

11. The tests for this project use [PyTest](https://docs.pytest.org/en/latest/) and can be run with:

    ```bash
    uv run pytest
    ```

    To test against all supported Python versions (matching CI), use [nox](https://nox.thea.codes):

    ```bash
    # 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:

    ```bash
    git push -u origin my_feature
    ```

## Algorithms

Currently three algorithms are implemented in hyperopt:

- [Random Search](http://www.jmlr.org/papers/v13/bergstra12a.html?source=post_page---------------------------)
- [Tree of Parzen Estimators (TPE)](https://papers.nips.cc/paper/4443-algorithms-for-hyper-parameter-optimization.pdf)
- [Adaptive TPE](https://articulon.bradleyarsenault.me/article/learning-to-optimize)

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:

- [Apache Spark](https://spark.apache.org/)
- [MongoDB](https://mongodb.com)

## Documentation

[Hyperopt documentation can be found here](http://hyperopt.github.io/hyperopt), but is partly still hosted on the wiki. Here are some quick links to the most relevant pages:

- [Basic tutorial](https://github.com/hyperopt/hyperopt/wiki/FMin)
- [Installation notes](https://github.com/hyperopt/hyperopt/wiki/Installation-Notes)
- [Using mongodb](https://github.com/hyperopt/hyperopt/wiki/Parallelizing-Evaluations-During-Search-via-MongoDB)

## Related Projects

- [hyperopt-sklearn](https://github.com/hyperopt/hyperopt-sklearn)
- [hyperopt-nnet](https://github.com/hyperopt/hyperopt-nnet)
- [hyperas](https://github.com/maxpumperla/hyperas)
- [hyperopt-convent](https://github.com/hyperopt/hyperopt-convnet)
- [hyperopt-gpsmbo](https://github.com/hyperopt/hyperopt-gpsmbo/blob/master/hp_gpsmbo/hpsuggest.py)

## Examples

See [projects using hyperopt](https://github.com/hyperopt/hyperopt/wiki/Hyperopt-in-Other-Projects) on the wiki.

## Announcements mailing list

[Announcements](https://groups.google.com/forum/#!forum/hyperopt-announce)

## Discussion mailing list

[Discussion](https://groups.google.com/forum/#!forum/hyperopt-discuss)

## 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.
