.flake8
.gitignore
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.md
pyproject.toml
pytest.ini
setup.py
.github/workflows/build-and-test.yml
.github/workflows/cron.yml
.github/workflows/deploy.yml
ax/__init__.py
ax/version.py
ax/benchmark/__init__.py
ax/benchmark/benchmark.py
ax/benchmark/benchmark_problem.py
ax/benchmark/benchmark_result.py
ax/benchmark/botorch_methods.py
ax/benchmark/utils.py
ax/benchmark/botorch_modular/__init__.py
ax/benchmark/botorch_modular/standard_methods.py
ax/benchmark/botorch_modular/standard_problems.py
ax/benchmark/tests/__init__.py
ax/benchmark/tests/test_benchmark.py
ax/benchmark/tests/test_benchmark_problem.py
ax/benchmark/tests/test_benchmark_result.py
ax/benchmark/tests/test_botorch_methods.py
ax/core/__init__.py
ax/core/arm.py
ax/core/base_trial.py
ax/core/batch_trial.py
ax/core/data.py
ax/core/experiment.py
ax/core/generator_run.py
ax/core/metric.py
ax/core/multi_type_experiment.py
ax/core/objective.py
ax/core/observation.py
ax/core/optimization_config.py
ax/core/outcome_constraint.py
ax/core/parameter.py
ax/core/parameter_constraint.py
ax/core/runner.py
ax/core/search_space.py
ax/core/simple_experiment.py
ax/core/trial.py
ax/core/types.py
ax/core/utils.py
ax/core/tests/__init__.py
ax/core/tests/test_arm.py
ax/core/tests/test_batch_trial.py
ax/core/tests/test_data.py
ax/core/tests/test_experiment.py
ax/core/tests/test_generator_run.py
ax/core/tests/test_metric.py
ax/core/tests/test_multi_type_experiment.py
ax/core/tests/test_objective.py
ax/core/tests/test_observation.py
ax/core/tests/test_optimization_config.py
ax/core/tests/test_outcome_constraint.py
ax/core/tests/test_parameter.py
ax/core/tests/test_parameter_constraint.py
ax/core/tests/test_search_space.py
ax/core/tests/test_simple_experiment.py
ax/core/tests/test_trial.py
ax/core/tests/test_types.py
ax/core/tests/test_utils.py
ax/exceptions/__init__.py
ax/exceptions/constants.py
ax/exceptions/core.py
ax/exceptions/data_provider.py
ax/exceptions/generation_strategy.py
ax/exceptions/model.py
ax/exceptions/storage.py
ax/metrics/__init__.py
ax/metrics/branin.py
ax/metrics/factorial.py
ax/metrics/hartmann6.py
ax/metrics/l2norm.py
ax/metrics/noisy_function.py
ax/modelbridge/__init__.py
ax/modelbridge/array.py
ax/modelbridge/base.py
ax/modelbridge/cross_validation.py
ax/modelbridge/discrete.py
ax/modelbridge/dispatch_utils.py
ax/modelbridge/factory.py
ax/modelbridge/generation_strategy.py
ax/modelbridge/modelbridge_utils.py
ax/modelbridge/multi_objective_torch.py
ax/modelbridge/numpy.py
ax/modelbridge/random.py
ax/modelbridge/registry.py
ax/modelbridge/torch.py
ax/modelbridge/strategies/__init__.py
ax/modelbridge/strategies/alebo.py
ax/modelbridge/strategies/rembo.py
ax/modelbridge/tests/__init__.py
ax/modelbridge/tests/test_alebo_strategy.py
ax/modelbridge/tests/test_array_modelbridge.py
ax/modelbridge/tests/test_base_modelbridge.py
ax/modelbridge/tests/test_base_transform.py
ax/modelbridge/tests/test_cap_parameter_transform.py
ax/modelbridge/tests/test_cast_transform.py
ax/modelbridge/tests/test_centered_unit_x_transform.py
ax/modelbridge/tests/test_convert_metric_names.py
ax/modelbridge/tests/test_cross_validation.py
ax/modelbridge/tests/test_derelativize_transform.py
ax/modelbridge/tests/test_discrete_modelbridge.py
ax/modelbridge/tests/test_dispatch_utils.py
ax/modelbridge/tests/test_factory.py
ax/modelbridge/tests/test_generation_strategy.py
ax/modelbridge/tests/test_int_range_to_choice_transform.py
ax/modelbridge/tests/test_int_to_float_transform.py
ax/modelbridge/tests/test_inverse_gaussian_cdf_y.py
ax/modelbridge/tests/test_ivw_transform.py
ax/modelbridge/tests/test_log_transform.py
ax/modelbridge/tests/test_log_y_transform.py
ax/modelbridge/tests/test_multi_objective_torch_modelbridge.py
ax/modelbridge/tests/test_numpy_modelbridge.py
ax/modelbridge/tests/test_one_hot_transform.py
ax/modelbridge/tests/test_ordered_choice_encode_transform.py
ax/modelbridge/tests/test_percentile_y_transform.py
ax/modelbridge/tests/test_power_transform_y.py
ax/modelbridge/tests/test_random_modelbridge.py
ax/modelbridge/tests/test_registry.py
ax/modelbridge/tests/test_rembo_strategy.py
ax/modelbridge/tests/test_remove_fixed_transform.py
ax/modelbridge/tests/test_rounding.py
ax/modelbridge/tests/test_search_space_to_choice_transform.py
ax/modelbridge/tests/test_standardize_y_transform.py
ax/modelbridge/tests/test_stratified_standardize_y.py
ax/modelbridge/tests/test_task_encode_transform.py
ax/modelbridge/tests/test_torch_modelbridge.py
ax/modelbridge/tests/test_transform_callback.py
ax/modelbridge/tests/test_trial_as_task_transform.py
ax/modelbridge/tests/test_unit_x_transform.py
ax/modelbridge/tests/test_utils.py
ax/modelbridge/tests/test_winsorize_transform.py
ax/modelbridge/transforms/__init__.py
ax/modelbridge/transforms/base.py
ax/modelbridge/transforms/cap_parameter.py
ax/modelbridge/transforms/cast.py
ax/modelbridge/transforms/centered_unit_x.py
ax/modelbridge/transforms/convert_metric_names.py
ax/modelbridge/transforms/derelativize.py
ax/modelbridge/transforms/int_range_to_choice.py
ax/modelbridge/transforms/int_to_float.py
ax/modelbridge/transforms/inverse_gaussian_cdf_y.py
ax/modelbridge/transforms/ivw.py
ax/modelbridge/transforms/log.py
ax/modelbridge/transforms/log_y.py
ax/modelbridge/transforms/one_hot.py
ax/modelbridge/transforms/ordered_choice_encode.py
ax/modelbridge/transforms/percentile_y.py
ax/modelbridge/transforms/power_transform_y.py
ax/modelbridge/transforms/remove_fixed.py
ax/modelbridge/transforms/rounding.py
ax/modelbridge/transforms/search_space_to_choice.py
ax/modelbridge/transforms/standardize_y.py
ax/modelbridge/transforms/stratified_standardize_y.py
ax/modelbridge/transforms/task_encode.py
ax/modelbridge/transforms/trial_as_task.py
ax/modelbridge/transforms/unit_x.py
ax/modelbridge/transforms/utils.py
ax/modelbridge/transforms/winsorize.py
ax/models/__init__.py
ax/models/base.py
ax/models/discrete_base.py
ax/models/model_utils.py
ax/models/numpy_base.py
ax/models/torch_base.py
ax/models/discrete/__init__.py
ax/models/discrete/eb_thompson.py
ax/models/discrete/full_factorial.py
ax/models/discrete/thompson.py
ax/models/numpy/__init__.py
ax/models/numpy/randomforest.py
ax/models/random/__init__.py
ax/models/random/alebo_initializer.py
ax/models/random/base.py
ax/models/random/rembo_initializer.py
ax/models/random/sobol.py
ax/models/random/uniform.py
ax/models/tests/__init__.py
ax/models/tests/test_alebo.py
ax/models/tests/test_alebo_initializer.py
ax/models/tests/test_botorch_defaults.py
ax/models/tests/test_botorch_kg.py
ax/models/tests/test_botorch_mes.py
ax/models/tests/test_botorch_model.py
ax/models/tests/test_botorch_moo_defaults.py
ax/models/tests/test_botorch_moo_model.py
ax/models/tests/test_cbo_lcea.py
ax/models/tests/test_cbo_lcem.py
ax/models/tests/test_cbo_sac.py
ax/models/tests/test_discrete.py
ax/models/tests/test_eb_thompson.py
ax/models/tests/test_full_factorial.py
ax/models/tests/test_model_utils.py
ax/models/tests/test_numpy.py
ax/models/tests/test_posterior_mean.py
ax/models/tests/test_random.py
ax/models/tests/test_randomforest.py
ax/models/tests/test_rembo.py
ax/models/tests/test_rembo_initializer.py
ax/models/tests/test_sobol.py
ax/models/tests/test_thompson.py
ax/models/tests/test_torch.py
ax/models/tests/test_torch_model_utils.py
ax/models/tests/test_uniform.py
ax/models/torch/__init__.py
ax/models/torch/alebo.py
ax/models/torch/botorch.py
ax/models/torch/botorch_defaults.py
ax/models/torch/botorch_kg.py
ax/models/torch/botorch_mes.py
ax/models/torch/botorch_moo.py
ax/models/torch/botorch_moo_defaults.py
ax/models/torch/cbo_lcea.py
ax/models/torch/cbo_lcem.py
ax/models/torch/cbo_sac.py
ax/models/torch/frontier_utils.py
ax/models/torch/posterior_mean.py
ax/models/torch/rembo.py
ax/models/torch/utils.py
ax/models/torch/botorch_modular/__init__.py
ax/models/torch/botorch_modular/acquisition.py
ax/models/torch/botorch_modular/kg.py
ax/models/torch/botorch_modular/list_surrogate.py
ax/models/torch/botorch_modular/mes.py
ax/models/torch/botorch_modular/model.py
ax/models/torch/botorch_modular/multi_fidelity.py
ax/models/torch/botorch_modular/surrogate.py
ax/models/torch/botorch_modular/utils.py
ax/models/torch/tests/__init__.py
ax/models/torch/tests/test_acquisition.py
ax/models/torch/tests/test_kg.py
ax/models/torch/tests/test_list_surrogate.py
ax/models/torch/tests/test_mes.py
ax/models/torch/tests/test_model.py
ax/models/torch/tests/test_multi_fidelity.py
ax/models/torch/tests/test_surrogate.py
ax/models/torch/tests/test_utils.py
ax/plot/__init__.py
ax/plot/bandit_rollout.py
ax/plot/base.py
ax/plot/color.py
ax/plot/contour.py
ax/plot/diagnostic.py
ax/plot/exp_utils.py
ax/plot/feature_importances.py
ax/plot/helper.py
ax/plot/marginal_effects.py
ax/plot/pareto_frontier.py
ax/plot/pareto_utils.py
ax/plot/render.py
ax/plot/scatter.py
ax/plot/slice.py
ax/plot/table_view.py
ax/plot/trace.py
ax/plot/css/__init__.py
ax/plot/css/base.css
ax/plot/js/__init__.py
ax/plot/js/generic_plotly.js
ax/plot/js/common/__init__.py
ax/plot/js/common/css.js
ax/plot/js/common/helpers.js
ax/plot/js/common/plotly_offline.js
ax/plot/js/common/plotly_online.js
ax/plot/js/common/plotly_requires.js
ax/plot/tests/__init__.py
ax/plot/tests/test_pareto_utils.py
ax/plot/tests/test_tile_fitted.py
ax/runners/__init__.py
ax/runners/synthetic.py
ax/service/__init__.py
ax/service/ax_client.py
ax/service/managed_loop.py
ax/service/tests/__init__.py
ax/service/tests/test_ax_client.py
ax/service/tests/test_best_point_utils.py
ax/service/tests/test_instantiation_utils.py
ax/service/tests/test_managed_loop.py
ax/service/tests/test_with_db_settings_base.py
ax/service/utils/__init__.py
ax/service/utils/best_point.py
ax/service/utils/instantiation.py
ax/service/utils/with_db_settings_base.py
ax/storage/__init__.py
ax/storage/botorch_modular_registry.py
ax/storage/metric_registry.py
ax/storage/runner_registry.py
ax/storage/transform_registry.py
ax/storage/utils.py
ax/storage/json_store/__init__.py
ax/storage/json_store/decoder.py
ax/storage/json_store/decoders.py
ax/storage/json_store/encoder.py
ax/storage/json_store/encoders.py
ax/storage/json_store/load.py
ax/storage/json_store/registry.py
ax/storage/json_store/save.py
ax/storage/json_store/tests/__init__.py
ax/storage/json_store/tests/test_json_store.py
ax/storage/sqa_store/__init__.py
ax/storage/sqa_store/db.py
ax/storage/sqa_store/decoder.py
ax/storage/sqa_store/encoder.py
ax/storage/sqa_store/json.py
ax/storage/sqa_store/load.py
ax/storage/sqa_store/save.py
ax/storage/sqa_store/sqa_classes.py
ax/storage/sqa_store/sqa_config.py
ax/storage/sqa_store/sqa_enum.py
ax/storage/sqa_store/structs.py
ax/storage/sqa_store/timestamp.py
ax/storage/sqa_store/utils.py
ax/storage/sqa_store/validation.py
ax/storage/sqa_store/tests/__init__.py
ax/storage/sqa_store/tests/test_sqa_store.py
ax/storage/sqa_store/tests/utils.py
ax/utils/__init__.py
ax/utils/common/__init__.py
ax/utils/common/base.py
ax/utils/common/constants.py
ax/utils/common/docutils.py
ax/utils/common/equality.py
ax/utils/common/executils.py
ax/utils/common/kwargs.py
ax/utils/common/logger.py
ax/utils/common/serialization.py
ax/utils/common/testutils.py
ax/utils/common/timeutils.py
ax/utils/common/typeutils.py
ax/utils/common/tests/__init__.py
ax/utils/common/tests/test_docutils.py
ax/utils/common/tests/test_equality.py
ax/utils/common/tests/test_executils.py
ax/utils/common/tests/test_kwargutils.py
ax/utils/common/tests/test_logger.py
ax/utils/common/tests/test_serialization.py
ax/utils/common/tests/test_testutils.py
ax/utils/common/tests/test_typeutils.py
ax/utils/flake8_plugins/__init__.py
ax/utils/flake8_plugins/docstring_checker.py
ax/utils/measurement/__init__.py
ax/utils/measurement/synthetic_functions.py
ax/utils/measurement/tests/__init__.py
ax/utils/measurement/tests/test_synthetic_functions.py
ax/utils/notebook/__init__.py
ax/utils/notebook/plotting.py
ax/utils/report/__init__.py
ax/utils/report/render.py
ax/utils/report/resources/__init__.py
ax/utils/report/resources/base_template.html
ax/utils/report/resources/report.css
ax/utils/report/resources/simple_template.html
ax/utils/report/resources/sufficient_statistic.html
ax/utils/report/tests/__init__.py
ax/utils/report/tests/test_render.py
ax/utils/stats/__init__.py
ax/utils/stats/statstools.py
ax/utils/stats/tests/__init__.py
ax/utils/stats/tests/test_statstools.py
ax/utils/testing/__init__.py
ax/utils/testing/benchmark_stubs.py
ax/utils/testing/core_stubs.py
ax/utils/testing/doctest.py
ax/utils/testing/fully_annotated.py
ax/utils/testing/manifest.py
ax/utils/testing/modeling_stubs.py
ax/utils/testing/pyre_strict.py
ax/utils/testing/test_init_files.py
ax/utils/testing/torch_stubs.py
ax/utils/testing/unittest_conventions.py
ax/utils/tutorials/__init__.py
ax/utils/tutorials/cnn_utils.py
ax_platform.egg-info/PKG-INFO
ax_platform.egg-info/SOURCES.txt
ax_platform.egg-info/dependency_links.txt
ax_platform.egg-info/requires.txt
ax_platform.egg-info/top_level.txt
docs/algo-overview.md
docs/api.md
docs/banditopt.md
docs/bayesopt.md
docs/core.md
docs/data.md
docs/glossary.md
docs/installation.md
docs/models.md
docs/storage.md
docs/trial-evaluation.md
docs/why-ax.md
docs/assets/bandit_allocation.png
docs/assets/bo_1d_opt.gif
docs/assets/contour.js
docs/assets/cv.js
docs/assets/example_shrinkage.png
docs/assets/fitted.js
docs/assets/gp_opt.png
docs/assets/gp_posterior.png
docs/assets/mab_animate.gif
docs/assets/mab_probs.png
docs/assets/mab_regret.png
docs/assets/slice.js
scripts/build_ax.sh
scripts/docker_install.sh
scripts/import_ax.py
scripts/insert_api_refs.py
scripts/make_docs.sh
scripts/make_tutorials.py
scripts/parse_sphinx.py
scripts/patch_site_config.py
scripts/publish_site.sh
scripts/update_versions_html.py
scripts/validate_sphinx.py
scripts/versions.js
scripts/wheels_build.ps1
sphinx/Makefile
sphinx/make.bat
sphinx/source/ax.rst
sphinx/source/benchmark.rst
sphinx/source/conf.py
sphinx/source/core.rst
sphinx/source/exceptions.rst
sphinx/source/index.rst
sphinx/source/metrics.rst
sphinx/source/modelbridge.rst
sphinx/source/models.rst
sphinx/source/plot.rst
sphinx/source/runners.rst
sphinx/source/service.rst
sphinx/source/storage.rst
sphinx/source/utils.rst
tutorials/Setup_and_Usage_of_BoTorch_Models_in_Ax.ipynb
tutorials/botorch_modular.ipynb
tutorials/building_blocks.ipynb
tutorials/factorial.ipynb
tutorials/gpei_hartmann_developer.ipynb
tutorials/gpei_hartmann_loop.ipynb
tutorials/gpei_hartmann_service.ipynb
tutorials/gpei_svm.ipynb
tutorials/gpei_synthetic.ipynb
tutorials/multi_task.ipynb
tutorials/multiobjective_optimization.ipynb
tutorials/raytune_pytorch_cnn.ipynb
tutorials/tune_cnn.ipynb
tutorials/visualizations.ipynb
tutorials/human_in_the_loop/hitl_data.json
tutorials/human_in_the_loop/hitl_exp.json
tutorials/human_in_the_loop/human_in_the_loop.ipynb
website/package.json
website/sidebars.json
website/siteConfig.js
website/tutorials.json
website/core/Footer.js
website/core/Tutorial.js
website/core/TutorialSidebar.js
website/pages/en/index.js
website/pages/tutorials/index.js
website/static/.nojekyll
website/static/CNAME
website/static/css/base_sphinx.css
website/static/css/custom.css
website/static/css/custom_sphinx.css
website/static/css/pygments.css
website/static/img/ax.svg
website/static/img/ax_lockup.svg
website/static/img/ax_lockup_white.svg
website/static/img/ax_logo_lockup.svg
website/static/img/ax_wireframe.svg
website/static/img/database-solid.svg
website/static/img/dice-solid.svg
website/static/img/favicon.png
website/static/img/oss_logo.png
website/static/img/th-large-solid.svg
website/static/img/favicon/favicon.ico
website/static/js/mathjax.js
website/static/js/plotUtils.js
website/versioned_docs/.gitkeep
website/versioned_sidebars/.gitkeep