Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created November 14, 2020 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/63182e0e5bdbcb3494cd6f4c08832388 to your computer and use it in GitHub Desktop.
Save r-ryantm/63182e0e5bdbcb3494cd6f4c08832388 to your computer and use it in GitHub Desktop.
/nix/store/9972d4ap4rc25bwgrqqzk5b2fygj301h-python3.7-hyperopt-0.2.5
├── bin
│   └── hyperopt-mongo-worker
├── lib
│   └── python3.7
│   └── site-packages
│   ├── hyperopt
│   │   ├── algobase.py
│   │   ├── anneal.py
│   │   ├── atpe_models
│   │   │   ├── model-gamma-configuration.json
│   │   │   ├── model-gamma.txt
│   │   │   ├── model-nEICandidates-configuration.json
│   │   │   ├── model-nEICandidates.txt
│   │   │   ├── model-resultFilteringAgeMultiplier-configuration.json
│   │   │   ├── model-resultFilteringAgeMultiplier.txt
│   │   │   ├── model-resultFilteringLossRankMultiplier-configuration.json
│   │   │   ├── model-resultFilteringLossRankMultiplier.txt
│   │   │   ├── model-resultFilteringMode-configuration.json
│   │   │   ├── model-resultFilteringMode.txt
│   │   │   ├── model-resultFilteringRandomProbability-configuration.json
│   │   │   ├── model-resultFilteringRandomProbability.txt
│   │   │   ├── model-secondaryCorrelationExponent-configuration.json
│   │   │   ├── model-secondaryCorrelationExponent.txt
│   │   │   ├── model-secondaryCorrelationMultiplier-configuration.json
│   │   │   ├── model-secondaryCorrelationMultiplier.txt
│   │   │   ├── model-secondaryCutoff-configuration.json
│   │   │   ├── model-secondaryCutoff.txt
│   │   │   ├── model-secondaryFixedProbability-configuration.json
│   │   │   ├── model-secondaryFixedProbability.txt
│   │   │   ├── model-secondaryLockingMode-configuration.json
│   │   │   ├── model-secondaryLockingMode.txt
│   │   │   ├── model-secondaryProbabilityMode-configuration.json
│   │   │   ├── model-secondaryProbabilityMode.txt
│   │   │   ├── model-secondaryTopLockingPercentile-configuration.json
│   │   │   ├── model-secondaryTopLockingPercentile.txt
│   │   │   └── scaling_model.json
│   │   ├── atpe.py
│   │   ├── base.py
│   │   ├── criteria.py
│   │   ├── early_stop.py
│   │   ├── exceptions.py
│   │   ├── fmin.py
│   │   ├── graph_viz.py
│   │   ├── hp.py
│   │   ├── __init__.py
│   │   ├── ipy.py
│   │   ├── main.py
│   │   ├── mix.py
│   │   ├── mongoexp.py
│   │   ├── plotting.py
│   │   ├── progress.py
│   │   ├── __pycache__
│   │   │   ├── algobase.cpython-37.pyc
│   │   │   ├── anneal.cpython-37.pyc
│   │   │   ├── atpe.cpython-37.pyc
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── criteria.cpython-37.pyc
│   │   │   ├── early_stop.cpython-37.pyc
│   │   │   ├── exceptions.cpython-37.pyc
│   │   │   ├── fmin.cpython-37.pyc
│   │   │   ├── graph_viz.cpython-37.pyc
│   │   │   ├── hp.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── ipy.cpython-37.pyc
│   │   │   ├── main.cpython-37.pyc
│   │   │   ├── mix.cpython-37.pyc
│   │   │   ├── mongoexp.cpython-37.pyc
│   │   │   ├── plotting.cpython-37.pyc
│   │   │   ├── progress.cpython-37.pyc
│   │   │   ├── pyll_utils.cpython-37.pyc
│   │   │   ├── rand.cpython-37.pyc
│   │   │   ├── rdists.cpython-37.pyc
│   │   │   ├── spark.cpython-37.pyc
│   │   │   ├── std_out_err_redirect_tqdm.cpython-37.pyc
│   │   │   ├── tpe.cpython-37.pyc
│   │   │   ├── utils.cpython-37.pyc
│   │   │   └── vectorize.cpython-37.pyc
│   │   ├── pyll
│   │   │   ├── base.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── stochastic.cpython-37.pyc
│   │   │   ├── stochastic.py
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_base.cpython-37.pyc
│   │   │   │   └── test_stochastic.cpython-37.pyc
│   │   │   ├── test_base.py
│   │   │   └── test_stochastic.py
│   │   ├── pyll_utils.py
│   │   ├── rand.py
│   │   ├── rdists.py
│   │   ├── spark.py
│   │   ├── std_out_err_redirect_tqdm.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_anneal.cpython-37.pyc
│   │   │   │   ├── test_atpe_basic.cpython-37.pyc
│   │   │   │   ├── test_base.cpython-37.pyc
│   │   │   │   ├── test_criteria.cpython-37.pyc
│   │   │   │   ├── test_domains.cpython-37.pyc
│   │   │   │   ├── test_fmin.cpython-37.pyc
│   │   │   │   ├── test_ipy.cpython-37.pyc
│   │   │   │   ├── test_mongoexp.cpython-37.pyc
│   │   │   │   ├── test_pchoice.cpython-37.pyc
│   │   │   │   ├── test_plotting.cpython-37.pyc
│   │   │   │   ├── test_progress.cpython-37.pyc
│   │   │   │   ├── test_pyll_utils.cpython-37.pyc
│   │   │   │   ├── test_rand.cpython-37.pyc
│   │   │   │   ├── test_randint.cpython-37.pyc
│   │   │   │   ├── test_rdists.cpython-37.pyc
│   │   │   │   ├── test_spark.cpython-37.pyc
│   │   │   │   ├── test_tpe.cpython-37.pyc
│   │   │   │   ├── test_utils.cpython-37.pyc
│   │   │   │   ├── test_vectorize.cpython-37.pyc
│   │   │   │   └── test_webpage.cpython-37.pyc
│   │   │   ├── test_anneal.py
│   │   │   ├── test_atpe_basic.py
│   │   │   ├── test_base.py
│   │   │   ├── test_criteria.py
│   │   │   ├── test_domains.py
│   │   │   ├── test_fmin.py
│   │   │   ├── test_ipy.py
│   │   │   ├── test_mongoexp.py
│   │   │   ├── test_pchoice.py
│   │   │   ├── test_plotting.py
│   │   │   ├── test_progress.py
│   │   │   ├── test_pyll_utils.py
│   │   │   ├── test_randint.py
│   │   │   ├── test_rand.py
│   │   │   ├── test_rdists.py
│   │   │   ├── test_spark.py
│   │   │   ├── test_tpe.py
│   │   │   ├── test_utils.py
│   │   │   ├── test_vectorize.py
│   │   │   └── test_webpage.py
│   │   ├── tpe.py
│   │   ├── utils.py
│   │   └── vectorize.py
│   └── hyperopt-0.2.5.dist-info
│   ├── direct_url.json
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── REQUESTED
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
15 directories, 141 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment