├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── README.txt ├── RELEASE.txt ├── distribute_setup.py ├── hyperopt ├── __init__.py ├── algobase.py ├── anneal.py ├── bandits.py ├── base.py ├── exceptions.py ├── fmin.py ├── graphviz.py ├── hp.py ├── ipy.py ├── main.py ├── mongoexp.py ├── plotting.py ├── pyll │ ├── __init__.py │ ├── base.py │ ├── stochastic.py │ └── tests │ │ ├── test_base.py │ │ └── test_stochastic.py ├── pyll_utils.py ├── rand.py ├── tests │ ├── __init__.py │ ├── test_anneal.py │ ├── test_bandits.py │ ├── test_base.py │ ├── test_fmin.py │ ├── test_ipy.py │ ├── test_mongoexp.py │ ├── test_pchoice.py │ ├── test_plotting.py │ ├── test_pyll_utils.py │ ├── test_rand.py │ ├── test_tpe.py │ ├── test_utils.py │ ├── test_vectorize.py │ └── test_webpage.py ├── tpe.py ├── utils.py └── vectorize.py ├── recipes └── Partial-sampling in hyperopt.ipynb ├── scripts └── hyperopt-mongo-worker └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .noseids 2 | *.pyc 3 | *.swp 4 | *egg-info* 5 | build/ 6 | dist/ 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/README.txt -------------------------------------------------------------------------------- /RELEASE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/RELEASE.txt -------------------------------------------------------------------------------- /distribute_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/distribute_setup.py -------------------------------------------------------------------------------- /hyperopt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/__init__.py -------------------------------------------------------------------------------- /hyperopt/algobase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/algobase.py -------------------------------------------------------------------------------- /hyperopt/anneal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/anneal.py -------------------------------------------------------------------------------- /hyperopt/bandits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/bandits.py -------------------------------------------------------------------------------- /hyperopt/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/base.py -------------------------------------------------------------------------------- /hyperopt/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/exceptions.py -------------------------------------------------------------------------------- /hyperopt/fmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/fmin.py -------------------------------------------------------------------------------- /hyperopt/graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/graphviz.py -------------------------------------------------------------------------------- /hyperopt/hp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/hp.py -------------------------------------------------------------------------------- /hyperopt/ipy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/ipy.py -------------------------------------------------------------------------------- /hyperopt/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/main.py -------------------------------------------------------------------------------- /hyperopt/mongoexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/mongoexp.py -------------------------------------------------------------------------------- /hyperopt/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/plotting.py -------------------------------------------------------------------------------- /hyperopt/pyll/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/pyll/__init__.py -------------------------------------------------------------------------------- /hyperopt/pyll/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/pyll/base.py -------------------------------------------------------------------------------- /hyperopt/pyll/stochastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/pyll/stochastic.py -------------------------------------------------------------------------------- /hyperopt/pyll/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/pyll/tests/test_base.py -------------------------------------------------------------------------------- /hyperopt/pyll/tests/test_stochastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/pyll/tests/test_stochastic.py -------------------------------------------------------------------------------- /hyperopt/pyll_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/pyll_utils.py -------------------------------------------------------------------------------- /hyperopt/rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/rand.py -------------------------------------------------------------------------------- /hyperopt/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperopt/tests/test_anneal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tests/test_anneal.py -------------------------------------------------------------------------------- /hyperopt/tests/test_bandits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tests/test_bandits.py -------------------------------------------------------------------------------- /hyperopt/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tests/test_base.py -------------------------------------------------------------------------------- /hyperopt/tests/test_fmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tests/test_fmin.py -------------------------------------------------------------------------------- /hyperopt/tests/test_ipy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tests/test_ipy.py -------------------------------------------------------------------------------- /hyperopt/tests/test_mongoexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tests/test_mongoexp.py -------------------------------------------------------------------------------- /hyperopt/tests/test_pchoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tests/test_pchoice.py -------------------------------------------------------------------------------- /hyperopt/tests/test_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tests/test_plotting.py -------------------------------------------------------------------------------- /hyperopt/tests/test_pyll_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tests/test_pyll_utils.py -------------------------------------------------------------------------------- /hyperopt/tests/test_rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tests/test_rand.py -------------------------------------------------------------------------------- /hyperopt/tests/test_tpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tests/test_tpe.py -------------------------------------------------------------------------------- /hyperopt/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tests/test_utils.py -------------------------------------------------------------------------------- /hyperopt/tests/test_vectorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tests/test_vectorize.py -------------------------------------------------------------------------------- /hyperopt/tests/test_webpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tests/test_webpage.py -------------------------------------------------------------------------------- /hyperopt/tpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/tpe.py -------------------------------------------------------------------------------- /hyperopt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/utils.py -------------------------------------------------------------------------------- /hyperopt/vectorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/hyperopt/vectorize.py -------------------------------------------------------------------------------- /recipes/Partial-sampling in hyperopt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/recipes/Partial-sampling in hyperopt.ipynb -------------------------------------------------------------------------------- /scripts/hyperopt-mongo-worker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/scripts/hyperopt-mongo-worker -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/hyperopt/HEAD/setup.py --------------------------------------------------------------------------------