├── .gitignore ├── .landscape.yml ├── .travis.yml ├── README.md ├── circle.yml ├── docs ├── .buildinfo ├── .doctrees │ ├── apis.doctree │ ├── environment.pickle │ ├── index.doctree │ ├── installation.doctree │ └── quickstart.doctree ├── .nojekyll ├── _sources │ ├── apis.rst.txt │ ├── apis.txt │ ├── index.rst.txt │ ├── index.txt │ ├── installation.rst.txt │ ├── installation.txt │ ├── quickstart.rst.txt │ └── quickstart.txt ├── _static │ ├── ajax-loader.gif │ ├── alabaster.css │ ├── basic.css │ ├── bootstrap-2.3.2 │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── bootstrap-3.3.6 │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── bootstrap-sphinx.css │ ├── bootstrap-sphinx.js │ ├── bootswatch-2.3.2 │ │ ├── amelia │ │ │ └── bootstrap.min.css │ │ ├── cerulean │ │ │ └── bootstrap.min.css │ │ ├── cosmo │ │ │ └── bootstrap.min.css │ │ ├── cyborg │ │ │ └── bootstrap.min.css │ │ ├── flatly │ │ │ └── bootstrap.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ ├── journal │ │ │ └── bootstrap.min.css │ │ ├── readable │ │ │ └── bootstrap.min.css │ │ ├── simplex │ │ │ └── bootstrap.min.css │ │ ├── slate │ │ │ └── bootstrap.min.css │ │ ├── spacelab │ │ │ └── bootstrap.min.css │ │ ├── spruce │ │ │ └── bootstrap.min.css │ │ ├── superhero │ │ │ └── bootstrap.min.css │ │ └── united │ │ │ └── bootstrap.min.css │ ├── bootswatch-3.3.6 │ │ ├── cerulean │ │ │ └── bootstrap.min.css │ │ ├── cosmo │ │ │ └── bootstrap.min.css │ │ ├── custom │ │ │ └── bootstrap.min.css │ │ ├── cyborg │ │ │ └── bootstrap.min.css │ │ ├── darkly │ │ │ └── bootstrap.min.css │ │ ├── flatly │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── journal │ │ │ └── bootstrap.min.css │ │ ├── lumen │ │ │ └── bootstrap.min.css │ │ ├── paper │ │ │ └── bootstrap.min.css │ │ ├── readable │ │ │ └── bootstrap.min.css │ │ ├── sandstone │ │ │ └── bootstrap.min.css │ │ ├── simplex │ │ │ └── bootstrap.min.css │ │ ├── slate │ │ │ └── bootstrap.min.css │ │ ├── spacelab │ │ │ └── bootstrap.min.css │ │ ├── superhero │ │ │ └── bootstrap.min.css │ │ ├── united │ │ │ └── bootstrap.min.css │ │ └── yeti │ │ │ └── bootstrap.min.css │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── custom.css │ ├── doctools.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── jquery-3.1.0.js │ ├── jquery.js │ ├── js │ │ ├── jquery-1.11.0.min.js │ │ └── jquery-fix.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js ├── apis.html ├── genindex.html ├── index.html ├── installation.html ├── objects.inv ├── py-modindex.html ├── quickstart.html ├── search.html ├── searchindex.js └── source │ ├── apis.rst │ ├── conf.py │ ├── index.rst │ ├── installation.rst │ └── quickstart.rst ├── examples ├── bo_on_branin.py ├── branin.py └── keras_mnist_mlp.py ├── labwatch ├── __about__.py ├── __init__.py ├── assistant.py ├── converters │ ├── __init__.py │ └── convert_to_configspace.py ├── hyperparameters.py ├── optimizers │ ├── __init__.py │ ├── base.py │ ├── bayesian_optimization.py │ ├── bohamiann.py │ ├── dngo.py │ ├── random_search.py │ └── smac_wrapper.py ├── searchspace.py └── utils │ ├── __init__.py │ ├── fixed_dict.py │ ├── hashing.py │ ├── types.py │ └── version_checks.py ├── setup.py └── tests ├── test_conversion.py └── test_searchspace.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/.gitignore -------------------------------------------------------------------------------- /.landscape.yml: -------------------------------------------------------------------------------- 1 | pep8: 2 | full: true 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/circle.yml -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.doctrees/apis.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/.doctrees/apis.doctree -------------------------------------------------------------------------------- /docs/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/.doctrees/installation.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/.doctrees/installation.doctree -------------------------------------------------------------------------------- /docs/.doctrees/quickstart.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/.doctrees/quickstart.doctree -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_sources/apis.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_sources/apis.rst.txt -------------------------------------------------------------------------------- /docs/_sources/apis.txt: -------------------------------------------------------------------------------- 1 | API 2 | === 3 | -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_sources/index.txt -------------------------------------------------------------------------------- /docs/_sources/installation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_sources/installation.rst.txt -------------------------------------------------------------------------------- /docs/_sources/installation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_sources/installation.txt -------------------------------------------------------------------------------- /docs/_sources/quickstart.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_sources/quickstart.rst.txt -------------------------------------------------------------------------------- /docs/_sources/quickstart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_sources/quickstart.txt -------------------------------------------------------------------------------- /docs/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/alabaster.css -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/bootstrap-2.3.2/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-2.3.2/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /docs/_static/bootstrap-2.3.2/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-2.3.2/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /docs/_static/bootstrap-2.3.2/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-2.3.2/css/bootstrap.css -------------------------------------------------------------------------------- /docs/_static/bootstrap-2.3.2/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-2.3.2/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootstrap-2.3.2/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-2.3.2/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /docs/_static/bootstrap-2.3.2/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-2.3.2/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /docs/_static/bootstrap-2.3.2/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-2.3.2/js/bootstrap.js -------------------------------------------------------------------------------- /docs/_static/bootstrap-2.3.2/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-2.3.2/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/css/bootstrap-theme.css -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/css/bootstrap.css -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/css/bootstrap.css.map -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/js/bootstrap.js -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/_static/bootstrap-3.3.6/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-3.3.6/js/npm.js -------------------------------------------------------------------------------- /docs/_static/bootstrap-sphinx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-sphinx.css -------------------------------------------------------------------------------- /docs/_static/bootstrap-sphinx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootstrap-sphinx.js -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/amelia/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/amelia/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/cerulean/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/cerulean/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/cosmo/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/cosmo/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/cyborg/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/cyborg/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/flatly/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/flatly/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/journal/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/journal/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/readable/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/readable/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/simplex/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/simplex/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/slate/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/slate/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/spacelab/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/spacelab/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/spruce/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/spruce/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/superhero/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/superhero/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-2.3.2/united/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-2.3.2/united/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/cerulean/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/cerulean/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/cosmo/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/cosmo/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/custom/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/custom/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/cyborg/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/cyborg/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/darkly/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/darkly/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/flatly/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/flatly/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/journal/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/journal/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/lumen/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/lumen/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/paper/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/paper/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/readable/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/readable/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/sandstone/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/sandstone/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/simplex/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/simplex/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/slate/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/slate/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/spacelab/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/spacelab/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/superhero/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/superhero/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/united/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/united/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/bootswatch-3.3.6/yeti/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/bootswatch-3.3.6/yeti/bootstrap.min.css -------------------------------------------------------------------------------- /docs/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/comment.png -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/down.png -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/jquery-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/jquery-3.1.0.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/js/jquery-1.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/js/jquery-1.11.0.min.js -------------------------------------------------------------------------------- /docs/_static/js/jquery-fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/js/jquery-fix.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/up.png -------------------------------------------------------------------------------- /docs/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/_static/websupport.js -------------------------------------------------------------------------------- /docs/apis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/apis.html -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/installation.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/py-modindex.html -------------------------------------------------------------------------------- /docs/quickstart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/quickstart.html -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /docs/source/apis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/source/apis.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/docs/source/quickstart.rst -------------------------------------------------------------------------------- /examples/bo_on_branin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/examples/bo_on_branin.py -------------------------------------------------------------------------------- /examples/branin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/examples/branin.py -------------------------------------------------------------------------------- /examples/keras_mnist_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/examples/keras_mnist_mlp.py -------------------------------------------------------------------------------- /labwatch/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/__about__.py -------------------------------------------------------------------------------- /labwatch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/__init__.py -------------------------------------------------------------------------------- /labwatch/assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/assistant.py -------------------------------------------------------------------------------- /labwatch/converters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labwatch/converters/convert_to_configspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/converters/convert_to_configspace.py -------------------------------------------------------------------------------- /labwatch/hyperparameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/hyperparameters.py -------------------------------------------------------------------------------- /labwatch/optimizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/optimizers/__init__.py -------------------------------------------------------------------------------- /labwatch/optimizers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/optimizers/base.py -------------------------------------------------------------------------------- /labwatch/optimizers/bayesian_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/optimizers/bayesian_optimization.py -------------------------------------------------------------------------------- /labwatch/optimizers/bohamiann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/optimizers/bohamiann.py -------------------------------------------------------------------------------- /labwatch/optimizers/dngo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/optimizers/dngo.py -------------------------------------------------------------------------------- /labwatch/optimizers/random_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/optimizers/random_search.py -------------------------------------------------------------------------------- /labwatch/optimizers/smac_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/optimizers/smac_wrapper.py -------------------------------------------------------------------------------- /labwatch/searchspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/searchspace.py -------------------------------------------------------------------------------- /labwatch/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/utils/__init__.py -------------------------------------------------------------------------------- /labwatch/utils/fixed_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/utils/fixed_dict.py -------------------------------------------------------------------------------- /labwatch/utils/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/utils/hashing.py -------------------------------------------------------------------------------- /labwatch/utils/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/utils/types.py -------------------------------------------------------------------------------- /labwatch/utils/version_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/labwatch/utils/version_checks.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/tests/test_conversion.py -------------------------------------------------------------------------------- /tests/test_searchspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/labwatch/HEAD/tests/test_searchspace.py --------------------------------------------------------------------------------