.flake8
.gitignore
.pre-commit-config.yaml
.readthedocs.yaml
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.md
pyproject.toml
pytest.ini
requirements-fmt.txt
.github/ISSUE_TEMPLATE/1_bug_report.yaml
.github/ISSUE_TEMPLATE/2_feature_request.yaml
.github/ISSUE_TEMPLATE/3_general_support.yaml
.github/ISSUE_TEMPLATE/config.yaml
.github/workflows/build-and-test.yml
.github/workflows/cron.yml
.github/workflows/cron_pinned.yml
.github/workflows/deploy.yml
.github/workflows/lint.yml
.github/workflows/publish_website.yml
.github/workflows/reusable_test.yml
.github/workflows/reusable_tutorials.yml
.github/workflows/test_website.yml
.github/workflows/tutorials.yml
ax/__init__.py
ax/py.typed
ax/version.py
ax/adapter/__init__.py
ax/adapter/adapter_utils.py
ax/adapter/base.py
ax/adapter/cross_validation.py
ax/adapter/data_utils.py
ax/adapter/discrete.py
ax/adapter/factory.py
ax/adapter/pairwise.py
ax/adapter/prediction_utils.py
ax/adapter/random.py
ax/adapter/registry.py
ax/adapter/torch.py
ax/adapter/tests/__init__.py
ax/adapter/tests/test_adapter_utils.py
ax/adapter/tests/test_base_adapter.py
ax/adapter/tests/test_cross_validation.py
ax/adapter/tests/test_data_utils.py
ax/adapter/tests/test_discrete_adapter.py
ax/adapter/tests/test_factory.py
ax/adapter/tests/test_hierarchical_search_space.py
ax/adapter/tests/test_model_fit_metrics.py
ax/adapter/tests/test_prediction_utils.py
ax/adapter/tests/test_random_adapter.py
ax/adapter/tests/test_registry.py
ax/adapter/tests/test_robust_adapter.py
ax/adapter/tests/test_torch_adapter.py
ax/adapter/tests/test_torch_moo_adapter.py
ax/adapter/tests/test_transform_utils.py
ax/adapter/tests/test_utils.py
ax/adapter/transforms/__init__.py
ax/adapter/transforms/base.py
ax/adapter/transforms/bilog_y.py
ax/adapter/transforms/cast.py
ax/adapter/transforms/choice_encode.py
ax/adapter/transforms/convert_metric_names.py
ax/adapter/transforms/deprecated_transform_mixin.py
ax/adapter/transforms/derelativize.py
ax/adapter/transforms/fill_missing_parameters.py
ax/adapter/transforms/fixed_to_tunable.py
ax/adapter/transforms/int_range_to_choice.py
ax/adapter/transforms/int_to_float.py
ax/adapter/transforms/ivw.py
ax/adapter/transforms/log.py
ax/adapter/transforms/log_y.py
ax/adapter/transforms/logit.py
ax/adapter/transforms/map_key_to_float.py
ax/adapter/transforms/merge_repeated_measurements.py
ax/adapter/transforms/metadata_to_float.py
ax/adapter/transforms/metadata_to_parameter.py
ax/adapter/transforms/metadata_to_task.py
ax/adapter/transforms/metrics_as_task.py
ax/adapter/transforms/one_hot.py
ax/adapter/transforms/power_transform_y.py
ax/adapter/transforms/relativize.py
ax/adapter/transforms/remove_fixed.py
ax/adapter/transforms/rounding.py
ax/adapter/transforms/search_space_to_choice.py
ax/adapter/transforms/standardize_y.py
ax/adapter/transforms/stratified_standardize_y.py
ax/adapter/transforms/task_encode.py
ax/adapter/transforms/time_as_feature.py
ax/adapter/transforms/transform_to_new_sq.py
ax/adapter/transforms/trial_as_task.py
ax/adapter/transforms/unit_x.py
ax/adapter/transforms/utils.py
ax/adapter/transforms/winsorize.py
ax/adapter/transforms/tests/test_base_transform.py
ax/adapter/transforms/tests/test_bilog_y.py
ax/adapter/transforms/tests/test_cast_transform.py
ax/adapter/transforms/tests/test_choice_encode_transform.py
ax/adapter/transforms/tests/test_convert_metric_names_transform.py
ax/adapter/transforms/tests/test_deprecated_transform_mixin.py
ax/adapter/transforms/tests/test_derelativize_transform.py
ax/adapter/transforms/tests/test_fill_missing_parameters.py
ax/adapter/transforms/tests/test_fixed_to_tunable.py
ax/adapter/transforms/tests/test_int_range_to_choice_transform.py
ax/adapter/transforms/tests/test_int_to_float_transform.py
ax/adapter/transforms/tests/test_ivw_transform.py
ax/adapter/transforms/tests/test_log_transform.py
ax/adapter/transforms/tests/test_log_y_transform.py
ax/adapter/transforms/tests/test_logit_transform.py
ax/adapter/transforms/tests/test_map_key_to_float_transform.py
ax/adapter/transforms/tests/test_merge_repeated_measurements_transform.py
ax/adapter/transforms/tests/test_metadata_to_float_transform.py
ax/adapter/transforms/tests/test_metadata_to_task.py
ax/adapter/transforms/tests/test_metrics_as_task_transform.py
ax/adapter/transforms/tests/test_one_hot_transform.py
ax/adapter/transforms/tests/test_power_y_transform.py
ax/adapter/transforms/tests/test_relativize_transform.py
ax/adapter/transforms/tests/test_remove_fixed_transform.py
ax/adapter/transforms/tests/test_rounding_transform.py
ax/adapter/transforms/tests/test_search_space_to_choice_transform.py
ax/adapter/transforms/tests/test_standardize_y_transform.py
ax/adapter/transforms/tests/test_stratified_standardize_y_transform.py
ax/adapter/transforms/tests/test_task_encode_transform.py
ax/adapter/transforms/tests/test_time_as_feature_transform.py
ax/adapter/transforms/tests/test_transform_to_new_sq.py
ax/adapter/transforms/tests/test_trial_as_task_transform.py
ax/adapter/transforms/tests/test_unit_x_transform.py
ax/adapter/transforms/tests/test_utils.py
ax/adapter/transforms/tests/test_winsorize_transform.py
ax/analysis/__init__.py
ax/analysis/analysis.py
ax/analysis/analysis_card.py
ax/analysis/diagnostics.py
ax/analysis/insights.py
ax/analysis/metric_summary.py
ax/analysis/overview.py
ax/analysis/results.py
ax/analysis/search_space_summary.py
ax/analysis/summary.py
ax/analysis/trials.py
ax/analysis/utils.py
ax/analysis/healthcheck/__init__.py
ax/analysis/healthcheck/can_generate_candidates.py
ax/analysis/healthcheck/constraints_feasibility.py
ax/analysis/healthcheck/healthcheck_analysis.py
ax/analysis/healthcheck/metric_fetching_errors.py
ax/analysis/healthcheck/no_effects_analysis.py
ax/analysis/healthcheck/regression_analysis.py
ax/analysis/healthcheck/regression_detection_utils.py
ax/analysis/healthcheck/search_space_analysis.py
ax/analysis/healthcheck/should_generate_candidates.py
ax/analysis/healthcheck/tests/test_can_generate_candidates.py
ax/analysis/healthcheck/tests/test_constraints_feasibility.py
ax/analysis/healthcheck/tests/test_healtheck_exception.py
ax/analysis/healthcheck/tests/test_metric_fetching_errors.py
ax/analysis/healthcheck/tests/test_no_effects_analysis.py
ax/analysis/healthcheck/tests/test_regression_analysis.py
ax/analysis/healthcheck/tests/test_regression_detection_utils.py
ax/analysis/healthcheck/tests/test_search_space_analysis.py
ax/analysis/healthcheck/tests/test_should_generate_candidates.py
ax/analysis/markdown/__init__.py
ax/analysis/markdown/markdown_analysis.py
ax/analysis/plotly/__init__.py
ax/analysis/plotly/arm_effects.py
ax/analysis/plotly/bandit_rollout.py
ax/analysis/plotly/color_constants.py
ax/analysis/plotly/cross_validation.py
ax/analysis/plotly/marginal_effects.py
ax/analysis/plotly/objective_p_feasible_frontier.py
ax/analysis/plotly/parallel_coordinates.py
ax/analysis/plotly/plotly_analysis.py
ax/analysis/plotly/progression.py
ax/analysis/plotly/scatter.py
ax/analysis/plotly/sensitivity.py
ax/analysis/plotly/top_surfaces.py
ax/analysis/plotly/utils.py
ax/analysis/plotly/surface/__init__.py
ax/analysis/plotly/surface/contour.py
ax/analysis/plotly/surface/slice.py
ax/analysis/plotly/surface/utils.py
ax/analysis/plotly/surface/tests/test_contour.py
ax/analysis/plotly/surface/tests/test_slice.py
ax/analysis/plotly/tests/__init__.py
ax/analysis/plotly/tests/test_arm_effects.py
ax/analysis/plotly/tests/test_bandit_rollout.py
ax/analysis/plotly/tests/test_cross_validation.py
ax/analysis/plotly/tests/test_marginal_effects.py
ax/analysis/plotly/tests/test_objective_p_feasible_frontier.py
ax/analysis/plotly/tests/test_parallel_coordinates.py
ax/analysis/plotly/tests/test_progression.py
ax/analysis/plotly/tests/test_scatter.py
ax/analysis/plotly/tests/test_sensitivity.py
ax/analysis/plotly/tests/test_top_surfaces.py
ax/analysis/plotly/tests/test_utils.py
ax/analysis/tests/__init__.py
ax/analysis/tests/test_analysis_card.py
ax/analysis/tests/test_metric_summary.py
ax/analysis/tests/test_overview.py
ax/analysis/tests/test_search_space_summary.py
ax/analysis/tests/test_summary.py
ax/analysis/tests/test_utils.py
ax/api/__init__.py
ax/api/client.py
ax/api/configs.py
ax/api/types.py
ax/api/protocols/__init__.py
ax/api/protocols/metric.py
ax/api/protocols/runner.py
ax/api/protocols/utils.py
ax/api/tests/test_client.py
ax/api/utils/__init__.py
ax/api/utils/generation_strategy_dispatch.py
ax/api/utils/storage.py
ax/api/utils/structs.py
ax/api/utils/instantiation/__init__.py
ax/api/utils/instantiation/from_config.py
ax/api/utils/instantiation/from_string.py
ax/api/utils/instantiation/from_struct.py
ax/api/utils/instantiation/tests/test_from_config.py
ax/api/utils/instantiation/tests/test_from_string.py
ax/api/utils/tests/test_generation_strategy_dispatch.py
ax/benchmark/__init__.py
ax/benchmark/benchmark.py
ax/benchmark/benchmark_method.py
ax/benchmark/benchmark_metric.py
ax/benchmark/benchmark_problem.py
ax/benchmark/benchmark_result.py
ax/benchmark/benchmark_runner.py
ax/benchmark/benchmark_step_runtime_function.py
ax/benchmark/benchmark_test_function.py
ax/benchmark/benchmark_trial_metadata.py
ax/benchmark/benchmark_test_functions/__init__.py
ax/benchmark/benchmark_test_functions/botorch_test.py
ax/benchmark/benchmark_test_functions/surrogate.py
ax/benchmark/benchmark_test_functions/synthetic.py
ax/benchmark/methods/__init__.py
ax/benchmark/methods/modular_botorch.py
ax/benchmark/methods/sobol.py
ax/benchmark/problems/__init__.py
ax/benchmark/problems/data.py
ax/benchmark/problems/registry.py
ax/benchmark/problems/runtime_funcs.py
ax/benchmark/problems/surrogate/__init__.py
ax/benchmark/problems/surrogate/hss/__init__.py
ax/benchmark/problems/surrogate/hss/base.py
ax/benchmark/problems/surrogate/hss/cifar10_surrogate.py
ax/benchmark/problems/surrogate/hss/fashion_mnist_surrogate.py
ax/benchmark/problems/surrogate/hss/mnist_surrogate.py
ax/benchmark/problems/surrogate/hss/checkpoints/cifar10_xgb_model_0.json
ax/benchmark/problems/surrogate/hss/checkpoints/cifar10_xgb_model_1.json
ax/benchmark/problems/surrogate/hss/checkpoints/cifar10_xgb_model_2.json
ax/benchmark/problems/surrogate/hss/checkpoints/cifar10_xgb_model_3.json
ax/benchmark/problems/surrogate/hss/checkpoints/fashion_mnist_xgb_model_0.json
ax/benchmark/problems/surrogate/hss/checkpoints/fashion_mnist_xgb_model_1.json
ax/benchmark/problems/surrogate/hss/checkpoints/fashion_mnist_xgb_model_2.json
ax/benchmark/problems/surrogate/hss/checkpoints/fashion_mnist_xgb_model_3.json
ax/benchmark/problems/surrogate/hss/checkpoints/mnist_xgb_model_0.json
ax/benchmark/problems/surrogate/hss/checkpoints/mnist_xgb_model_1.json
ax/benchmark/problems/surrogate/hss/checkpoints/mnist_xgb_model_2.json
ax/benchmark/problems/surrogate/hss/checkpoints/mnist_xgb_model_3.json
ax/benchmark/problems/surrogate/lcbench/__init__.py
ax/benchmark/problems/surrogate/lcbench/data.py
ax/benchmark/problems/surrogate/lcbench/early_stopping.py
ax/benchmark/problems/surrogate/lcbench/transfer_learning.py
ax/benchmark/problems/surrogate/lcbench/utils.py
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_APSFailure.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_Amazon_employee_access.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_Australian.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_Fashion-MNIST.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_KDDCup09_appetency.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_albert.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_car.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_christine.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_cnae-9.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_covertype.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_dionis.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_fabert.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_helena.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_higgs.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_jannis.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_jasmine.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_kr-vs-kp.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_mfeat-factors.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_nomao.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_shuttle.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_sylvine.pt
ax/benchmark/problems/surrogate/lcbench/transfer_learning_data/lcbench_volkert.pt
ax/benchmark/problems/synthetic/__init__.py
ax/benchmark/problems/synthetic/bandit.py
ax/benchmark/problems/synthetic/from_botorch.py
ax/benchmark/problems/synthetic/discretized/__init__.py
ax/benchmark/problems/synthetic/discretized/mixed_integer.py
ax/benchmark/problems/synthetic/hss/__init__.py
ax/benchmark/problems/synthetic/hss/jenatton.py
ax/benchmark/testing/__init__.py
ax/benchmark/testing/benchmark_stubs.py
ax/benchmark/tests/__init__.py
ax/benchmark/tests/test_benchmark.py
ax/benchmark/tests/test_benchmark_method.py
ax/benchmark/tests/test_benchmark_metric.py
ax/benchmark/tests/test_benchmark_problem.py
ax/benchmark/tests/test_benchmark_result.py
ax/benchmark/tests/test_benchmark_runner.py
ax/benchmark/tests/benchmark_test_functions/test_botorch_test_function.py
ax/benchmark/tests/benchmark_test_functions/test_surrogate_test_function.py
ax/benchmark/tests/methods/__init__.py
ax/benchmark/tests/methods/test_methods.py
ax/benchmark/tests/problems/__init__.py
ax/benchmark/tests/problems/test_data.py
ax/benchmark/tests/problems/test_lcbench_benchmark.py
ax/benchmark/tests/problems/test_mixed_integer_problems.py
ax/benchmark/tests/problems/test_problems.py
ax/benchmark/tests/problems/surrogate/hss/test_cifar10_surrogate.py
ax/benchmark/tests/problems/surrogate/hss/test_fashion_mnist_surrogate.py
ax/benchmark/tests/problems/surrogate/hss/test_mnist_surrogate.py
ax/benchmark/tests/problems/surrogate/lcbench/test_early_stopping.py
ax/benchmark/tests/problems/synthetic/test_bandit.py
ax/benchmark/tests/problems/synthetic/test_from_botorch.py
ax/benchmark/tests/problems/synthetic/hss/test_jenatton.py
ax/core/__init__.py
ax/core/arm.py
ax/core/auxiliary.py
ax/core/base_trial.py
ax/core/batch_trial.py
ax/core/data.py
ax/core/experiment.py
ax/core/formatting_utils.py
ax/core/generator_run.py
ax/core/map_data.py
ax/core/map_metric.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/parameter_distribution.py
ax/core/risk_measures.py
ax/core/runner.py
ax/core/search_space.py
ax/core/trial.py
ax/core/trial_status.py
ax/core/types.py
ax/core/utils.py
ax/core/tests/__init__.py
ax/core/tests/test_arm.py
ax/core/tests/test_auxiliary.py
ax/core/tests/test_batch_trial.py
ax/core/tests/test_data.py
ax/core/tests/test_experiment.py
ax/core/tests/test_formatting_utils.py
ax/core/tests/test_generator_run.py
ax/core/tests/test_map_data.py
ax/core/tests/test_map_metric.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_parameter_distribution.py
ax/core/tests/test_risk_measures.py
ax/core/tests/test_runner.py
ax/core/tests/test_search_space.py
ax/core/tests/test_trial.py
ax/core/tests/test_types.py
ax/core/tests/test_utils.py
ax/early_stopping/__init__.py
ax/early_stopping/utils.py
ax/early_stopping/strategies/__init__.py
ax/early_stopping/strategies/base.py
ax/early_stopping/strategies/logical.py
ax/early_stopping/strategies/percentile.py
ax/early_stopping/strategies/threshold.py
ax/early_stopping/tests/__init__.py
ax/early_stopping/tests/test_strategies.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/generation_strategy/__init__.py
ax/generation_strategy/best_model_selector.py
ax/generation_strategy/center_generation_node.py
ax/generation_strategy/dispatch_utils.py
ax/generation_strategy/external_generation_node.py
ax/generation_strategy/generation_node.py
ax/generation_strategy/generation_node_input_constructors.py
ax/generation_strategy/generation_strategy.py
ax/generation_strategy/generator_spec.py
ax/generation_strategy/transition_criterion.py
ax/generation_strategy/tests/test_aepsych_criterion.py
ax/generation_strategy/tests/test_best_model_selector.py
ax/generation_strategy/tests/test_center_generation_node.py
ax/generation_strategy/tests/test_dispatch_utils.py
ax/generation_strategy/tests/test_external_generation_node.py
ax/generation_strategy/tests/test_generation_node.py
ax/generation_strategy/tests/test_generation_node_input_constructors.py
ax/generation_strategy/tests/test_generation_strategy.py
ax/generation_strategy/tests/test_generator_spec.py
ax/generation_strategy/tests/test_transition_criterion.py
ax/generators/__init__.py
ax/generators/base.py
ax/generators/discrete_base.py
ax/generators/model_utils.py
ax/generators/torch_base.py
ax/generators/types.py
ax/generators/winsorization_config.py
ax/generators/discrete/__init__.py
ax/generators/discrete/ashr_utils.py
ax/generators/discrete/eb_ashr.py
ax/generators/discrete/eb_thompson.py
ax/generators/discrete/full_factorial.py
ax/generators/discrete/thompson.py
ax/generators/random/__init__.py
ax/generators/random/base.py
ax/generators/random/sobol.py
ax/generators/random/uniform.py
ax/generators/tests/__init__.py
ax/generators/tests/test_ashr_utils.py
ax/generators/tests/test_base.py
ax/generators/tests/test_botorch_defaults.py
ax/generators/tests/test_botorch_model.py
ax/generators/tests/test_botorch_moo_defaults.py
ax/generators/tests/test_botorch_moo_model.py
ax/generators/tests/test_cbo_lcea.py
ax/generators/tests/test_cbo_lcem.py
ax/generators/tests/test_cbo_sac.py
ax/generators/tests/test_discrete.py
ax/generators/tests/test_eb_ashr.py
ax/generators/tests/test_eb_thompson.py
ax/generators/tests/test_full_factorial.py
ax/generators/tests/test_model_utils.py
ax/generators/tests/test_random.py
ax/generators/tests/test_randomforest.py
ax/generators/tests/test_sobol.py
ax/generators/tests/test_thompson.py
ax/generators/tests/test_torch.py
ax/generators/tests/test_torch_model_utils.py
ax/generators/tests/test_torch_utils.py
ax/generators/tests/test_uniform.py
ax/generators/torch/__init__.py
ax/generators/torch/botorch.py
ax/generators/torch/botorch_defaults.py
ax/generators/torch/botorch_moo.py
ax/generators/torch/botorch_moo_defaults.py
ax/generators/torch/cbo_lcea.py
ax/generators/torch/cbo_lcem.py
ax/generators/torch/cbo_sac.py
ax/generators/torch/randomforest.py
ax/generators/torch/utils.py
ax/generators/torch/botorch_modular/__init__.py
ax/generators/torch/botorch_modular/acquisition.py
ax/generators/torch/botorch_modular/generator.py
ax/generators/torch/botorch_modular/kernels.py
ax/generators/torch/botorch_modular/multi_acquisition.py
ax/generators/torch/botorch_modular/optimizer_argparse.py
ax/generators/torch/botorch_modular/optimizer_defaults.py
ax/generators/torch/botorch_modular/sebo.py
ax/generators/torch/botorch_modular/surrogate.py
ax/generators/torch/botorch_modular/utils.py
ax/generators/torch/botorch_modular/input_constructors/__init__.py
ax/generators/torch/botorch_modular/input_constructors/covar_modules.py
ax/generators/torch/botorch_modular/input_constructors/input_transforms.py
ax/generators/torch/botorch_modular/input_constructors/outcome_transform.py
ax/generators/torch/tests/__init__.py
ax/generators/torch/tests/test_acquisition.py
ax/generators/torch/tests/test_covar_modules_argparse.py
ax/generators/torch/tests/test_generator.py
ax/generators/torch/tests/test_input_transform_argparse.py
ax/generators/torch/tests/test_kernels.py
ax/generators/torch/tests/test_optimizer_argparse.py
ax/generators/torch/tests/test_outcome_transform_argparse.py
ax/generators/torch/tests/test_sebo.py
ax/generators/torch/tests/test_surrogate.py
ax/generators/torch/tests/test_utils.py
ax/global_stopping/__init__.py
ax/global_stopping/strategies/__init__.py
ax/global_stopping/strategies/base.py
ax/global_stopping/strategies/improvement.py
ax/global_stopping/tests/__init__.py
ax/global_stopping/tests/test_strategies.py
ax/metrics/__init__.py
ax/metrics/branin.py
ax/metrics/branin_map.py
ax/metrics/chemistry.py
ax/metrics/chemistry_data.zip
ax/metrics/factorial.py
ax/metrics/hartmann6.py
ax/metrics/l2norm.py
ax/metrics/noisy_function.py
ax/metrics/noisy_function_map.py
ax/metrics/sklearn.py
ax/metrics/tensorboard.py
ax/metrics/torchx.py
ax/metrics/tests/__init__.py
ax/metrics/tests/test_chemistry.py
ax/metrics/tests/test_noisy_function.py
ax/metrics/tests/test_sklearn.py
ax/metrics/tests/test_tensorboard.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/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_contours.py
ax/plot/tests/test_diagnostic.py
ax/plot/tests/test_feature_importances.py
ax/plot/tests/test_fitted_scatter.py
ax/plot/tests/test_helper.py
ax/plot/tests/test_pareto_utils.py
ax/plot/tests/test_slices.py
ax/plot/tests/test_tile_fitted.py
ax/plot/tests/test_traces.py
ax/plot/tests/long_running/test_pareto_utils.py
ax/runners/__init__.py
ax/runners/simulated_backend.py
ax/runners/single_running_trial_mixin.py
ax/runners/synthetic.py
ax/runners/torchx.py
ax/runners/tests/__init__.py
ax/runners/tests/test_single_running_trial_mixin.py
ax/runners/tests/test_torchx.py
ax/service/__init__.py
ax/service/ax_client.py
ax/service/interactive_loop.py
ax/service/managed_loop.py
ax/service/orchestrator.py
ax/service/scheduler.py
ax/service/scheduler_options.py
ax/service/tests/__init__.py
ax/service/tests/orchestrator_test_utils.py
ax/service/tests/test_ax_client.py
ax/service/tests/test_best_point.py
ax/service/tests/test_best_point_utils.py
ax/service/tests/test_early_stopping.py
ax/service/tests/test_global_stopping.py
ax/service/tests/test_instantiation_utils.py
ax/service/tests/test_interactive_loop.py
ax/service/tests/test_managed_loop.py
ax/service/tests/test_orchestrator.py
ax/service/tests/test_report_utils.py
ax/service/tests/test_with_db_settings_base.py
ax/service/tests/test_with_db_settings_base_minimal_dependencies.py
ax/service/utils/__init__.py
ax/service/utils/analysis_base.py
ax/service/utils/best_point.py
ax/service/utils/best_point_mixin.py
ax/service/utils/best_point_utils.py
ax/service/utils/early_stopping.py
ax/service/utils/instantiation.py
ax/service/utils/orchestrator_options.py
ax/service/utils/report_utils.py
ax/service/utils/scheduler_options.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/registry_bundle.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/json_store/tests/test_transform_encode.py
ax/storage/sqa_store/__init__.py
ax/storage/sqa_store/db.py
ax/storage/sqa_store/decoder.py
ax/storage/sqa_store/delete.py
ax/storage/sqa_store/encoder.py
ax/storage/sqa_store/json.py
ax/storage/sqa_store/load.py
ax/storage/sqa_store/reduced_state.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/test_utils.py
ax/storage/sqa_store/tests/utils.py
ax/storage/tests/test_botorch_modular_registry.py
ax/storage/tests/test_registry_bundle.py
ax/utils/__init__.py
ax/utils/common/__init__.py
ax/utils/common/base.py
ax/utils/common/constants.py
ax/utils/common/decorator.py
ax/utils/common/docutils.py
ax/utils/common/equality.py
ax/utils/common/executils.py
ax/utils/common/func_enum.py
ax/utils/common/kwargs.py
ax/utils/common/logger.py
ax/utils/common/mock.py
ax/utils/common/random.py
ax/utils/common/result.py
ax/utils/common/serialization.py
ax/utils/common/string_utils.py
ax/utils/common/testutils.py
ax/utils/common/timeutils.py
ax/utils/common/typeutils.py
ax/utils/common/typeutils_nonnative.py
ax/utils/common/typeutils_torch.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_func_enum.py
ax/utils/common/tests/test_kwargutils.py
ax/utils/common/tests/test_logger.py
ax/utils/common/tests/test_random.py
ax/utils/common/tests/test_result.py
ax/utils/common/tests/test_serialization.py
ax/utils/common/tests/test_string_utils.py
ax/utils/common/tests/test_testutils.py
ax/utils/common/tests/test_typeutils.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/sensitivity/__init__.py
ax/utils/sensitivity/derivative_gp.py
ax/utils/sensitivity/derivative_measures.py
ax/utils/sensitivity/sobol_measures.py
ax/utils/sensitivity/tests/__init__.py
ax/utils/sensitivity/tests/test_sensitivity.py
ax/utils/stats/__init__.py
ax/utils/stats/model_fit_stats.py
ax/utils/stats/no_effects.py
ax/utils/stats/statstools.py
ax/utils/stats/tests/__init__.py
ax/utils/stats/tests/test_model_fit_stats.py
ax/utils/stats/tests/test_statstools.py
ax/utils/testing/__init__.py
ax/utils/testing/backend_simulator.py
ax/utils/testing/core_stubs.py
ax/utils/testing/manifest.py
ax/utils/testing/mock.py
ax/utils/testing/modeling_stubs.py
ax/utils/testing/preference_stubs.py
ax/utils/testing/test_init_files.py
ax/utils/testing/torch_stubs.py
ax/utils/testing/utils.py
ax/utils/testing/utils_testing_stubs.py
ax/utils/testing/tests/__init__.py
ax/utils/testing/tests/test_backend_simulator.py
ax/utils/testing/tests/test_mock.py
ax/utils/testing/tests/test_utils.py
ax/utils/tutorials/__init__.py
ax/utils/tutorials/environment.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/analyses.md
docs/experiment.mdx
docs/generation_strategy.mdx
docs/glossary.mdx
docs/installation.mdx
docs/intro-to-ae.mdx
docs/intro-to-bo.mdx
docs/orchestration.mdx
docs/why-ax.md
docs/assets/ask_tell_flowchart.png
docs/assets/ask_tell_simple.png
docs/assets/bandit_allocation.png
docs/assets/bo_1d_opt.gif
docs/assets/closed_loop_flowchart.png
docs/assets/contour.js
docs/assets/cv.js
docs/assets/discrepancy_dims.png
docs/assets/doe.png
docs/assets/ei.png
docs/assets/example_shrinkage.png
docs/assets/experiment_composition.png
docs/assets/fitted.js
docs/assets/gp_opt.png
docs/assets/gp_posterior.png
docs/assets/gpei.gif
docs/assets/line_square_cube.png
docs/assets/mab_animate.gif
docs/assets/mab_probs.png
docs/assets/mab_regret.png
docs/assets/metric_runner_flowchart.png
docs/assets/optimization_config_composition.png
docs/assets/orchestrator_loop.png
docs/assets/search_space_composition.png
docs/assets/slice.js
docs/assets/surrogate.png
docs/assets/traditional_vs_adaptive.png
docs/assets/transfer_learning_generation_strategy.png
docs/assets/trial_composition.png
docs/recipes/attach-trial.md
docs/recipes/existing-data.md
docs/recipes/experiment-to-json.md
docs/recipes/experiment-to-sqlite.md
docs/recipes/influence-gs-choice.md
docs/recipes/multi-objective-optimization.md
docs/recipes/outcome-constraints.md
docs/recipes/scalarized-objective.md
docs/recipes/tracking-metrics.md
scripts/check_pre_commit_reqs.py
scripts/convert_ipynb_to_mdx.py
scripts/import_ax.py
scripts/insert_api_refs.py
scripts/make_docs.sh
scripts/run_tutorials.py
sphinx/Makefile
sphinx/make.bat
sphinx/source/api.rst
sphinx/source/conf.py
sphinx/source/index.rst
sphinx/source/service.rst
sphinx/source/utils.rst
sphinx/source/_static/custom.css
tutorials/analyses/analyses.ipynb
tutorials/analyses/arm_effects_example.png
tutorials/analyses/contour_plot_example.png
tutorials/analyses/cross_validation_plot_example.png
tutorials/analyses/metric_summary_example.png
tutorials/analyses/parallel_coordinates_example.png
tutorials/analyses/scatter_plot_example.png
tutorials/analyses/search_space_summary_example.png
tutorials/analyses/sensitivity_analysis_example.png
tutorials/analyses/slice_plot_example.png
tutorials/analyses/summary_analysis_example.png
tutorials/automating/automating.ipynb
tutorials/automating/scheduler_state_machine.png
tutorials/early_stopping/early_stopping.ipynb
tutorials/getting_started/getting_started.ipynb
tutorials/materials_science/materials_science.ipynb
tutorials/modular_botorch/modular_botorch.ipynb
tutorials/quickstart/quickstart.ipynb
tutorials/sklearn/sklearn.ipynb
website/README.md
website/docusaurus.config.js
website/package.json
website/sidebars.js
website/tutorials.json
website/src/components/CellOutput.jsx
website/src/components/LinkButtons.jsx
website/src/components/Plotting.jsx
website/src/css/bokeh.css
website/src/css/customTheme.css
website/src/pages/index.js
website/static/.nojekyll
website/static/CNAME
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/meta_opensource_logo_negative.svg
website/static/img/oss_logo.png
website/static/img/th-large-solid.svg
website/static/img/favicon/favicon.ico
website/static/js/plotUtils.js