├── .gitignore ├── .gitmodules ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.txt ├── Makefile ├── README.md ├── _config.yml ├── assets ├── html │ ├── simple_example.html │ └── simple_saved_report.html └── images │ ├── exp_tree.png │ ├── logo.png │ ├── ml_loop.png │ ├── monitor_screenshot.png │ ├── pipeline.png │ ├── randopt_dice.png │ ├── roviz_overview.png │ └── vis_tuto_x_vs_result.png ├── bin ├── footer.html ├── header.html ├── ropt.py ├── roviz.py └── visualization.html ├── examples ├── attachments_example.py ├── command_example.py ├── evo_example.py ├── grad_descent.py ├── gs_example.py ├── hb_example.py ├── hb_vs_random.py ├── monitor.py ├── multi_params.py ├── objective_examples.py ├── quadratic.py ├── simple.py └── summary_list_example.py ├── gendocs.py ├── randopt ├── __init__.py ├── _version.py ├── command.py ├── experiment │ ├── __init__.py │ ├── evolutionary.py │ ├── experiment.py │ ├── grid_search.py │ └── hyperband.py ├── objectives │ ├── __init__.py │ └── objectives.py ├── samplers.py ├── statistics.py └── utils.py ├── setup.cfg ├── setup.py └── test ├── experiment_tests.py ├── ropt_simple.py ├── ropt_tests.py └── utils_tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/html/simple_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/assets/html/simple_example.html -------------------------------------------------------------------------------- /assets/html/simple_saved_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/assets/html/simple_saved_report.html -------------------------------------------------------------------------------- /assets/images/exp_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/assets/images/exp_tree.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/ml_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/assets/images/ml_loop.png -------------------------------------------------------------------------------- /assets/images/monitor_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/assets/images/monitor_screenshot.png -------------------------------------------------------------------------------- /assets/images/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/assets/images/pipeline.png -------------------------------------------------------------------------------- /assets/images/randopt_dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/assets/images/randopt_dice.png -------------------------------------------------------------------------------- /assets/images/roviz_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/assets/images/roviz_overview.png -------------------------------------------------------------------------------- /assets/images/vis_tuto_x_vs_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/assets/images/vis_tuto_x_vs_result.png -------------------------------------------------------------------------------- /bin/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/bin/footer.html -------------------------------------------------------------------------------- /bin/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/bin/header.html -------------------------------------------------------------------------------- /bin/ropt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/bin/ropt.py -------------------------------------------------------------------------------- /bin/roviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/bin/roviz.py -------------------------------------------------------------------------------- /bin/visualization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/bin/visualization.html -------------------------------------------------------------------------------- /examples/attachments_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/examples/attachments_example.py -------------------------------------------------------------------------------- /examples/command_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/examples/command_example.py -------------------------------------------------------------------------------- /examples/evo_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/examples/evo_example.py -------------------------------------------------------------------------------- /examples/grad_descent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/examples/grad_descent.py -------------------------------------------------------------------------------- /examples/gs_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/examples/gs_example.py -------------------------------------------------------------------------------- /examples/hb_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/examples/hb_example.py -------------------------------------------------------------------------------- /examples/hb_vs_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/examples/hb_vs_random.py -------------------------------------------------------------------------------- /examples/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/examples/monitor.py -------------------------------------------------------------------------------- /examples/multi_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/examples/multi_params.py -------------------------------------------------------------------------------- /examples/objective_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/examples/objective_examples.py -------------------------------------------------------------------------------- /examples/quadratic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/examples/quadratic.py -------------------------------------------------------------------------------- /examples/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/examples/simple.py -------------------------------------------------------------------------------- /examples/summary_list_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/examples/summary_list_example.py -------------------------------------------------------------------------------- /gendocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/gendocs.py -------------------------------------------------------------------------------- /randopt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/randopt/__init__.py -------------------------------------------------------------------------------- /randopt/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.2.7' 2 | -------------------------------------------------------------------------------- /randopt/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/randopt/command.py -------------------------------------------------------------------------------- /randopt/experiment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/randopt/experiment/__init__.py -------------------------------------------------------------------------------- /randopt/experiment/evolutionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/randopt/experiment/evolutionary.py -------------------------------------------------------------------------------- /randopt/experiment/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/randopt/experiment/experiment.py -------------------------------------------------------------------------------- /randopt/experiment/grid_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/randopt/experiment/grid_search.py -------------------------------------------------------------------------------- /randopt/experiment/hyperband.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/randopt/experiment/hyperband.py -------------------------------------------------------------------------------- /randopt/objectives/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | from .objectives import * 4 | -------------------------------------------------------------------------------- /randopt/objectives/objectives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/randopt/objectives/objectives.py -------------------------------------------------------------------------------- /randopt/samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/randopt/samplers.py -------------------------------------------------------------------------------- /randopt/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/randopt/statistics.py -------------------------------------------------------------------------------- /randopt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/randopt/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/setup.py -------------------------------------------------------------------------------- /test/experiment_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/test/experiment_tests.py -------------------------------------------------------------------------------- /test/ropt_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/test/ropt_simple.py -------------------------------------------------------------------------------- /test/ropt_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/test/ropt_tests.py -------------------------------------------------------------------------------- /test/utils_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seba-1511/randopt/HEAD/test/utils_tests.py --------------------------------------------------------------------------------