├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md ├── release-drafter.yml └── workflows │ ├── build.yml │ ├── dashboard-build.yml │ ├── dashboard-src-new-with-playwright.yml │ ├── dashboard-src.yml.deactivated │ ├── fake_orion_server.json │ ├── fake_orion_server.py │ ├── orion │ ├── add_uncompleted_experiment.py │ ├── db_dashboard_full.pkl │ ├── db_dashboard_full_with_uncompleted_experiments.pkl │ ├── orion_config.yaml │ ├── orion_config_mongodb.yaml │ └── pickle_to_mongodb.py │ ├── release-drafter.yml │ └── release_master_dev_resync.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yml ├── CITATION.bib ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── ROADMAP.md ├── codecov.yml ├── conda ├── ci_build.sh ├── meta.yaml └── upload.sh ├── dashboard ├── build │ ├── asset-manifest.json │ ├── index.html │ └── static │ │ ├── css │ │ ├── main.56b5d8c7.css │ │ └── main.56b5d8c7.css.map │ │ └── js │ │ ├── main.f53d74b0.js │ │ ├── main.f53d74b0.js.LICENSE.txt │ │ └── main.f53d74b0.js.map └── src │ ├── .gitignore │ ├── .yarn │ └── releases │ │ └── yarn-4.11.0.cjs │ ├── .yarnrc.yml │ ├── README.rst │ ├── package.json │ ├── playwright.config.js │ ├── public │ └── index.html │ ├── src │ ├── App.js │ ├── __tests__ │ │ ├── ExperimentNavBar.test.js │ │ ├── VisualizationsPage.test.js │ │ ├── benchmark.test.js │ │ ├── experiments.databasePage.test.js │ │ ├── flattenObject.test.js │ │ └── queryServer.test.js │ ├── benchmarks │ │ ├── Benchmarks.js │ │ ├── app.scss │ │ ├── components │ │ │ └── BenchmarkNavBar │ │ │ │ ├── BenchmarkNavBar.js │ │ │ │ └── index.js │ │ └── content │ │ │ ├── BenchmarkConfigurationPage │ │ │ ├── BenchmarkConfigurationPage.js │ │ │ ├── _configuration-page.scss │ │ │ └── index.js │ │ │ ├── BenchmarkDatabasePage │ │ │ ├── BenchmarkDatabasePage.js │ │ │ ├── TrialTable.js │ │ │ ├── _database-page.scss │ │ │ └── index.js │ │ │ ├── BenchmarkStatusPage │ │ │ ├── BenchmarkStatusPage.js │ │ │ ├── _status-page.scss │ │ │ └── index.js │ │ │ └── BenchmarkVisualizationsPage │ │ │ ├── BenchmarkVisualizationsPage.js │ │ │ ├── PlotRender.js │ │ │ ├── _plot-box.scss │ │ │ ├── _visualizations-page.scss │ │ │ ├── _visualizations_page.scss │ │ │ └── index.js │ ├── experiments │ │ ├── BackendContext.js │ │ ├── Experiments.js │ │ ├── app.scss │ │ ├── components │ │ │ ├── ExperimentNavBar │ │ │ │ ├── ExperimentNavBar.js │ │ │ │ └── index.js │ │ │ ├── ExperimentStatusBar │ │ │ │ ├── ExperimentStatusBar.js │ │ │ │ └── ExperimentStatusProvider.js │ │ │ └── TutorialHeader │ │ │ │ ├── TutorialHeader.js │ │ │ │ ├── _tutorial-header.scss │ │ │ │ └── index.js │ │ └── content │ │ │ ├── ConfigurationPage │ │ │ ├── ConfigurationPage.js │ │ │ ├── _configuration-page.scss │ │ │ └── index.js │ │ │ ├── DatabasePage │ │ │ ├── DatabasePage.js │ │ │ ├── FeaturedTable.js │ │ │ ├── ObjectToGrid.js │ │ │ ├── TrialsProvider.js │ │ │ ├── _database-page.scss │ │ │ └── index.js │ │ │ ├── LandingPage │ │ │ ├── LandingPage.js │ │ │ ├── _landing-page.scss │ │ │ ├── _mixins.scss │ │ │ ├── _overrides.scss │ │ │ └── index.js │ │ │ ├── StatusPage │ │ │ ├── StatusPage.js │ │ │ ├── _status-page.scss │ │ │ └── index.js │ │ │ └── VisualizationsPage │ │ │ ├── LocalParameterImportance.js │ │ │ ├── LocalParameterImportancePlot.js │ │ │ ├── ParallelCoordinatesPlot.js │ │ │ ├── PlotBox.js │ │ │ ├── RegretPlot.js │ │ │ ├── VisualizationsPage.js │ │ │ ├── _plot-box.scss │ │ │ ├── _visualizations-page.scss │ │ │ ├── _visualizations_page.scss │ │ │ └── index.js │ ├── index.js │ ├── index.scss │ ├── serviceWorker.js │ ├── setupTests.js │ ├── style.css │ └── utils │ │ ├── flattenObject.js │ │ └── queryServer.js │ └── yarn.lock ├── dev-requirements.txt ├── docs ├── requirements.txt ├── scripts │ ├── build_database_and_plots.py │ ├── filter_database.py │ └── requirements.txt └── src │ ├── _resources │ ├── one.png │ └── synchronization.png │ ├── _static │ ├── .gitkeep │ ├── cmdline.png │ ├── hyperband-cifar10_lpi.html │ ├── hyperband-cifar10_parallel_coordinates.html │ ├── hyperband-cifar10_parallel_coordinates_params.html │ ├── hyperband-cifar10_partial_dependencies.html │ ├── hyperband-cifar10_partial_dependencies_params.html │ ├── hyperband-cifar10_regret.html │ ├── logos │ │ ├── orion_logo.ai │ │ ├── orion_logo_bow_only_no_string.png │ │ ├── orion_logo_bow_only_no_string_on_black.png │ │ ├── orion_logo_grid_150ppi.png │ │ ├── orion_logo_grid_300ppi.png │ │ ├── orion_logo_grid_72ppi.png │ │ ├── orion_logo_nogrid_150ppi.png │ │ ├── orion_logo_nogrid_300ppi.png │ │ └── orion_logo_nogrid_72ppi.png │ ├── paint.png │ ├── par_dep_thumbnail.png │ ├── parallel_coordinates_reorder.gif │ ├── parallel_coordinates_select.gif │ ├── python.png │ ├── random-rosenbrock_lpi.html │ ├── random-rosenbrock_parallel_coordinates.html │ ├── random-rosenbrock_partial_dependencies.html │ ├── random-rosenbrock_regret.html │ ├── restart.png │ ├── save.png │ ├── share.png │ ├── tpe-rosenbrock_lpi.html │ ├── tpe-rosenbrock_parallel_coordinates.html │ ├── tpe-rosenbrock_partial_dependencies.html │ └── tpe-rosenbrock_regret.html │ ├── _templates │ └── .gitkeep │ ├── code │ ├── algo.rst │ ├── algo │ │ ├── asha.rst │ │ ├── ax.rst │ │ ├── base.rst │ │ ├── bohb.rst │ │ ├── dehb.rst │ │ ├── gridsearch.rst │ │ ├── hebo.rst │ │ ├── hyperband.rst │ │ ├── mofa.rst │ │ ├── nevergrad.rst │ │ ├── parallel_strategy.rst │ │ ├── pb2.rst │ │ ├── pbt.rst │ │ ├── random.rst │ │ ├── registry.rst │ │ ├── space.rst │ │ └── tpe.rst │ ├── analysis.rst │ ├── analysis │ │ ├── base.rst │ │ ├── lpi.rst │ │ ├── partial_dependency.rst │ │ └── regret.rst │ ├── benchmark.rst │ ├── benchmark │ │ ├── assessment.rst │ │ ├── assessment │ │ │ ├── averagerank.rst │ │ │ ├── averageresult.rst │ │ │ ├── base.rst │ │ │ └── parallelassessment.rst │ │ ├── benchmark_client.rst │ │ ├── task.rst │ │ └── task │ │ │ ├── base.rst │ │ │ ├── branin.rst │ │ │ ├── carromtable.rst │ │ │ ├── eggholder.rst │ │ │ ├── forrester.rst │ │ │ ├── profet.rst │ │ │ ├── profet │ │ │ ├── model_utils.rst │ │ │ └── profet_task.rst │ │ │ └── rosenbrock.rst │ ├── client.rst │ ├── client │ │ ├── cli.rst │ │ ├── experiment.rst │ │ └── manual.rst │ ├── core.rst │ ├── core │ │ ├── cli.rst │ │ ├── cli │ │ │ ├── base.rst │ │ │ ├── db.rst │ │ │ ├── db │ │ │ │ ├── release.rst │ │ │ │ ├── rm.rst │ │ │ │ ├── set.rst │ │ │ │ ├── setup.rst │ │ │ │ ├── test.rst │ │ │ │ └── upgrade.rst │ │ │ ├── evc.rst │ │ │ ├── hunt.rst │ │ │ ├── init_only.rst │ │ │ └── insert.rst │ │ ├── evc.rst │ │ ├── evc │ │ │ ├── adapters.rst │ │ │ ├── conflicts.rst │ │ │ └── experiment.rst │ │ ├── io.rst │ │ ├── io │ │ │ ├── convert.rst │ │ │ ├── database.rst │ │ │ ├── database │ │ │ │ ├── ephemeraldb.rst │ │ │ │ ├── mongodb.rst │ │ │ │ └── pickleddb.rst │ │ │ ├── experiment_branch_builder.rst │ │ │ ├── experiment_builder.rst │ │ │ ├── interactive_commands.rst │ │ │ ├── interactive_commands │ │ │ │ └── branching_prompt.rst │ │ │ ├── resolve_config.rst │ │ │ └── space_builder.rst │ │ ├── utils.rst │ │ ├── utils │ │ │ ├── exceptions.rst │ │ │ ├── format_terminal.rst │ │ │ ├── format_trials.rst │ │ │ ├── singleton.rst │ │ │ └── tree.rst │ │ ├── worker.rst │ │ └── worker │ │ │ ├── consumer.rst │ │ │ ├── experiment.rst │ │ │ ├── primary_algo.rst │ │ │ ├── producer.rst │ │ │ ├── transformer.rst │ │ │ ├── trial.rst │ │ │ └── trial_pacemaker.rst │ ├── executor.rst │ ├── executor │ │ ├── base.rst │ │ ├── dask.rst │ │ ├── joblib.rst │ │ ├── multiprocess.rst │ │ ├── ray.rst │ │ └── single.rst │ ├── plotting.rst │ ├── plotting │ │ ├── base.rst │ │ └── plotly.rst │ ├── storage.rst │ ├── storage │ │ ├── base.rst │ │ ├── legacy.rst │ │ └── track.rst │ ├── testing.rst │ └── testing │ │ ├── algo.rst │ │ ├── plotting.rst │ │ ├── space.rst │ │ └── state.rst │ ├── conf.py │ ├── developer │ ├── ci.rst │ ├── documenting.rst │ ├── installing.rst │ ├── logos.rst │ ├── overview.rst │ ├── release.rst │ ├── standards.rst │ ├── stress.rst │ ├── test.png │ └── testing.rst │ ├── index.rst │ ├── install │ ├── core.rst │ ├── database.rst │ └── gettingstarted.rst │ ├── plugins │ ├── algorithms.rst │ ├── base.rst │ └── install.rst │ ├── tutorials │ ├── cluster.rst │ ├── huggingface.rst │ ├── pytorch-mnist.rst │ ├── pytorch_a2c_ppo.rst │ ├── scikit-learn.rst │ └── speech-brain.rst │ └── user │ ├── algorithms.rst │ ├── api.rst │ ├── benchmark.rst │ ├── cli │ ├── info.rst │ ├── list.rst │ └── status.rst │ ├── config.rst │ ├── evc.rst │ ├── library │ ├── evc_results.rst │ └── results.rst │ ├── monitoring.rst │ ├── overview.rst │ ├── parallel.rst │ ├── script.rst │ ├── searchspace.rst │ ├── storage.rst │ └── web_api.rst ├── examples ├── README.md ├── README.rst ├── base_db.pkl ├── benchmark │ ├── benchmark_get_start.ipynb │ └── profet_benchmark.py ├── code_1_python_api_db.pkl ├── code_2_hyperband_checkpoint_db.pkl ├── dask_example.py ├── db.pkl ├── huggingface │ ├── config.yaml │ ├── main.py │ └── requirements.txt ├── learn_search_space │ └── __init__.py ├── plotting │ ├── README.rst │ ├── database.pkl │ ├── how-tos │ │ ├── README.rst │ │ ├── code_1_how_to_plot.py │ │ ├── code_2_how_to_save.py │ │ └── code_3_how_to_share_chart_studio.py │ ├── local.yaml │ ├── plot_1_regret.py │ ├── plot_2_parallel_coordinates.py │ ├── plot_3_lpi.py │ ├── plot_4_partial_dependencies.py │ └── plotting-api.ipynb ├── scikitlearn-iris │ ├── README.md │ ├── main.py │ └── requirements.txt ├── speechbrain_tutorial │ ├── main.py │ ├── train.py │ └── train.yaml └── tutorials │ ├── README.rst │ ├── code_1_python_api.py │ ├── code_2_hyperband_checkpoint.py │ └── code_4_parallelism.py ├── setup.cfg ├── setup.py ├── src └── orion │ ├── algo │ ├── asha │ │ ├── __init__.py │ │ └── asha.py │ ├── axoptimizer │ │ ├── __init__.py │ │ └── axoptimizer.py │ ├── base │ │ ├── __init__.py │ │ ├── base.py │ │ ├── parallel_strategy.py │ │ └── registry.py │ ├── bohb │ │ ├── __init__.py │ │ └── bohb.py │ ├── dehb │ │ ├── __init__.py │ │ ├── brackets.py │ │ └── dehb.py │ ├── evolution_es │ │ ├── __init__.py │ │ ├── evolution_es.py │ │ └── mutate_functions.py │ ├── gridsearch │ │ ├── __init__.py │ │ └── gridsearch.py │ ├── hebo │ │ ├── __init__.py │ │ └── hebo_algo.py │ ├── hyperband │ │ ├── __init__.py │ │ └── hyperband.py │ ├── mofa │ │ ├── __init__.py │ │ ├── mofa.py │ │ ├── sampler.py │ │ └── transformer.py │ ├── nevergradoptimizer │ │ ├── __init__.py │ │ └── nevergradoptimizer.py │ ├── pbt │ │ ├── __init__.py │ │ ├── exploit.py │ │ ├── explore.py │ │ ├── pb2.py │ │ ├── pb2_utils.py │ │ └── pbt.py │ ├── random │ │ ├── __init__.py │ │ └── random.py │ ├── space │ │ ├── __init__.py │ │ └── configspace.py │ └── tpe │ │ ├── __init__.py │ │ └── tpe.py │ ├── analysis │ ├── __init__.py │ ├── base.py │ ├── lpi_utils.py │ ├── partial_dependency_utils.py │ └── regret_utils.py │ ├── benchmark │ ├── __init__.py │ ├── assessment │ │ ├── __init__.py │ │ ├── averagerank.py │ │ ├── averageresult.py │ │ ├── base.py │ │ └── parallelassessment.py │ ├── benchmark_client.py │ └── task │ │ ├── __init__.py │ │ ├── base.py │ │ ├── branin.py │ │ ├── carromtable.py │ │ ├── eggholder.py │ │ ├── forrester.py │ │ ├── profet │ │ ├── __init__.py │ │ ├── fcnet.py │ │ ├── forrester.py │ │ ├── model_utils.py │ │ ├── profet_task.py │ │ ├── svm.py │ │ └── xgboost.py │ │ └── rosenbrock.py │ ├── client │ ├── __init__.py │ ├── cli.py │ ├── experiment.py │ ├── manual.py │ └── runner.py │ ├── core │ ├── __init__.py │ ├── _version.py │ ├── cli │ │ ├── __init__.py │ │ ├── base.py │ │ ├── checks │ │ │ ├── creation.py │ │ │ ├── operations.py │ │ │ └── presence.py │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── dump.py │ │ │ ├── load.py │ │ │ ├── release.py │ │ │ ├── rm.py │ │ │ ├── set.py │ │ │ ├── setup.py │ │ │ ├── test.py │ │ │ └── upgrade.py │ │ ├── db_main.py │ │ ├── evc.py │ │ ├── frontend.py │ │ ├── hunt.py │ │ ├── info.py │ │ ├── init_only.py │ │ ├── insert.py │ │ ├── list.py │ │ ├── plot.py │ │ ├── serve.py │ │ └── status.py │ ├── evc │ │ ├── __init__.py │ │ ├── adapters.py │ │ ├── conflicts.py │ │ └── experiment.py │ ├── io │ │ ├── __init__.py │ │ ├── cmdline_parser.py │ │ ├── config.py │ │ ├── convert.py │ │ ├── database │ │ │ ├── __init__.py │ │ │ ├── ephemeraldb.py │ │ │ ├── mongodb.py │ │ │ └── pickleddb.py │ │ ├── experiment_branch_builder.py │ │ ├── experiment_builder.py │ │ ├── interactive_commands │ │ │ └── branching_prompt.py │ │ ├── orion_cmdline_parser.py │ │ ├── resolve_config.py │ │ └── space_builder.py │ ├── utils │ │ ├── __init__.py │ │ ├── _appdirs.py │ │ ├── backward.py │ │ ├── diff.py │ │ ├── exceptions.py │ │ ├── flatten.py │ │ ├── format_terminal.py │ │ ├── format_trials.py │ │ ├── module_import.py │ │ ├── pptree.py │ │ ├── random_state.py │ │ ├── singleton.py │ │ ├── terminal.py │ │ ├── tree.py │ │ └── working_dir.py │ └── worker │ │ ├── __init__.py │ │ ├── algo_wrappers │ │ ├── __init__.py │ │ ├── algo_wrapper.py │ │ ├── insist_suggest.py │ │ ├── space_transform.py │ │ └── transform_wrapper.py │ │ ├── consumer.py │ │ ├── experiment.py │ │ ├── experiment_config.py │ │ ├── primary_algo.py │ │ ├── producer.py │ │ ├── transformer.py │ │ ├── trial.py │ │ ├── trial_pacemaker.py │ │ └── warm_start │ │ ├── __init__.py │ │ ├── knowledge_base.py │ │ ├── multi_task_wrapper.py │ │ └── warm_starteable.py │ ├── executor │ ├── base.py │ ├── dask_backend.py │ ├── joblib_backend.py │ ├── multiprocess_backend.py │ ├── ray_backend.py │ └── single_backend.py │ ├── plotting │ ├── backend_plotly.py │ └── base.py │ ├── py.typed │ ├── serving │ ├── __init__.py │ ├── benchmarks_resource.py │ ├── experiments_resource.py │ ├── parameters.py │ ├── plots_resources.py │ ├── responses.py │ ├── runtime.py │ ├── storage_resource.py │ ├── trials_resource.py │ └── webapi.py │ ├── storage │ ├── backup.py │ ├── base.py │ ├── legacy.py │ └── track.py │ └── testing │ ├── __init__.py │ ├── algo.py │ ├── dummy_algo.py │ ├── evc.py │ ├── plotting.py │ ├── space.py │ ├── state.py │ └── trial.py ├── tests ├── conftest.py ├── functional │ ├── algos │ │ └── test_algos.py │ ├── backward_compatibility │ │ ├── black_box.py │ │ ├── python_api.py │ │ ├── random.yaml │ │ ├── test_versions.py │ │ └── versions.txt │ ├── benchmark │ │ └── test_benchmark_flow.py │ ├── branching │ │ ├── black_box.py │ │ ├── black_box_new.py │ │ ├── black_box_with_y.py │ │ ├── black_box_with_z.py │ │ ├── new_algo_config.yaml │ │ ├── orion_config.yaml │ │ └── test_branching.py │ ├── client │ │ ├── black_box.py │ │ ├── orion_config.yaml │ │ └── test_cli_client.py │ ├── commands │ │ ├── black_box.py │ │ ├── conftest.py │ │ ├── experiment.yaml │ │ ├── orion_config_random.yaml │ │ ├── test_db_commands.py │ │ ├── test_db_dump.py │ │ ├── test_db_load.py │ │ ├── test_db_release.py │ │ ├── test_db_rm.py │ │ ├── test_db_set.py │ │ ├── test_hunt_command.py │ │ ├── test_info_command.py │ │ ├── test_insert_command.py │ │ ├── test_list_command.py │ │ ├── test_plot_commands.py │ │ ├── test_setup_command.py │ │ ├── test_status_command.py │ │ └── test_verbose_messages.py │ ├── configuration │ │ ├── conftest.py │ │ └── test_all_options.py │ ├── conftest.py │ ├── core │ │ └── worker │ │ │ ├── test_experiment_functional.py │ │ │ └── warm_start │ │ │ └── test_warm_starting.py │ ├── demo │ │ ├── black_box.py │ │ ├── black_box_w_config.py │ │ ├── black_box_w_config_other.py │ │ ├── broken_box.py │ │ ├── database_config.yaml │ │ ├── dir_per_trial.py │ │ ├── orion_black_box.py │ │ ├── orion_config.yaml │ │ ├── orion_config_other.yaml │ │ ├── orion_config_random.yaml │ │ ├── script_config.yaml │ │ ├── strategy_config.yaml │ │ ├── stress_gradient.yaml │ │ ├── test_demo.py │ │ └── working_dir_config.yaml │ ├── example │ │ ├── orion_config.yaml │ │ └── test_scikit_learn.py │ ├── gradient_descent_algo │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── setup.cfg │ │ ├── setup.py │ │ └── src │ │ │ └── orion │ │ │ └── algo │ │ │ └── gradient_descent.py │ ├── parsing │ │ ├── orion_config_random.yaml │ │ ├── test_parsing_base.py │ │ ├── test_parsing_hunt.py │ │ └── test_parsing_insert.py │ ├── serving │ │ ├── conftest.py │ │ ├── test_benchmarks_resource.py │ │ ├── test_experiments_resource.py │ │ ├── test_frontend.py │ │ ├── test_plots_resource.py │ │ ├── test_root.py │ │ ├── test_storage_resource.py │ │ └── test_trials_resource.py │ └── storage │ │ └── test_io.py ├── orion_config.yaml ├── requirements.txt ├── stress │ ├── client │ │ └── stress_experiment.py │ └── requirements.txt └── unittests │ ├── algo │ ├── long │ │ ├── ax │ │ │ └── test_axoptimizer.py │ │ ├── hebo │ │ │ └── test_hebo.py │ │ └── nevergrad │ │ │ └── integration_test.py │ ├── mofa │ │ ├── test_analysis.py │ │ └── test_mofa.py │ ├── pbt │ │ ├── base.py │ │ ├── conftest.py │ │ ├── test_exploit.py │ │ ├── test_explore.py │ │ ├── test_lineages.py │ │ ├── test_pb2.py │ │ └── test_pbt.py │ ├── test_asha.py │ ├── test_base.py │ ├── test_bohb.py │ ├── test_configspace.py │ ├── test_dehb.py │ ├── test_evolution_es.py │ ├── test_gridsearch.py │ ├── test_hyperband.py │ ├── test_parallel_strategy.py │ ├── test_random.py │ ├── test_registry.py │ ├── test_space.py │ └── test_tpe.py │ ├── analysis │ ├── __init__.py │ ├── test_base.py │ ├── test_lpi.py │ ├── test_partial_dependency.py │ └── test_regret.py │ ├── benchmark │ ├── conftest.py │ ├── task │ │ ├── profet │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_fcnet.py │ │ │ ├── test_forrester.py │ │ │ ├── test_profet_task.py │ │ │ ├── test_svm.py │ │ │ └── test_xgboost.py │ │ └── test_tasks.py │ ├── test_assessments.py │ ├── test_benchmark.py │ └── test_benchmark_client.py │ ├── client │ ├── runner_subprocess.py │ ├── test_client.py │ ├── test_experiment_client.py │ └── test_runner.py │ ├── core │ ├── bad_config1.txt │ ├── bad_config2.txt │ ├── bad_config3.txt │ ├── bad_config4.txt │ ├── cli │ │ ├── test_checks.py │ │ ├── test_evc.py │ │ └── test_info.py │ ├── conftest.py │ ├── database │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_database.py │ │ ├── test_ephemeraldb.py │ │ ├── test_mongodb.py │ │ └── test_pickleddb.py │ ├── evc │ │ ├── conftest.py │ │ ├── test_adapters.py │ │ ├── test_conflicts.py │ │ ├── test_experiment_tree.py │ │ └── test_resolutions.py │ ├── experiment.yaml │ ├── io │ │ ├── conftest.py │ │ ├── database_test.py │ │ ├── interactive_commands │ │ │ └── test_branching_prompt.py │ │ ├── orion.yaml │ │ ├── orion_config.yaml │ │ ├── orion_incomplete_config.yaml │ │ ├── orion_old_config.yaml │ │ ├── test_cmdline_parser.py │ │ ├── test_config.py │ │ ├── test_converters.py │ │ ├── test_evc_builder.py │ │ ├── test_experiment_builder.py │ │ ├── test_orion_cmdline_parser.py │ │ ├── test_resolve_config.py │ │ └── test_space_builder.py │ ├── sample_config.json │ ├── sample_config.txt │ ├── sample_config.yml │ ├── sample_config_diff.yml │ ├── sample_config_template.txt │ ├── some_sample_config.txt │ ├── test_branch_config.py │ ├── test_insert.py │ ├── test_transformer.py │ ├── test_utils_format.py │ ├── utils │ │ ├── test_backward.py │ │ ├── test_flatten.py │ │ ├── test_module_import.py │ │ ├── test_tree.py │ │ ├── test_utils.py │ │ └── test_working_dir.py │ └── worker │ │ ├── algo_wrappers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_insist_suggest.py │ │ └── test_transform.py │ │ ├── test_consumer.py │ │ ├── test_experiment.py │ │ ├── test_experiment_config.py │ │ ├── test_producer.py │ │ ├── test_trial.py │ │ ├── test_trial_pacemaker.py │ │ └── warm_start │ │ ├── __init__.py │ │ ├── test_knowledge_base.py │ │ ├── test_multi_task.py │ │ └── test_warm_starteable.py │ ├── executor │ ├── test_executor.py │ └── test_futures.py │ ├── plotting │ ├── test_plot_accessor.py │ └── test_plotly_backend.py │ └── storage │ ├── test_legacy.py │ └── test_storage.py ├── tox.ini └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | src/orion/core/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/dashboard-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/workflows/dashboard-build.yml -------------------------------------------------------------------------------- /.github/workflows/dashboard-src-new-with-playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/workflows/dashboard-src-new-with-playwright.yml -------------------------------------------------------------------------------- /.github/workflows/dashboard-src.yml.deactivated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/workflows/dashboard-src.yml.deactivated -------------------------------------------------------------------------------- /.github/workflows/fake_orion_server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/workflows/fake_orion_server.json -------------------------------------------------------------------------------- /.github/workflows/fake_orion_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/workflows/fake_orion_server.py -------------------------------------------------------------------------------- /.github/workflows/orion/add_uncompleted_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/workflows/orion/add_uncompleted_experiment.py -------------------------------------------------------------------------------- /.github/workflows/orion/db_dashboard_full.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/workflows/orion/db_dashboard_full.pkl -------------------------------------------------------------------------------- /.github/workflows/orion/db_dashboard_full_with_uncompleted_experiments.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/workflows/orion/db_dashboard_full_with_uncompleted_experiments.pkl -------------------------------------------------------------------------------- /.github/workflows/orion/orion_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/workflows/orion/orion_config.yaml -------------------------------------------------------------------------------- /.github/workflows/orion/orion_config_mongodb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/workflows/orion/orion_config_mongodb.yaml -------------------------------------------------------------------------------- /.github/workflows/orion/pickle_to_mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/workflows/orion/pickle_to_mongodb.py -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/release_master_dev_resync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.github/workflows/release_master_dev_resync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CITATION.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/CITATION.bib -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/README.rst -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/codecov.yml -------------------------------------------------------------------------------- /conda/ci_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/conda/ci_build.sh -------------------------------------------------------------------------------- /conda/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/conda/meta.yaml -------------------------------------------------------------------------------- /conda/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/conda/upload.sh -------------------------------------------------------------------------------- /dashboard/build/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/build/asset-manifest.json -------------------------------------------------------------------------------- /dashboard/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/build/index.html -------------------------------------------------------------------------------- /dashboard/build/static/css/main.56b5d8c7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/build/static/css/main.56b5d8c7.css -------------------------------------------------------------------------------- /dashboard/build/static/css/main.56b5d8c7.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/build/static/css/main.56b5d8c7.css.map -------------------------------------------------------------------------------- /dashboard/build/static/js/main.f53d74b0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/build/static/js/main.f53d74b0.js -------------------------------------------------------------------------------- /dashboard/build/static/js/main.f53d74b0.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/build/static/js/main.f53d74b0.js.LICENSE.txt -------------------------------------------------------------------------------- /dashboard/build/static/js/main.f53d74b0.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/build/static/js/main.f53d74b0.js.map -------------------------------------------------------------------------------- /dashboard/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/.gitignore -------------------------------------------------------------------------------- /dashboard/src/.yarn/releases/yarn-4.11.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/.yarn/releases/yarn-4.11.0.cjs -------------------------------------------------------------------------------- /dashboard/src/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/.yarnrc.yml -------------------------------------------------------------------------------- /dashboard/src/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/README.rst -------------------------------------------------------------------------------- /dashboard/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/package.json -------------------------------------------------------------------------------- /dashboard/src/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/playwright.config.js -------------------------------------------------------------------------------- /dashboard/src/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/public/index.html -------------------------------------------------------------------------------- /dashboard/src/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/App.js -------------------------------------------------------------------------------- /dashboard/src/src/__tests__/ExperimentNavBar.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/__tests__/ExperimentNavBar.test.js -------------------------------------------------------------------------------- /dashboard/src/src/__tests__/VisualizationsPage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/__tests__/VisualizationsPage.test.js -------------------------------------------------------------------------------- /dashboard/src/src/__tests__/benchmark.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/__tests__/benchmark.test.js -------------------------------------------------------------------------------- /dashboard/src/src/__tests__/experiments.databasePage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/__tests__/experiments.databasePage.test.js -------------------------------------------------------------------------------- /dashboard/src/src/__tests__/flattenObject.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/__tests__/flattenObject.test.js -------------------------------------------------------------------------------- /dashboard/src/src/__tests__/queryServer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/__tests__/queryServer.test.js -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/Benchmarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/Benchmarks.js -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/app.scss -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/components/BenchmarkNavBar/BenchmarkNavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/components/BenchmarkNavBar/BenchmarkNavBar.js -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/components/BenchmarkNavBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/components/BenchmarkNavBar/index.js -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkConfigurationPage/BenchmarkConfigurationPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/content/BenchmarkConfigurationPage/BenchmarkConfigurationPage.js -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkConfigurationPage/_configuration-page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkConfigurationPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/content/BenchmarkConfigurationPage/index.js -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkDatabasePage/BenchmarkDatabasePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/content/BenchmarkDatabasePage/BenchmarkDatabasePage.js -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkDatabasePage/TrialTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/content/BenchmarkDatabasePage/TrialTable.js -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkDatabasePage/_database-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/content/BenchmarkDatabasePage/_database-page.scss -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkDatabasePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/content/BenchmarkDatabasePage/index.js -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkStatusPage/BenchmarkStatusPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/content/BenchmarkStatusPage/BenchmarkStatusPage.js -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkStatusPage/_status-page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkStatusPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/content/BenchmarkStatusPage/index.js -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkVisualizationsPage/BenchmarkVisualizationsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/content/BenchmarkVisualizationsPage/BenchmarkVisualizationsPage.js -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkVisualizationsPage/PlotRender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/content/BenchmarkVisualizationsPage/PlotRender.js -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkVisualizationsPage/_plot-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/content/BenchmarkVisualizationsPage/_plot-box.scss -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkVisualizationsPage/_visualizations-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/content/BenchmarkVisualizationsPage/_visualizations-page.scss -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkVisualizationsPage/_visualizations_page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/src/src/benchmarks/content/BenchmarkVisualizationsPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/benchmarks/content/BenchmarkVisualizationsPage/index.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/BackendContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/BackendContext.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/Experiments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/Experiments.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/app.scss -------------------------------------------------------------------------------- /dashboard/src/src/experiments/components/ExperimentNavBar/ExperimentNavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/components/ExperimentNavBar/ExperimentNavBar.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/components/ExperimentNavBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/components/ExperimentNavBar/index.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/components/ExperimentStatusBar/ExperimentStatusBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/components/ExperimentStatusBar/ExperimentStatusBar.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/components/ExperimentStatusBar/ExperimentStatusProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/components/ExperimentStatusBar/ExperimentStatusProvider.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/components/TutorialHeader/TutorialHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/components/TutorialHeader/TutorialHeader.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/components/TutorialHeader/_tutorial-header.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/src/src/experiments/components/TutorialHeader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/components/TutorialHeader/index.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/ConfigurationPage/ConfigurationPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/ConfigurationPage/ConfigurationPage.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/ConfigurationPage/_configuration-page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/ConfigurationPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/ConfigurationPage/index.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/DatabasePage/DatabasePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/DatabasePage/DatabasePage.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/DatabasePage/FeaturedTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/DatabasePage/FeaturedTable.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/DatabasePage/ObjectToGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/DatabasePage/ObjectToGrid.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/DatabasePage/TrialsProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/DatabasePage/TrialsProvider.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/DatabasePage/_database-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/DatabasePage/_database-page.scss -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/DatabasePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/DatabasePage/index.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/LandingPage/LandingPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/LandingPage/LandingPage.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/LandingPage/_landing-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/LandingPage/_landing-page.scss -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/LandingPage/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/LandingPage/_mixins.scss -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/LandingPage/_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/LandingPage/_overrides.scss -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/LandingPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/LandingPage/index.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/StatusPage/StatusPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/StatusPage/StatusPage.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/StatusPage/_status-page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/StatusPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/StatusPage/index.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/VisualizationsPage/LocalParameterImportance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/VisualizationsPage/LocalParameterImportance.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/VisualizationsPage/LocalParameterImportancePlot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/VisualizationsPage/LocalParameterImportancePlot.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/VisualizationsPage/ParallelCoordinatesPlot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/VisualizationsPage/ParallelCoordinatesPlot.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/VisualizationsPage/PlotBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/VisualizationsPage/PlotBox.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/VisualizationsPage/RegretPlot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/VisualizationsPage/RegretPlot.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/VisualizationsPage/VisualizationsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/VisualizationsPage/VisualizationsPage.js -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/VisualizationsPage/_plot-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/VisualizationsPage/_plot-box.scss -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/VisualizationsPage/_visualizations-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/VisualizationsPage/_visualizations-page.scss -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/VisualizationsPage/_visualizations_page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/src/src/experiments/content/VisualizationsPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/experiments/content/VisualizationsPage/index.js -------------------------------------------------------------------------------- /dashboard/src/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/index.js -------------------------------------------------------------------------------- /dashboard/src/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/index.scss -------------------------------------------------------------------------------- /dashboard/src/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/serviceWorker.js -------------------------------------------------------------------------------- /dashboard/src/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/setupTests.js -------------------------------------------------------------------------------- /dashboard/src/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/style.css -------------------------------------------------------------------------------- /dashboard/src/src/utils/flattenObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/utils/flattenObject.js -------------------------------------------------------------------------------- /dashboard/src/src/utils/queryServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/src/utils/queryServer.js -------------------------------------------------------------------------------- /dashboard/src/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dashboard/src/yarn.lock -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/scripts/build_database_and_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/scripts/build_database_and_plots.py -------------------------------------------------------------------------------- /docs/scripts/filter_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/scripts/filter_database.py -------------------------------------------------------------------------------- /docs/scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/scripts/requirements.txt -------------------------------------------------------------------------------- /docs/src/_resources/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_resources/one.png -------------------------------------------------------------------------------- /docs/src/_resources/synchronization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_resources/synchronization.png -------------------------------------------------------------------------------- /docs/src/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/src/_static/cmdline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/cmdline.png -------------------------------------------------------------------------------- /docs/src/_static/hyperband-cifar10_lpi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/hyperband-cifar10_lpi.html -------------------------------------------------------------------------------- /docs/src/_static/hyperband-cifar10_parallel_coordinates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/hyperband-cifar10_parallel_coordinates.html -------------------------------------------------------------------------------- /docs/src/_static/hyperband-cifar10_parallel_coordinates_params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/hyperband-cifar10_parallel_coordinates_params.html -------------------------------------------------------------------------------- /docs/src/_static/hyperband-cifar10_partial_dependencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/hyperband-cifar10_partial_dependencies.html -------------------------------------------------------------------------------- /docs/src/_static/hyperband-cifar10_partial_dependencies_params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/hyperband-cifar10_partial_dependencies_params.html -------------------------------------------------------------------------------- /docs/src/_static/hyperband-cifar10_regret.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/hyperband-cifar10_regret.html -------------------------------------------------------------------------------- /docs/src/_static/logos/orion_logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/logos/orion_logo.ai -------------------------------------------------------------------------------- /docs/src/_static/logos/orion_logo_bow_only_no_string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/logos/orion_logo_bow_only_no_string.png -------------------------------------------------------------------------------- /docs/src/_static/logos/orion_logo_bow_only_no_string_on_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/logos/orion_logo_bow_only_no_string_on_black.png -------------------------------------------------------------------------------- /docs/src/_static/logos/orion_logo_grid_150ppi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/logos/orion_logo_grid_150ppi.png -------------------------------------------------------------------------------- /docs/src/_static/logos/orion_logo_grid_300ppi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/logos/orion_logo_grid_300ppi.png -------------------------------------------------------------------------------- /docs/src/_static/logos/orion_logo_grid_72ppi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/logos/orion_logo_grid_72ppi.png -------------------------------------------------------------------------------- /docs/src/_static/logos/orion_logo_nogrid_150ppi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/logos/orion_logo_nogrid_150ppi.png -------------------------------------------------------------------------------- /docs/src/_static/logos/orion_logo_nogrid_300ppi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/logos/orion_logo_nogrid_300ppi.png -------------------------------------------------------------------------------- /docs/src/_static/logos/orion_logo_nogrid_72ppi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/logos/orion_logo_nogrid_72ppi.png -------------------------------------------------------------------------------- /docs/src/_static/paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/paint.png -------------------------------------------------------------------------------- /docs/src/_static/par_dep_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/par_dep_thumbnail.png -------------------------------------------------------------------------------- /docs/src/_static/parallel_coordinates_reorder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/parallel_coordinates_reorder.gif -------------------------------------------------------------------------------- /docs/src/_static/parallel_coordinates_select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/parallel_coordinates_select.gif -------------------------------------------------------------------------------- /docs/src/_static/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/python.png -------------------------------------------------------------------------------- /docs/src/_static/random-rosenbrock_lpi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/random-rosenbrock_lpi.html -------------------------------------------------------------------------------- /docs/src/_static/random-rosenbrock_parallel_coordinates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/random-rosenbrock_parallel_coordinates.html -------------------------------------------------------------------------------- /docs/src/_static/random-rosenbrock_partial_dependencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/random-rosenbrock_partial_dependencies.html -------------------------------------------------------------------------------- /docs/src/_static/random-rosenbrock_regret.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/random-rosenbrock_regret.html -------------------------------------------------------------------------------- /docs/src/_static/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/restart.png -------------------------------------------------------------------------------- /docs/src/_static/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/save.png -------------------------------------------------------------------------------- /docs/src/_static/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/share.png -------------------------------------------------------------------------------- /docs/src/_static/tpe-rosenbrock_lpi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/tpe-rosenbrock_lpi.html -------------------------------------------------------------------------------- /docs/src/_static/tpe-rosenbrock_parallel_coordinates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/tpe-rosenbrock_parallel_coordinates.html -------------------------------------------------------------------------------- /docs/src/_static/tpe-rosenbrock_partial_dependencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/tpe-rosenbrock_partial_dependencies.html -------------------------------------------------------------------------------- /docs/src/_static/tpe-rosenbrock_regret.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/_static/tpe-rosenbrock_regret.html -------------------------------------------------------------------------------- /docs/src/_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/src/code/algo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo.rst -------------------------------------------------------------------------------- /docs/src/code/algo/asha.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/asha.rst -------------------------------------------------------------------------------- /docs/src/code/algo/ax.rst: -------------------------------------------------------------------------------- 1 | Ax 2 | == 3 | 4 | .. automodule:: orion.algo.axoptimizer 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/src/code/algo/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/base.rst -------------------------------------------------------------------------------- /docs/src/code/algo/bohb.rst: -------------------------------------------------------------------------------- 1 | BOHB 2 | ==== 3 | 4 | .. automodule:: orion.algo.bohb 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/src/code/algo/dehb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/dehb.rst -------------------------------------------------------------------------------- /docs/src/code/algo/gridsearch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/gridsearch.rst -------------------------------------------------------------------------------- /docs/src/code/algo/hebo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/hebo.rst -------------------------------------------------------------------------------- /docs/src/code/algo/hyperband.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/hyperband.rst -------------------------------------------------------------------------------- /docs/src/code/algo/mofa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/mofa.rst -------------------------------------------------------------------------------- /docs/src/code/algo/nevergrad.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/nevergrad.rst -------------------------------------------------------------------------------- /docs/src/code/algo/parallel_strategy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/parallel_strategy.rst -------------------------------------------------------------------------------- /docs/src/code/algo/pb2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/pb2.rst -------------------------------------------------------------------------------- /docs/src/code/algo/pbt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/pbt.rst -------------------------------------------------------------------------------- /docs/src/code/algo/random.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/random.rst -------------------------------------------------------------------------------- /docs/src/code/algo/registry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/registry.rst -------------------------------------------------------------------------------- /docs/src/code/algo/space.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/space.rst -------------------------------------------------------------------------------- /docs/src/code/algo/tpe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/algo/tpe.rst -------------------------------------------------------------------------------- /docs/src/code/analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/analysis.rst -------------------------------------------------------------------------------- /docs/src/code/analysis/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/analysis/base.rst -------------------------------------------------------------------------------- /docs/src/code/analysis/lpi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/analysis/lpi.rst -------------------------------------------------------------------------------- /docs/src/code/analysis/partial_dependency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/analysis/partial_dependency.rst -------------------------------------------------------------------------------- /docs/src/code/analysis/regret.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/analysis/regret.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/assessment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/assessment.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/assessment/averagerank.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/assessment/averagerank.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/assessment/averageresult.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/assessment/averageresult.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/assessment/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/assessment/base.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/assessment/parallelassessment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/assessment/parallelassessment.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/benchmark_client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/benchmark_client.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/task.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/task.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/task/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/task/base.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/task/branin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/task/branin.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/task/carromtable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/task/carromtable.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/task/eggholder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/task/eggholder.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/task/forrester.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/task/forrester.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/task/profet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/task/profet.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/task/profet/model_utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/task/profet/model_utils.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/task/profet/profet_task.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/task/profet/profet_task.rst -------------------------------------------------------------------------------- /docs/src/code/benchmark/task/rosenbrock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/benchmark/task/rosenbrock.rst -------------------------------------------------------------------------------- /docs/src/code/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/client.rst -------------------------------------------------------------------------------- /docs/src/code/client/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/client/cli.rst -------------------------------------------------------------------------------- /docs/src/code/client/experiment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/client/experiment.rst -------------------------------------------------------------------------------- /docs/src/code/client/manual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/client/manual.rst -------------------------------------------------------------------------------- /docs/src/code/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core.rst -------------------------------------------------------------------------------- /docs/src/code/core/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/cli.rst -------------------------------------------------------------------------------- /docs/src/code/core/cli/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/cli/base.rst -------------------------------------------------------------------------------- /docs/src/code/core/cli/db.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/cli/db.rst -------------------------------------------------------------------------------- /docs/src/code/core/cli/db/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/cli/db/release.rst -------------------------------------------------------------------------------- /docs/src/code/core/cli/db/rm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/cli/db/rm.rst -------------------------------------------------------------------------------- /docs/src/code/core/cli/db/set.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/cli/db/set.rst -------------------------------------------------------------------------------- /docs/src/code/core/cli/db/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/cli/db/setup.rst -------------------------------------------------------------------------------- /docs/src/code/core/cli/db/test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/cli/db/test.rst -------------------------------------------------------------------------------- /docs/src/code/core/cli/db/upgrade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/cli/db/upgrade.rst -------------------------------------------------------------------------------- /docs/src/code/core/cli/evc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/cli/evc.rst -------------------------------------------------------------------------------- /docs/src/code/core/cli/hunt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/cli/hunt.rst -------------------------------------------------------------------------------- /docs/src/code/core/cli/init_only.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/cli/init_only.rst -------------------------------------------------------------------------------- /docs/src/code/core/cli/insert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/cli/insert.rst -------------------------------------------------------------------------------- /docs/src/code/core/evc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/evc.rst -------------------------------------------------------------------------------- /docs/src/code/core/evc/adapters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/evc/adapters.rst -------------------------------------------------------------------------------- /docs/src/code/core/evc/conflicts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/evc/conflicts.rst -------------------------------------------------------------------------------- /docs/src/code/core/evc/experiment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/evc/experiment.rst -------------------------------------------------------------------------------- /docs/src/code/core/io.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/io.rst -------------------------------------------------------------------------------- /docs/src/code/core/io/convert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/io/convert.rst -------------------------------------------------------------------------------- /docs/src/code/core/io/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/io/database.rst -------------------------------------------------------------------------------- /docs/src/code/core/io/database/ephemeraldb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/io/database/ephemeraldb.rst -------------------------------------------------------------------------------- /docs/src/code/core/io/database/mongodb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/io/database/mongodb.rst -------------------------------------------------------------------------------- /docs/src/code/core/io/database/pickleddb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/io/database/pickleddb.rst -------------------------------------------------------------------------------- /docs/src/code/core/io/experiment_branch_builder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/io/experiment_branch_builder.rst -------------------------------------------------------------------------------- /docs/src/code/core/io/experiment_builder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/io/experiment_builder.rst -------------------------------------------------------------------------------- /docs/src/code/core/io/interactive_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/io/interactive_commands.rst -------------------------------------------------------------------------------- /docs/src/code/core/io/interactive_commands/branching_prompt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/io/interactive_commands/branching_prompt.rst -------------------------------------------------------------------------------- /docs/src/code/core/io/resolve_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/io/resolve_config.rst -------------------------------------------------------------------------------- /docs/src/code/core/io/space_builder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/io/space_builder.rst -------------------------------------------------------------------------------- /docs/src/code/core/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/utils.rst -------------------------------------------------------------------------------- /docs/src/code/core/utils/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/utils/exceptions.rst -------------------------------------------------------------------------------- /docs/src/code/core/utils/format_terminal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/utils/format_terminal.rst -------------------------------------------------------------------------------- /docs/src/code/core/utils/format_trials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/utils/format_trials.rst -------------------------------------------------------------------------------- /docs/src/code/core/utils/singleton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/utils/singleton.rst -------------------------------------------------------------------------------- /docs/src/code/core/utils/tree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/utils/tree.rst -------------------------------------------------------------------------------- /docs/src/code/core/worker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/worker.rst -------------------------------------------------------------------------------- /docs/src/code/core/worker/consumer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/worker/consumer.rst -------------------------------------------------------------------------------- /docs/src/code/core/worker/experiment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/worker/experiment.rst -------------------------------------------------------------------------------- /docs/src/code/core/worker/primary_algo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/worker/primary_algo.rst -------------------------------------------------------------------------------- /docs/src/code/core/worker/producer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/worker/producer.rst -------------------------------------------------------------------------------- /docs/src/code/core/worker/transformer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/worker/transformer.rst -------------------------------------------------------------------------------- /docs/src/code/core/worker/trial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/worker/trial.rst -------------------------------------------------------------------------------- /docs/src/code/core/worker/trial_pacemaker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/core/worker/trial_pacemaker.rst -------------------------------------------------------------------------------- /docs/src/code/executor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/executor.rst -------------------------------------------------------------------------------- /docs/src/code/executor/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/executor/base.rst -------------------------------------------------------------------------------- /docs/src/code/executor/dask.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/executor/dask.rst -------------------------------------------------------------------------------- /docs/src/code/executor/joblib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/executor/joblib.rst -------------------------------------------------------------------------------- /docs/src/code/executor/multiprocess.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/executor/multiprocess.rst -------------------------------------------------------------------------------- /docs/src/code/executor/ray.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/executor/ray.rst -------------------------------------------------------------------------------- /docs/src/code/executor/single.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/executor/single.rst -------------------------------------------------------------------------------- /docs/src/code/plotting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/plotting.rst -------------------------------------------------------------------------------- /docs/src/code/plotting/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/plotting/base.rst -------------------------------------------------------------------------------- /docs/src/code/plotting/plotly.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/plotting/plotly.rst -------------------------------------------------------------------------------- /docs/src/code/storage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/storage.rst -------------------------------------------------------------------------------- /docs/src/code/storage/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/storage/base.rst -------------------------------------------------------------------------------- /docs/src/code/storage/legacy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/storage/legacy.rst -------------------------------------------------------------------------------- /docs/src/code/storage/track.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/storage/track.rst -------------------------------------------------------------------------------- /docs/src/code/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/testing.rst -------------------------------------------------------------------------------- /docs/src/code/testing/algo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/testing/algo.rst -------------------------------------------------------------------------------- /docs/src/code/testing/plotting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/testing/plotting.rst -------------------------------------------------------------------------------- /docs/src/code/testing/space.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/testing/space.rst -------------------------------------------------------------------------------- /docs/src/code/testing/state.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/code/testing/state.rst -------------------------------------------------------------------------------- /docs/src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/conf.py -------------------------------------------------------------------------------- /docs/src/developer/ci.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/developer/ci.rst -------------------------------------------------------------------------------- /docs/src/developer/documenting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/developer/documenting.rst -------------------------------------------------------------------------------- /docs/src/developer/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/developer/installing.rst -------------------------------------------------------------------------------- /docs/src/developer/logos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/developer/logos.rst -------------------------------------------------------------------------------- /docs/src/developer/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/developer/overview.rst -------------------------------------------------------------------------------- /docs/src/developer/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/developer/release.rst -------------------------------------------------------------------------------- /docs/src/developer/standards.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/developer/standards.rst -------------------------------------------------------------------------------- /docs/src/developer/stress.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/developer/stress.rst -------------------------------------------------------------------------------- /docs/src/developer/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/developer/test.png -------------------------------------------------------------------------------- /docs/src/developer/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/developer/testing.rst -------------------------------------------------------------------------------- /docs/src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/index.rst -------------------------------------------------------------------------------- /docs/src/install/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/install/core.rst -------------------------------------------------------------------------------- /docs/src/install/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/install/database.rst -------------------------------------------------------------------------------- /docs/src/install/gettingstarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/install/gettingstarted.rst -------------------------------------------------------------------------------- /docs/src/plugins/algorithms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/plugins/algorithms.rst -------------------------------------------------------------------------------- /docs/src/plugins/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/plugins/base.rst -------------------------------------------------------------------------------- /docs/src/plugins/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/plugins/install.rst -------------------------------------------------------------------------------- /docs/src/tutorials/cluster.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/tutorials/cluster.rst -------------------------------------------------------------------------------- /docs/src/tutorials/huggingface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/tutorials/huggingface.rst -------------------------------------------------------------------------------- /docs/src/tutorials/pytorch-mnist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/tutorials/pytorch-mnist.rst -------------------------------------------------------------------------------- /docs/src/tutorials/pytorch_a2c_ppo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/tutorials/pytorch_a2c_ppo.rst -------------------------------------------------------------------------------- /docs/src/tutorials/scikit-learn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/tutorials/scikit-learn.rst -------------------------------------------------------------------------------- /docs/src/tutorials/speech-brain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/tutorials/speech-brain.rst -------------------------------------------------------------------------------- /docs/src/user/algorithms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/algorithms.rst -------------------------------------------------------------------------------- /docs/src/user/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/api.rst -------------------------------------------------------------------------------- /docs/src/user/benchmark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/benchmark.rst -------------------------------------------------------------------------------- /docs/src/user/cli/info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/cli/info.rst -------------------------------------------------------------------------------- /docs/src/user/cli/list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/cli/list.rst -------------------------------------------------------------------------------- /docs/src/user/cli/status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/cli/status.rst -------------------------------------------------------------------------------- /docs/src/user/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/config.rst -------------------------------------------------------------------------------- /docs/src/user/evc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/evc.rst -------------------------------------------------------------------------------- /docs/src/user/library/evc_results.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/library/evc_results.rst -------------------------------------------------------------------------------- /docs/src/user/library/results.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/library/results.rst -------------------------------------------------------------------------------- /docs/src/user/monitoring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/monitoring.rst -------------------------------------------------------------------------------- /docs/src/user/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/overview.rst -------------------------------------------------------------------------------- /docs/src/user/parallel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/parallel.rst -------------------------------------------------------------------------------- /docs/src/user/script.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/script.rst -------------------------------------------------------------------------------- /docs/src/user/searchspace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/searchspace.rst -------------------------------------------------------------------------------- /docs/src/user/storage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/storage.rst -------------------------------------------------------------------------------- /docs/src/user/web_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/docs/src/user/web_api.rst -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/base_db.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/base_db.pkl -------------------------------------------------------------------------------- /examples/benchmark/benchmark_get_start.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/benchmark/benchmark_get_start.ipynb -------------------------------------------------------------------------------- /examples/benchmark/profet_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/benchmark/profet_benchmark.py -------------------------------------------------------------------------------- /examples/code_1_python_api_db.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/code_1_python_api_db.pkl -------------------------------------------------------------------------------- /examples/code_2_hyperband_checkpoint_db.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/code_2_hyperband_checkpoint_db.pkl -------------------------------------------------------------------------------- /examples/dask_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/dask_example.py -------------------------------------------------------------------------------- /examples/db.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/db.pkl -------------------------------------------------------------------------------- /examples/huggingface/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/huggingface/config.yaml -------------------------------------------------------------------------------- /examples/huggingface/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/huggingface/main.py -------------------------------------------------------------------------------- /examples/huggingface/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/huggingface/requirements.txt -------------------------------------------------------------------------------- /examples/learn_search_space/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/learn_search_space/__init__.py -------------------------------------------------------------------------------- /examples/plotting/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/plotting/README.rst -------------------------------------------------------------------------------- /examples/plotting/database.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/plotting/database.pkl -------------------------------------------------------------------------------- /examples/plotting/how-tos/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/plotting/how-tos/README.rst -------------------------------------------------------------------------------- /examples/plotting/how-tos/code_1_how_to_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/plotting/how-tos/code_1_how_to_plot.py -------------------------------------------------------------------------------- /examples/plotting/how-tos/code_2_how_to_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/plotting/how-tos/code_2_how_to_save.py -------------------------------------------------------------------------------- /examples/plotting/how-tos/code_3_how_to_share_chart_studio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/plotting/how-tos/code_3_how_to_share_chart_studio.py -------------------------------------------------------------------------------- /examples/plotting/local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/plotting/local.yaml -------------------------------------------------------------------------------- /examples/plotting/plot_1_regret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/plotting/plot_1_regret.py -------------------------------------------------------------------------------- /examples/plotting/plot_2_parallel_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/plotting/plot_2_parallel_coordinates.py -------------------------------------------------------------------------------- /examples/plotting/plot_3_lpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/plotting/plot_3_lpi.py -------------------------------------------------------------------------------- /examples/plotting/plot_4_partial_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/plotting/plot_4_partial_dependencies.py -------------------------------------------------------------------------------- /examples/plotting/plotting-api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/plotting/plotting-api.ipynb -------------------------------------------------------------------------------- /examples/scikitlearn-iris/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/scikitlearn-iris/README.md -------------------------------------------------------------------------------- /examples/scikitlearn-iris/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/scikitlearn-iris/main.py -------------------------------------------------------------------------------- /examples/scikitlearn-iris/requirements.txt: -------------------------------------------------------------------------------- 1 | scikit-learn 2 | -------------------------------------------------------------------------------- /examples/speechbrain_tutorial/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/speechbrain_tutorial/main.py -------------------------------------------------------------------------------- /examples/speechbrain_tutorial/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/speechbrain_tutorial/train.py -------------------------------------------------------------------------------- /examples/speechbrain_tutorial/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/speechbrain_tutorial/train.yaml -------------------------------------------------------------------------------- /examples/tutorials/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/tutorials/README.rst -------------------------------------------------------------------------------- /examples/tutorials/code_1_python_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/tutorials/code_1_python_api.py -------------------------------------------------------------------------------- /examples/tutorials/code_2_hyperband_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/tutorials/code_2_hyperband_checkpoint.py -------------------------------------------------------------------------------- /examples/tutorials/code_4_parallelism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/examples/tutorials/code_4_parallelism.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/setup.py -------------------------------------------------------------------------------- /src/orion/algo/asha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/asha/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/asha/asha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/asha/asha.py -------------------------------------------------------------------------------- /src/orion/algo/axoptimizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/axoptimizer/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/axoptimizer/axoptimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/axoptimizer/axoptimizer.py -------------------------------------------------------------------------------- /src/orion/algo/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/base/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/base/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/base/base.py -------------------------------------------------------------------------------- /src/orion/algo/base/parallel_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/base/parallel_strategy.py -------------------------------------------------------------------------------- /src/orion/algo/base/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/base/registry.py -------------------------------------------------------------------------------- /src/orion/algo/bohb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/bohb/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/bohb/bohb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/bohb/bohb.py -------------------------------------------------------------------------------- /src/orion/algo/dehb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/dehb/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/dehb/brackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/dehb/brackets.py -------------------------------------------------------------------------------- /src/orion/algo/dehb/dehb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/dehb/dehb.py -------------------------------------------------------------------------------- /src/orion/algo/evolution_es/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/evolution_es/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/evolution_es/evolution_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/evolution_es/evolution_es.py -------------------------------------------------------------------------------- /src/orion/algo/evolution_es/mutate_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/evolution_es/mutate_functions.py -------------------------------------------------------------------------------- /src/orion/algo/gridsearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/gridsearch/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/gridsearch/gridsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/gridsearch/gridsearch.py -------------------------------------------------------------------------------- /src/orion/algo/hebo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/hebo/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/hebo/hebo_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/hebo/hebo_algo.py -------------------------------------------------------------------------------- /src/orion/algo/hyperband/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/hyperband/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/hyperband/hyperband.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/hyperband/hyperband.py -------------------------------------------------------------------------------- /src/orion/algo/mofa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/mofa/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/mofa/mofa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/mofa/mofa.py -------------------------------------------------------------------------------- /src/orion/algo/mofa/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/mofa/sampler.py -------------------------------------------------------------------------------- /src/orion/algo/mofa/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/mofa/transformer.py -------------------------------------------------------------------------------- /src/orion/algo/nevergradoptimizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/nevergradoptimizer/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/nevergradoptimizer/nevergradoptimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/nevergradoptimizer/nevergradoptimizer.py -------------------------------------------------------------------------------- /src/orion/algo/pbt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/pbt/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/pbt/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/pbt/exploit.py -------------------------------------------------------------------------------- /src/orion/algo/pbt/explore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/pbt/explore.py -------------------------------------------------------------------------------- /src/orion/algo/pbt/pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/pbt/pb2.py -------------------------------------------------------------------------------- /src/orion/algo/pbt/pb2_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/pbt/pb2_utils.py -------------------------------------------------------------------------------- /src/orion/algo/pbt/pbt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/pbt/pbt.py -------------------------------------------------------------------------------- /src/orion/algo/random/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/random/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/random/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/random/random.py -------------------------------------------------------------------------------- /src/orion/algo/space/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/space/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/space/configspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/space/configspace.py -------------------------------------------------------------------------------- /src/orion/algo/tpe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/tpe/__init__.py -------------------------------------------------------------------------------- /src/orion/algo/tpe/tpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/algo/tpe/tpe.py -------------------------------------------------------------------------------- /src/orion/analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/analysis/__init__.py -------------------------------------------------------------------------------- /src/orion/analysis/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/analysis/base.py -------------------------------------------------------------------------------- /src/orion/analysis/lpi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/analysis/lpi_utils.py -------------------------------------------------------------------------------- /src/orion/analysis/partial_dependency_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/analysis/partial_dependency_utils.py -------------------------------------------------------------------------------- /src/orion/analysis/regret_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/analysis/regret_utils.py -------------------------------------------------------------------------------- /src/orion/benchmark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/__init__.py -------------------------------------------------------------------------------- /src/orion/benchmark/assessment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/assessment/__init__.py -------------------------------------------------------------------------------- /src/orion/benchmark/assessment/averagerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/assessment/averagerank.py -------------------------------------------------------------------------------- /src/orion/benchmark/assessment/averageresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/assessment/averageresult.py -------------------------------------------------------------------------------- /src/orion/benchmark/assessment/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/assessment/base.py -------------------------------------------------------------------------------- /src/orion/benchmark/assessment/parallelassessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/assessment/parallelassessment.py -------------------------------------------------------------------------------- /src/orion/benchmark/benchmark_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/benchmark_client.py -------------------------------------------------------------------------------- /src/orion/benchmark/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/task/__init__.py -------------------------------------------------------------------------------- /src/orion/benchmark/task/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/task/base.py -------------------------------------------------------------------------------- /src/orion/benchmark/task/branin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/task/branin.py -------------------------------------------------------------------------------- /src/orion/benchmark/task/carromtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/task/carromtable.py -------------------------------------------------------------------------------- /src/orion/benchmark/task/eggholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/task/eggholder.py -------------------------------------------------------------------------------- /src/orion/benchmark/task/forrester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/task/forrester.py -------------------------------------------------------------------------------- /src/orion/benchmark/task/profet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/task/profet/__init__.py -------------------------------------------------------------------------------- /src/orion/benchmark/task/profet/fcnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/task/profet/fcnet.py -------------------------------------------------------------------------------- /src/orion/benchmark/task/profet/forrester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/task/profet/forrester.py -------------------------------------------------------------------------------- /src/orion/benchmark/task/profet/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/task/profet/model_utils.py -------------------------------------------------------------------------------- /src/orion/benchmark/task/profet/profet_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/task/profet/profet_task.py -------------------------------------------------------------------------------- /src/orion/benchmark/task/profet/svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/task/profet/svm.py -------------------------------------------------------------------------------- /src/orion/benchmark/task/profet/xgboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/task/profet/xgboost.py -------------------------------------------------------------------------------- /src/orion/benchmark/task/rosenbrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/benchmark/task/rosenbrock.py -------------------------------------------------------------------------------- /src/orion/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/client/__init__.py -------------------------------------------------------------------------------- /src/orion/client/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/client/cli.py -------------------------------------------------------------------------------- /src/orion/client/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/client/experiment.py -------------------------------------------------------------------------------- /src/orion/client/manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/client/manual.py -------------------------------------------------------------------------------- /src/orion/client/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/client/runner.py -------------------------------------------------------------------------------- /src/orion/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/__init__.py -------------------------------------------------------------------------------- /src/orion/core/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/_version.py -------------------------------------------------------------------------------- /src/orion/core/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/__init__.py -------------------------------------------------------------------------------- /src/orion/core/cli/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/base.py -------------------------------------------------------------------------------- /src/orion/core/cli/checks/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/checks/creation.py -------------------------------------------------------------------------------- /src/orion/core/cli/checks/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/checks/operations.py -------------------------------------------------------------------------------- /src/orion/core/cli/checks/presence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/checks/presence.py -------------------------------------------------------------------------------- /src/orion/core/cli/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/db/__init__.py -------------------------------------------------------------------------------- /src/orion/core/cli/db/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/db/dump.py -------------------------------------------------------------------------------- /src/orion/core/cli/db/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/db/load.py -------------------------------------------------------------------------------- /src/orion/core/cli/db/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/db/release.py -------------------------------------------------------------------------------- /src/orion/core/cli/db/rm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/db/rm.py -------------------------------------------------------------------------------- /src/orion/core/cli/db/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/db/set.py -------------------------------------------------------------------------------- /src/orion/core/cli/db/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/db/setup.py -------------------------------------------------------------------------------- /src/orion/core/cli/db/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/db/test.py -------------------------------------------------------------------------------- /src/orion/core/cli/db/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/db/upgrade.py -------------------------------------------------------------------------------- /src/orion/core/cli/db_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/db_main.py -------------------------------------------------------------------------------- /src/orion/core/cli/evc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/evc.py -------------------------------------------------------------------------------- /src/orion/core/cli/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/frontend.py -------------------------------------------------------------------------------- /src/orion/core/cli/hunt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/hunt.py -------------------------------------------------------------------------------- /src/orion/core/cli/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/info.py -------------------------------------------------------------------------------- /src/orion/core/cli/init_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/init_only.py -------------------------------------------------------------------------------- /src/orion/core/cli/insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/insert.py -------------------------------------------------------------------------------- /src/orion/core/cli/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/list.py -------------------------------------------------------------------------------- /src/orion/core/cli/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/plot.py -------------------------------------------------------------------------------- /src/orion/core/cli/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/serve.py -------------------------------------------------------------------------------- /src/orion/core/cli/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/cli/status.py -------------------------------------------------------------------------------- /src/orion/core/evc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/evc/__init__.py -------------------------------------------------------------------------------- /src/orion/core/evc/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/evc/adapters.py -------------------------------------------------------------------------------- /src/orion/core/evc/conflicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/evc/conflicts.py -------------------------------------------------------------------------------- /src/orion/core/evc/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/evc/experiment.py -------------------------------------------------------------------------------- /src/orion/core/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/io/__init__.py -------------------------------------------------------------------------------- /src/orion/core/io/cmdline_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/io/cmdline_parser.py -------------------------------------------------------------------------------- /src/orion/core/io/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/io/config.py -------------------------------------------------------------------------------- /src/orion/core/io/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/io/convert.py -------------------------------------------------------------------------------- /src/orion/core/io/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/io/database/__init__.py -------------------------------------------------------------------------------- /src/orion/core/io/database/ephemeraldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/io/database/ephemeraldb.py -------------------------------------------------------------------------------- /src/orion/core/io/database/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/io/database/mongodb.py -------------------------------------------------------------------------------- /src/orion/core/io/database/pickleddb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/io/database/pickleddb.py -------------------------------------------------------------------------------- /src/orion/core/io/experiment_branch_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/io/experiment_branch_builder.py -------------------------------------------------------------------------------- /src/orion/core/io/experiment_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/io/experiment_builder.py -------------------------------------------------------------------------------- /src/orion/core/io/interactive_commands/branching_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/io/interactive_commands/branching_prompt.py -------------------------------------------------------------------------------- /src/orion/core/io/orion_cmdline_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/io/orion_cmdline_parser.py -------------------------------------------------------------------------------- /src/orion/core/io/resolve_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/io/resolve_config.py -------------------------------------------------------------------------------- /src/orion/core/io/space_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/io/space_builder.py -------------------------------------------------------------------------------- /src/orion/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/__init__.py -------------------------------------------------------------------------------- /src/orion/core/utils/_appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/_appdirs.py -------------------------------------------------------------------------------- /src/orion/core/utils/backward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/backward.py -------------------------------------------------------------------------------- /src/orion/core/utils/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/diff.py -------------------------------------------------------------------------------- /src/orion/core/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/exceptions.py -------------------------------------------------------------------------------- /src/orion/core/utils/flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/flatten.py -------------------------------------------------------------------------------- /src/orion/core/utils/format_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/format_terminal.py -------------------------------------------------------------------------------- /src/orion/core/utils/format_trials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/format_trials.py -------------------------------------------------------------------------------- /src/orion/core/utils/module_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/module_import.py -------------------------------------------------------------------------------- /src/orion/core/utils/pptree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/pptree.py -------------------------------------------------------------------------------- /src/orion/core/utils/random_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/random_state.py -------------------------------------------------------------------------------- /src/orion/core/utils/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/singleton.py -------------------------------------------------------------------------------- /src/orion/core/utils/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/terminal.py -------------------------------------------------------------------------------- /src/orion/core/utils/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/tree.py -------------------------------------------------------------------------------- /src/orion/core/utils/working_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/utils/working_dir.py -------------------------------------------------------------------------------- /src/orion/core/worker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orion/core/worker/algo_wrappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/algo_wrappers/__init__.py -------------------------------------------------------------------------------- /src/orion/core/worker/algo_wrappers/algo_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/algo_wrappers/algo_wrapper.py -------------------------------------------------------------------------------- /src/orion/core/worker/algo_wrappers/insist_suggest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/algo_wrappers/insist_suggest.py -------------------------------------------------------------------------------- /src/orion/core/worker/algo_wrappers/space_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/algo_wrappers/space_transform.py -------------------------------------------------------------------------------- /src/orion/core/worker/algo_wrappers/transform_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/algo_wrappers/transform_wrapper.py -------------------------------------------------------------------------------- /src/orion/core/worker/consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/consumer.py -------------------------------------------------------------------------------- /src/orion/core/worker/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/experiment.py -------------------------------------------------------------------------------- /src/orion/core/worker/experiment_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/experiment_config.py -------------------------------------------------------------------------------- /src/orion/core/worker/primary_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/primary_algo.py -------------------------------------------------------------------------------- /src/orion/core/worker/producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/producer.py -------------------------------------------------------------------------------- /src/orion/core/worker/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/transformer.py -------------------------------------------------------------------------------- /src/orion/core/worker/trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/trial.py -------------------------------------------------------------------------------- /src/orion/core/worker/trial_pacemaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/trial_pacemaker.py -------------------------------------------------------------------------------- /src/orion/core/worker/warm_start/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/warm_start/__init__.py -------------------------------------------------------------------------------- /src/orion/core/worker/warm_start/knowledge_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/warm_start/knowledge_base.py -------------------------------------------------------------------------------- /src/orion/core/worker/warm_start/multi_task_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/warm_start/multi_task_wrapper.py -------------------------------------------------------------------------------- /src/orion/core/worker/warm_start/warm_starteable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/core/worker/warm_start/warm_starteable.py -------------------------------------------------------------------------------- /src/orion/executor/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/executor/base.py -------------------------------------------------------------------------------- /src/orion/executor/dask_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/executor/dask_backend.py -------------------------------------------------------------------------------- /src/orion/executor/joblib_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/executor/joblib_backend.py -------------------------------------------------------------------------------- /src/orion/executor/multiprocess_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/executor/multiprocess_backend.py -------------------------------------------------------------------------------- /src/orion/executor/ray_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/executor/ray_backend.py -------------------------------------------------------------------------------- /src/orion/executor/single_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/executor/single_backend.py -------------------------------------------------------------------------------- /src/orion/plotting/backend_plotly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/plotting/backend_plotly.py -------------------------------------------------------------------------------- /src/orion/plotting/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/plotting/base.py -------------------------------------------------------------------------------- /src/orion/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orion/serving/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/serving/__init__.py -------------------------------------------------------------------------------- /src/orion/serving/benchmarks_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/serving/benchmarks_resource.py -------------------------------------------------------------------------------- /src/orion/serving/experiments_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/serving/experiments_resource.py -------------------------------------------------------------------------------- /src/orion/serving/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/serving/parameters.py -------------------------------------------------------------------------------- /src/orion/serving/plots_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/serving/plots_resources.py -------------------------------------------------------------------------------- /src/orion/serving/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/serving/responses.py -------------------------------------------------------------------------------- /src/orion/serving/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/serving/runtime.py -------------------------------------------------------------------------------- /src/orion/serving/storage_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/serving/storage_resource.py -------------------------------------------------------------------------------- /src/orion/serving/trials_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/serving/trials_resource.py -------------------------------------------------------------------------------- /src/orion/serving/webapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/serving/webapi.py -------------------------------------------------------------------------------- /src/orion/storage/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/storage/backup.py -------------------------------------------------------------------------------- /src/orion/storage/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/storage/base.py -------------------------------------------------------------------------------- /src/orion/storage/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/storage/legacy.py -------------------------------------------------------------------------------- /src/orion/storage/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/storage/track.py -------------------------------------------------------------------------------- /src/orion/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/testing/__init__.py -------------------------------------------------------------------------------- /src/orion/testing/algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/testing/algo.py -------------------------------------------------------------------------------- /src/orion/testing/dummy_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/testing/dummy_algo.py -------------------------------------------------------------------------------- /src/orion/testing/evc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/testing/evc.py -------------------------------------------------------------------------------- /src/orion/testing/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/testing/plotting.py -------------------------------------------------------------------------------- /src/orion/testing/space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/testing/space.py -------------------------------------------------------------------------------- /src/orion/testing/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/testing/state.py -------------------------------------------------------------------------------- /src/orion/testing/trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/src/orion/testing/trial.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/functional/algos/test_algos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/algos/test_algos.py -------------------------------------------------------------------------------- /tests/functional/backward_compatibility/black_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/backward_compatibility/black_box.py -------------------------------------------------------------------------------- /tests/functional/backward_compatibility/python_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/backward_compatibility/python_api.py -------------------------------------------------------------------------------- /tests/functional/backward_compatibility/random.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/backward_compatibility/random.yaml -------------------------------------------------------------------------------- /tests/functional/backward_compatibility/test_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/backward_compatibility/test_versions.py -------------------------------------------------------------------------------- /tests/functional/backward_compatibility/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/backward_compatibility/versions.txt -------------------------------------------------------------------------------- /tests/functional/benchmark/test_benchmark_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/benchmark/test_benchmark_flow.py -------------------------------------------------------------------------------- /tests/functional/branching/black_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/branching/black_box.py -------------------------------------------------------------------------------- /tests/functional/branching/black_box_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/branching/black_box_new.py -------------------------------------------------------------------------------- /tests/functional/branching/black_box_with_y.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/branching/black_box_with_y.py -------------------------------------------------------------------------------- /tests/functional/branching/black_box_with_z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/branching/black_box_with_z.py -------------------------------------------------------------------------------- /tests/functional/branching/new_algo_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/branching/new_algo_config.yaml -------------------------------------------------------------------------------- /tests/functional/branching/orion_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/branching/orion_config.yaml -------------------------------------------------------------------------------- /tests/functional/branching/test_branching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/branching/test_branching.py -------------------------------------------------------------------------------- /tests/functional/client/black_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/client/black_box.py -------------------------------------------------------------------------------- /tests/functional/client/orion_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/client/orion_config.yaml -------------------------------------------------------------------------------- /tests/functional/client/test_cli_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/client/test_cli_client.py -------------------------------------------------------------------------------- /tests/functional/commands/black_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/black_box.py -------------------------------------------------------------------------------- /tests/functional/commands/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/conftest.py -------------------------------------------------------------------------------- /tests/functional/commands/experiment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/experiment.yaml -------------------------------------------------------------------------------- /tests/functional/commands/orion_config_random.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/orion_config_random.yaml -------------------------------------------------------------------------------- /tests/functional/commands/test_db_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/test_db_commands.py -------------------------------------------------------------------------------- /tests/functional/commands/test_db_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/test_db_dump.py -------------------------------------------------------------------------------- /tests/functional/commands/test_db_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/test_db_load.py -------------------------------------------------------------------------------- /tests/functional/commands/test_db_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/test_db_release.py -------------------------------------------------------------------------------- /tests/functional/commands/test_db_rm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/test_db_rm.py -------------------------------------------------------------------------------- /tests/functional/commands/test_db_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/test_db_set.py -------------------------------------------------------------------------------- /tests/functional/commands/test_hunt_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/test_hunt_command.py -------------------------------------------------------------------------------- /tests/functional/commands/test_info_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/test_info_command.py -------------------------------------------------------------------------------- /tests/functional/commands/test_insert_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/test_insert_command.py -------------------------------------------------------------------------------- /tests/functional/commands/test_list_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/test_list_command.py -------------------------------------------------------------------------------- /tests/functional/commands/test_plot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/test_plot_commands.py -------------------------------------------------------------------------------- /tests/functional/commands/test_setup_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/test_setup_command.py -------------------------------------------------------------------------------- /tests/functional/commands/test_status_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/test_status_command.py -------------------------------------------------------------------------------- /tests/functional/commands/test_verbose_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/commands/test_verbose_messages.py -------------------------------------------------------------------------------- /tests/functional/configuration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/configuration/conftest.py -------------------------------------------------------------------------------- /tests/functional/configuration/test_all_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/configuration/test_all_options.py -------------------------------------------------------------------------------- /tests/functional/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/conftest.py -------------------------------------------------------------------------------- /tests/functional/core/worker/test_experiment_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/core/worker/test_experiment_functional.py -------------------------------------------------------------------------------- /tests/functional/core/worker/warm_start/test_warm_starting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/core/worker/warm_start/test_warm_starting.py -------------------------------------------------------------------------------- /tests/functional/demo/black_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/demo/black_box.py -------------------------------------------------------------------------------- /tests/functional/demo/black_box_w_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/demo/black_box_w_config.py -------------------------------------------------------------------------------- /tests/functional/demo/black_box_w_config_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/demo/black_box_w_config_other.py -------------------------------------------------------------------------------- /tests/functional/demo/broken_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/demo/broken_box.py -------------------------------------------------------------------------------- /tests/functional/demo/database_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/demo/database_config.yaml -------------------------------------------------------------------------------- /tests/functional/demo/dir_per_trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/demo/dir_per_trial.py -------------------------------------------------------------------------------- /tests/functional/demo/orion_black_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/demo/orion_black_box.py -------------------------------------------------------------------------------- /tests/functional/demo/orion_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/demo/orion_config.yaml -------------------------------------------------------------------------------- /tests/functional/demo/orion_config_other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/demo/orion_config_other.yaml -------------------------------------------------------------------------------- /tests/functional/demo/orion_config_random.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/demo/orion_config_random.yaml -------------------------------------------------------------------------------- /tests/functional/demo/script_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/demo/script_config.yaml -------------------------------------------------------------------------------- /tests/functional/demo/strategy_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/demo/strategy_config.yaml -------------------------------------------------------------------------------- /tests/functional/demo/stress_gradient.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/demo/stress_gradient.yaml -------------------------------------------------------------------------------- /tests/functional/demo/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/demo/test_demo.py -------------------------------------------------------------------------------- /tests/functional/demo/working_dir_config.yaml: -------------------------------------------------------------------------------- 1 | name: allo 2 | 3 | working_dir: orion/test 4 | -------------------------------------------------------------------------------- /tests/functional/example/orion_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/example/orion_config.yaml -------------------------------------------------------------------------------- /tests/functional/example/test_scikit_learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/example/test_scikit_learn.py -------------------------------------------------------------------------------- /tests/functional/gradient_descent_algo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/gradient_descent_algo/LICENSE -------------------------------------------------------------------------------- /tests/functional/gradient_descent_algo/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/gradient_descent_algo/MANIFEST.in -------------------------------------------------------------------------------- /tests/functional/gradient_descent_algo/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/gradient_descent_algo/setup.cfg -------------------------------------------------------------------------------- /tests/functional/gradient_descent_algo/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/gradient_descent_algo/setup.py -------------------------------------------------------------------------------- /tests/functional/gradient_descent_algo/src/orion/algo/gradient_descent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/gradient_descent_algo/src/orion/algo/gradient_descent.py -------------------------------------------------------------------------------- /tests/functional/parsing/orion_config_random.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/parsing/orion_config_random.yaml -------------------------------------------------------------------------------- /tests/functional/parsing/test_parsing_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/parsing/test_parsing_base.py -------------------------------------------------------------------------------- /tests/functional/parsing/test_parsing_hunt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/parsing/test_parsing_hunt.py -------------------------------------------------------------------------------- /tests/functional/parsing/test_parsing_insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/parsing/test_parsing_insert.py -------------------------------------------------------------------------------- /tests/functional/serving/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/serving/conftest.py -------------------------------------------------------------------------------- /tests/functional/serving/test_benchmarks_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/serving/test_benchmarks_resource.py -------------------------------------------------------------------------------- /tests/functional/serving/test_experiments_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/serving/test_experiments_resource.py -------------------------------------------------------------------------------- /tests/functional/serving/test_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/serving/test_frontend.py -------------------------------------------------------------------------------- /tests/functional/serving/test_plots_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/serving/test_plots_resource.py -------------------------------------------------------------------------------- /tests/functional/serving/test_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/serving/test_root.py -------------------------------------------------------------------------------- /tests/functional/serving/test_storage_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/serving/test_storage_resource.py -------------------------------------------------------------------------------- /tests/functional/serving/test_trials_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/serving/test_trials_resource.py -------------------------------------------------------------------------------- /tests/functional/storage/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/functional/storage/test_io.py -------------------------------------------------------------------------------- /tests/orion_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/orion_config.yaml -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/stress/client/stress_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/stress/client/stress_experiment.py -------------------------------------------------------------------------------- /tests/stress/requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | -------------------------------------------------------------------------------- /tests/unittests/algo/long/ax/test_axoptimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/long/ax/test_axoptimizer.py -------------------------------------------------------------------------------- /tests/unittests/algo/long/hebo/test_hebo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/long/hebo/test_hebo.py -------------------------------------------------------------------------------- /tests/unittests/algo/long/nevergrad/integration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/long/nevergrad/integration_test.py -------------------------------------------------------------------------------- /tests/unittests/algo/mofa/test_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/mofa/test_analysis.py -------------------------------------------------------------------------------- /tests/unittests/algo/mofa/test_mofa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/mofa/test_mofa.py -------------------------------------------------------------------------------- /tests/unittests/algo/pbt/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/pbt/base.py -------------------------------------------------------------------------------- /tests/unittests/algo/pbt/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/pbt/conftest.py -------------------------------------------------------------------------------- /tests/unittests/algo/pbt/test_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/pbt/test_exploit.py -------------------------------------------------------------------------------- /tests/unittests/algo/pbt/test_explore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/pbt/test_explore.py -------------------------------------------------------------------------------- /tests/unittests/algo/pbt/test_lineages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/pbt/test_lineages.py -------------------------------------------------------------------------------- /tests/unittests/algo/pbt/test_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/pbt/test_pb2.py -------------------------------------------------------------------------------- /tests/unittests/algo/pbt/test_pbt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/pbt/test_pbt.py -------------------------------------------------------------------------------- /tests/unittests/algo/test_asha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/test_asha.py -------------------------------------------------------------------------------- /tests/unittests/algo/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/test_base.py -------------------------------------------------------------------------------- /tests/unittests/algo/test_bohb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/test_bohb.py -------------------------------------------------------------------------------- /tests/unittests/algo/test_configspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/test_configspace.py -------------------------------------------------------------------------------- /tests/unittests/algo/test_dehb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/test_dehb.py -------------------------------------------------------------------------------- /tests/unittests/algo/test_evolution_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/test_evolution_es.py -------------------------------------------------------------------------------- /tests/unittests/algo/test_gridsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/test_gridsearch.py -------------------------------------------------------------------------------- /tests/unittests/algo/test_hyperband.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/test_hyperband.py -------------------------------------------------------------------------------- /tests/unittests/algo/test_parallel_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/test_parallel_strategy.py -------------------------------------------------------------------------------- /tests/unittests/algo/test_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/test_random.py -------------------------------------------------------------------------------- /tests/unittests/algo/test_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/test_registry.py -------------------------------------------------------------------------------- /tests/unittests/algo/test_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/test_space.py -------------------------------------------------------------------------------- /tests/unittests/algo/test_tpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/algo/test_tpe.py -------------------------------------------------------------------------------- /tests/unittests/analysis/__init__.py: -------------------------------------------------------------------------------- 1 | """Test module for :mod:`orion.analysis`""" 2 | -------------------------------------------------------------------------------- /tests/unittests/analysis/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/analysis/test_base.py -------------------------------------------------------------------------------- /tests/unittests/analysis/test_lpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/analysis/test_lpi.py -------------------------------------------------------------------------------- /tests/unittests/analysis/test_partial_dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/analysis/test_partial_dependency.py -------------------------------------------------------------------------------- /tests/unittests/analysis/test_regret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/analysis/test_regret.py -------------------------------------------------------------------------------- /tests/unittests/benchmark/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/benchmark/conftest.py -------------------------------------------------------------------------------- /tests/unittests/benchmark/task/profet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unittests/benchmark/task/profet/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/benchmark/task/profet/conftest.py -------------------------------------------------------------------------------- /tests/unittests/benchmark/task/profet/test_fcnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/benchmark/task/profet/test_fcnet.py -------------------------------------------------------------------------------- /tests/unittests/benchmark/task/profet/test_forrester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/benchmark/task/profet/test_forrester.py -------------------------------------------------------------------------------- /tests/unittests/benchmark/task/profet/test_profet_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/benchmark/task/profet/test_profet_task.py -------------------------------------------------------------------------------- /tests/unittests/benchmark/task/profet/test_svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/benchmark/task/profet/test_svm.py -------------------------------------------------------------------------------- /tests/unittests/benchmark/task/profet/test_xgboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/benchmark/task/profet/test_xgboost.py -------------------------------------------------------------------------------- /tests/unittests/benchmark/task/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/benchmark/task/test_tasks.py -------------------------------------------------------------------------------- /tests/unittests/benchmark/test_assessments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/benchmark/test_assessments.py -------------------------------------------------------------------------------- /tests/unittests/benchmark/test_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/benchmark/test_benchmark.py -------------------------------------------------------------------------------- /tests/unittests/benchmark/test_benchmark_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/benchmark/test_benchmark_client.py -------------------------------------------------------------------------------- /tests/unittests/client/runner_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/client/runner_subprocess.py -------------------------------------------------------------------------------- /tests/unittests/client/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/client/test_client.py -------------------------------------------------------------------------------- /tests/unittests/client/test_experiment_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/client/test_experiment_client.py -------------------------------------------------------------------------------- /tests/unittests/client/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/client/test_runner.py -------------------------------------------------------------------------------- /tests/unittests/core/bad_config1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/bad_config1.txt -------------------------------------------------------------------------------- /tests/unittests/core/bad_config2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/bad_config2.txt -------------------------------------------------------------------------------- /tests/unittests/core/bad_config3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/bad_config3.txt -------------------------------------------------------------------------------- /tests/unittests/core/bad_config4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/bad_config4.txt -------------------------------------------------------------------------------- /tests/unittests/core/cli/test_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/cli/test_checks.py -------------------------------------------------------------------------------- /tests/unittests/core/cli/test_evc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/cli/test_evc.py -------------------------------------------------------------------------------- /tests/unittests/core/cli/test_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/cli/test_info.py -------------------------------------------------------------------------------- /tests/unittests/core/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/conftest.py -------------------------------------------------------------------------------- /tests/unittests/core/database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unittests/core/database/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/database/conftest.py -------------------------------------------------------------------------------- /tests/unittests/core/database/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/database/test_database.py -------------------------------------------------------------------------------- /tests/unittests/core/database/test_ephemeraldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/database/test_ephemeraldb.py -------------------------------------------------------------------------------- /tests/unittests/core/database/test_mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/database/test_mongodb.py -------------------------------------------------------------------------------- /tests/unittests/core/database/test_pickleddb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/database/test_pickleddb.py -------------------------------------------------------------------------------- /tests/unittests/core/evc/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/evc/conftest.py -------------------------------------------------------------------------------- /tests/unittests/core/evc/test_adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/evc/test_adapters.py -------------------------------------------------------------------------------- /tests/unittests/core/evc/test_conflicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/evc/test_conflicts.py -------------------------------------------------------------------------------- /tests/unittests/core/evc/test_experiment_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/evc/test_experiment_tree.py -------------------------------------------------------------------------------- /tests/unittests/core/evc/test_resolutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/evc/test_resolutions.py -------------------------------------------------------------------------------- /tests/unittests/core/experiment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/experiment.yaml -------------------------------------------------------------------------------- /tests/unittests/core/io/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/io/conftest.py -------------------------------------------------------------------------------- /tests/unittests/core/io/database_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/io/database_test.py -------------------------------------------------------------------------------- /tests/unittests/core/io/interactive_commands/test_branching_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/io/interactive_commands/test_branching_prompt.py -------------------------------------------------------------------------------- /tests/unittests/core/io/orion.yaml: -------------------------------------------------------------------------------- 1 | stuff: 1 2 | -------------------------------------------------------------------------------- /tests/unittests/core/io/orion_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/io/orion_config.yaml -------------------------------------------------------------------------------- /tests/unittests/core/io/orion_incomplete_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/io/orion_incomplete_config.yaml -------------------------------------------------------------------------------- /tests/unittests/core/io/orion_old_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/io/orion_old_config.yaml -------------------------------------------------------------------------------- /tests/unittests/core/io/test_cmdline_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/io/test_cmdline_parser.py -------------------------------------------------------------------------------- /tests/unittests/core/io/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/io/test_config.py -------------------------------------------------------------------------------- /tests/unittests/core/io/test_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/io/test_converters.py -------------------------------------------------------------------------------- /tests/unittests/core/io/test_evc_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/io/test_evc_builder.py -------------------------------------------------------------------------------- /tests/unittests/core/io/test_experiment_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/io/test_experiment_builder.py -------------------------------------------------------------------------------- /tests/unittests/core/io/test_orion_cmdline_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/io/test_orion_cmdline_parser.py -------------------------------------------------------------------------------- /tests/unittests/core/io/test_resolve_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/io/test_resolve_config.py -------------------------------------------------------------------------------- /tests/unittests/core/io/test_space_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/io/test_space_builder.py -------------------------------------------------------------------------------- /tests/unittests/core/sample_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/sample_config.json -------------------------------------------------------------------------------- /tests/unittests/core/sample_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/sample_config.txt -------------------------------------------------------------------------------- /tests/unittests/core/sample_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/sample_config.yml -------------------------------------------------------------------------------- /tests/unittests/core/sample_config_diff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/sample_config_diff.yml -------------------------------------------------------------------------------- /tests/unittests/core/sample_config_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/sample_config_template.txt -------------------------------------------------------------------------------- /tests/unittests/core/some_sample_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/some_sample_config.txt -------------------------------------------------------------------------------- /tests/unittests/core/test_branch_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/test_branch_config.py -------------------------------------------------------------------------------- /tests/unittests/core/test_insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/test_insert.py -------------------------------------------------------------------------------- /tests/unittests/core/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/test_transformer.py -------------------------------------------------------------------------------- /tests/unittests/core/test_utils_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/test_utils_format.py -------------------------------------------------------------------------------- /tests/unittests/core/utils/test_backward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/utils/test_backward.py -------------------------------------------------------------------------------- /tests/unittests/core/utils/test_flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/utils/test_flatten.py -------------------------------------------------------------------------------- /tests/unittests/core/utils/test_module_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/utils/test_module_import.py -------------------------------------------------------------------------------- /tests/unittests/core/utils/test_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/utils/test_tree.py -------------------------------------------------------------------------------- /tests/unittests/core/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/utils/test_utils.py -------------------------------------------------------------------------------- /tests/unittests/core/utils/test_working_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/utils/test_working_dir.py -------------------------------------------------------------------------------- /tests/unittests/core/worker/algo_wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unittests/core/worker/algo_wrappers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/worker/algo_wrappers/base.py -------------------------------------------------------------------------------- /tests/unittests/core/worker/algo_wrappers/test_insist_suggest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/worker/algo_wrappers/test_insist_suggest.py -------------------------------------------------------------------------------- /tests/unittests/core/worker/algo_wrappers/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/worker/algo_wrappers/test_transform.py -------------------------------------------------------------------------------- /tests/unittests/core/worker/test_consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/worker/test_consumer.py -------------------------------------------------------------------------------- /tests/unittests/core/worker/test_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/worker/test_experiment.py -------------------------------------------------------------------------------- /tests/unittests/core/worker/test_experiment_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/worker/test_experiment_config.py -------------------------------------------------------------------------------- /tests/unittests/core/worker/test_producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/worker/test_producer.py -------------------------------------------------------------------------------- /tests/unittests/core/worker/test_trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/worker/test_trial.py -------------------------------------------------------------------------------- /tests/unittests/core/worker/test_trial_pacemaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/worker/test_trial_pacemaker.py -------------------------------------------------------------------------------- /tests/unittests/core/worker/warm_start/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unittests/core/worker/warm_start/test_knowledge_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/worker/warm_start/test_knowledge_base.py -------------------------------------------------------------------------------- /tests/unittests/core/worker/warm_start/test_multi_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/worker/warm_start/test_multi_task.py -------------------------------------------------------------------------------- /tests/unittests/core/worker/warm_start/test_warm_starteable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/core/worker/warm_start/test_warm_starteable.py -------------------------------------------------------------------------------- /tests/unittests/executor/test_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/executor/test_executor.py -------------------------------------------------------------------------------- /tests/unittests/executor/test_futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/executor/test_futures.py -------------------------------------------------------------------------------- /tests/unittests/plotting/test_plot_accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/plotting/test_plot_accessor.py -------------------------------------------------------------------------------- /tests/unittests/plotting/test_plotly_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/plotting/test_plotly_backend.py -------------------------------------------------------------------------------- /tests/unittests/storage/test_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/storage/test_legacy.py -------------------------------------------------------------------------------- /tests/unittests/storage/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tests/unittests/storage/test_storage.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/tox.ini -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epistimio/orion/HEAD/versioneer.py --------------------------------------------------------------------------------