The Ax Service API is designed to allow the user to control scheduling of trials and data computation while having an easy to use interface with Ax.
The user iteratively:
from ax.service.ax_client import AxClient, ObjectiveProperties
from ax.utils.measurement.synthetic_functions import hartmann6
from ax.utils.notebook.plotting import init_notebook_plotting, render
init_notebook_plotting()
[ERROR 11-12 05:08:27] ax.storage.sqa_store.encoder: ATTENTION: The Ax team is considering deprecating SQLAlchemy storage. If you are currently using SQLAlchemy storage, please reach out to us via GitHub Issues here: https://github.com/facebook/Ax/issues/2975
[INFO 11-12 05:08:27] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.
[INFO 11-12 05:08:27] ax.utils.notebook.plotting: Please see (https://ax.dev/tutorials/visualizations.html#Fix-for-plots-that-are-not-rendering) if visualizations are not rendering.
Create a client object to interface with Ax APIs. By default this runs locally without storage.
ax_client = AxClient()
[INFO 11-12 05:08:28] ax.service.ax_client: Starting optimization with verbose logging. To disable logging, set the `verbose_logging` argument to `False`. Note that float values in the logs are rounded to 6 decimal points.
An experiment consists of a search space (parameters and parameter constraints) and optimization configuration (objectives and outcome constraints). Note that:
parameters
, and objectives
arguments are required.parameters
have the following required keys: "name" - parameter name, "type" - parameter type ("range", "choice" or "fixed"), "bounds" for range parameters, "values" for choice parameters, and "value" for fixed parameters.parameters
can optionally include "value_type" ("int", "float", "bool" or "str"), "log_scale" flag for range parameters, and "is_ordered" flag for choice parameters.parameter_constraints
should be a list of strings of form "p1 >= p2" or "p1 + p2 <= some_bound".outcome_constraints
should be a list of strings of form "constrained_metric <= some_bound".ax_client.create_experiment(
name="hartmann_test_experiment",
parameters=[
{
"name": "x1",
"type": "range",
"bounds": [0.0, 1.0],
"value_type": "float", # Optional, defaults to inference from type of "bounds".
"log_scale": False, # Optional, defaults to False.
},
{
"name": "x2",
"type": "range",
"bounds": [0.0, 1.0],
},
{
"name": "x3",
"type": "range",
"bounds": [0.0, 1.0],
},
{
"name": "x4",
"type": "range",
"bounds": [0.0, 1.0],
},
{
"name": "x5",
"type": "range",
"bounds": [0.0, 1.0],
},
{
"name": "x6",
"type": "range",
"bounds": [0.0, 1.0],
},
],
objectives={"hartmann6": ObjectiveProperties(minimize=True)},
parameter_constraints=["x1 + x2 <= 2.0"], # Optional.
outcome_constraints=["l2norm <= 1.25"], # Optional.
)
[INFO 11-12 05:08:28] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.
[INFO 11-12 05:08:28] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.
[INFO 11-12 05:08:28] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.
[INFO 11-12 05:08:28] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.
[INFO 11-12 05:08:28] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.
[INFO 11-12 05:08:28] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='x1', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x2', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x3', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x4', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x5', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x6', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[ParameterConstraint(1.0*x1 + 1.0*x2 <= 2.0)]).
[INFO 11-12 05:08:28] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.
[INFO 11-12 05:08:28] ax.modelbridge.dispatch_utils: Calculating the number of remaining initialization trials based on num_initialization_trials=None max_initialization_trials=None num_tunable_parameters=6 num_trials=None use_batch_trials=False
[INFO 11-12 05:08:28] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12
[INFO 11-12 05:08:28] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12
[INFO 11-12 05:08:28] ax.modelbridge.dispatch_utils: `verbose`, `disable_progbar`, and `jit_compile` are not yet supported when using `choose_generation_strategy` with ModularBoTorchModel, dropping these arguments.
[INFO 11-12 05:08:28] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+BoTorch', steps=[Sobol for 12 trials, BoTorch for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.
When using Ax a service, evaluation of parameterizations suggested by Ax is done either locally or, more commonly, using an external scheduler. Below is a dummy evaluation function that outputs data for two metrics "hartmann6" and "l2norm". Note that all returned metrics correspond to either the objectives
set on experiment creation or the metric names mentioned in outcome_constraints
.
import numpy as np
def evaluate(parameterization):
x = np.array([parameterization.get(f"x{i+1}") for i in range(6)])
# In our case, standard error is 0, since we are computing a synthetic function.
return {"hartmann6": (hartmann6(x), 0.0), "l2norm": (np.sqrt((x**2).sum()), 0.0)}
Result of the evaluation should generally be a mapping of the format: {metric_name -> (mean, SEM)}
. If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it.
For more details on evaluation function, refer to the "Trial Evaluation" section in the Ax docs at ax.dev
With the experiment set up, we can start the optimization loop.
At each step, the user queries the client for a new trial then submits the evaluation of that trial back to the client.
Note that Ax auto-selects an appropriate optimization algorithm based on the search space. For more advance use cases that require a specific optimization algorithm, pass a generation_strategy
argument into the AxClient
constructor. Note that when Bayesian Optimization is used, generating new trials may take a few minutes.
for i in range(25):
parameterization, trial_index = ax_client.get_next_trial()
# Local evaluation here can be replaced with deployment to external system.
ax_client.complete_trial(trial_index=trial_index, raw_data=evaluate(parameterization))
/tmp/tmp.Lx6ya87xsF/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction. [INFO 11-12 05:08:29] ax.service.ax_client: Generated new trial 0 with parameters {'x1': 0.966598, 'x2': 0.227168, 'x3': 0.047667, 'x4': 0.040679, 'x5': 0.417233, 'x6': 0.707336} using model Sobol.
[INFO 11-12 05:08:29] ax.service.ax_client: Completed trial 0 with data: {'hartmann6': (-0.216117, 0.0), 'l2norm': (1.290059, 0.0)}.
/tmp/tmp.Lx6ya87xsF/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction. [INFO 11-12 05:08:29] ax.service.ax_client: Generated new trial 1 with parameters {'x1': 0.11052, 'x2': 0.963049, 'x3': 0.722765, 'x4': 0.938986, 'x5': 0.560036, 'x6': 0.495242} using model Sobol.
[INFO 11-12 05:08:29] ax.service.ax_client: Completed trial 1 with data: {'hartmann6': (-0.014621, 0.0), 'l2norm': (1.703721, 0.0)}.
/tmp/tmp.Lx6ya87xsF/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction. [INFO 11-12 05:08:29] ax.service.ax_client: Generated new trial 2 with parameters {'x1': 0.380409, 'x2': 0.345673, 'x3': 0.30712, 'x4': 0.283193, 'x5': 0.849108, 'x6': 0.020003} using model Sobol.
[INFO 11-12 05:08:29] ax.service.ax_client: Completed trial 2 with data: {'hartmann6': (-0.135649, 0.0), 'l2norm': (1.077082, 0.0)}.
/tmp/tmp.Lx6ya87xsF/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction. [INFO 11-12 05:08:29] ax.service.ax_client: Generated new trial 3 with parameters {'x1': 0.540459, 'x2': 0.581358, 'x3': 0.983089, 'x4': 0.697142, 'x5': 0.237525, 'x6': 0.807697} using model Sobol.
[INFO 11-12 05:08:29] ax.service.ax_client: Completed trial 3 with data: {'hartmann6': (-0.397685, 0.0), 'l2norm': (1.670729, 0.0)}.
/tmp/tmp.Lx6ya87xsF/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction. [INFO 11-12 05:08:29] ax.service.ax_client: Generated new trial 4 with parameters {'x1': 0.628617, 'x2': 0.467566, 'x3': 0.559503, 'x4': 0.543839, 'x5': 0.003313, 'x6': 0.524797} using model Sobol.
[INFO 11-12 05:08:29] ax.service.ax_client: Completed trial 4 with data: {'hartmann6': (-0.148258, 0.0), 'l2norm': (1.22393, 0.0)}.
/tmp/tmp.Lx6ya87xsF/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction. [INFO 11-12 05:08:29] ax.service.ax_client: Generated new trial 5 with parameters {'x1': 0.296219, 'x2': 0.730953, 'x3': 0.226796, 'x4': 0.442165, 'x5': 0.895635, 'x6': 0.302777} using model Sobol.
[INFO 11-12 05:08:29] ax.service.ax_client: Completed trial 5 with data: {'hartmann6': (-0.644803, 0.0), 'l2norm': (1.327712, 0.0)}.
/tmp/tmp.Lx6ya87xsF/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction. [INFO 11-12 05:08:29] ax.service.ax_client: Generated new trial 6 with parameters {'x1': 0.214806, 'x2': 0.08563, 'x3': 0.803086, 'x4': 0.785884, 'x5': 0.700348, 'x6': 0.212219} using model Sobol.
[INFO 11-12 05:08:29] ax.service.ax_client: Completed trial 6 with data: {'hartmann6': (-0.019295, 0.0), 'l2norm': (1.36072, 0.0)}.
/tmp/tmp.Lx6ya87xsF/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction. [INFO 11-12 05:08:29] ax.service.ax_client: Generated new trial 7 with parameters {'x1': 0.866279, 'x2': 0.848725, 'x3': 0.471249, 'x4': 0.199814, 'x5': 0.339244, 'x6': 0.990476} using model Sobol.
[INFO 11-12 05:08:29] ax.service.ax_client: Completed trial 7 with data: {'hartmann6': (-0.073347, 0.0), 'l2norm': (1.681935, 0.0)}.
/tmp/tmp.Lx6ya87xsF/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction. [INFO 11-12 05:08:29] ax.service.ax_client: Generated new trial 8 with parameters {'x1': 0.807007, 'x2': 0.251344, 'x3': 0.845208, 'x4': 0.411128, 'x5': 0.61025, 'x6': 0.819856} using model Sobol.
[INFO 11-12 05:08:29] ax.service.ax_client: Completed trial 8 with data: {'hartmann6': (-0.176625, 0.0), 'l2norm': (1.625548, 0.0)}.
/tmp/tmp.Lx6ya87xsF/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction. [INFO 11-12 05:08:29] ax.service.ax_client: Generated new trial 9 with parameters {'x1': 0.147003, 'x2': 0.550626, 'x3': 0.427418, 'x4': 0.575058, 'x5': 0.475222, 'x6': 0.102444} using model Sobol.
[INFO 11-12 05:08:29] ax.service.ax_client: Completed trial 9 with data: {'hartmann6': (-0.449, 0.0), 'l2norm': (1.036585, 0.0)}.
/tmp/tmp.Lx6ya87xsF/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction. [INFO 11-12 05:08:29] ax.service.ax_client: Generated new trial 10 with parameters {'x1': 0.345833, 'x2': 0.132837, 'x3': 0.605272, 'x4': 0.168595, 'x5': 0.18618, 'x6': 0.382554} using model Sobol.
[INFO 11-12 05:08:29] ax.service.ax_client: Completed trial 10 with data: {'hartmann6': (-1.132304, 0.0), 'l2norm': (0.844414, 0.0)}.
/tmp/tmp.Lx6ya87xsF/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction. [INFO 11-12 05:08:29] ax.service.ax_client: Generated new trial 11 with parameters {'x1': 0.701927, 'x2': 0.932319, 'x3': 0.186643, 'x4': 0.816921, 'x5': 0.789929, 'x6': 0.664869} using model Sobol.
[INFO 11-12 05:08:29] ax.service.ax_client: Completed trial 11 with data: {'hartmann6': (-0.001734, 0.0), 'l2norm': (1.769224, 0.0)}.
[INFO 11-12 05:08:35] ax.service.ax_client: Generated new trial 12 with parameters {'x1': 0.148765, 'x2': 0.310603, 'x3': 0.517467, 'x4': 0.170266, 'x5': 0.295411, 'x6': 0.362904} using model BoTorch.
[INFO 11-12 05:08:35] ax.service.ax_client: Completed trial 12 with data: {'hartmann6': (-1.41332, 0.0), 'l2norm': (0.796451, 0.0)}.
[INFO 11-12 05:08:41] ax.service.ax_client: Generated new trial 13 with parameters {'x1': 0.105156, 'x2': 0.467976, 'x3': 0.483742, 'x4': 0.102542, 'x5': 0.101955, 'x6': 0.476395} using model BoTorch.
[INFO 11-12 05:08:41] ax.service.ax_client: Completed trial 13 with data: {'hartmann6': (-0.762788, 0.0), 'l2norm': (0.843758, 0.0)}.
[INFO 11-12 05:08:47] ax.service.ax_client: Generated new trial 14 with parameters {'x1': 0.037811, 'x2': 0.402872, 'x3': 0.438712, 'x4': 0.151123, 'x5': 0.397192, 'x6': 0.31787} using model BoTorch.
[INFO 11-12 05:08:47] ax.service.ax_client: Completed trial 14 with data: {'hartmann6': (-0.806496, 0.0), 'l2norm': (0.798652, 0.0)}.
[INFO 11-12 05:08:56] ax.service.ax_client: Generated new trial 15 with parameters {'x1': 0.196746, 'x2': 0.094389, 'x3': 0.512197, 'x4': 0.146784, 'x5': 0.265728, 'x6': 0.221122} using model BoTorch.
[INFO 11-12 05:08:56] ax.service.ax_client: Completed trial 15 with data: {'hartmann6': (-0.637881, 0.0), 'l2norm': (0.671577, 0.0)}.
[INFO 11-12 05:09:03] ax.service.ax_client: Generated new trial 16 with parameters {'x1': 0.105823, 'x2': 0.325628, 'x3': 0.545422, 'x4': 0.161144, 'x5': 0.266308, 'x6': 0.40183} using model BoTorch.
[INFO 11-12 05:09:03] ax.service.ax_client: Completed trial 16 with data: {'hartmann6': (-1.519538, 0.0), 'l2norm': (0.82041, 0.0)}.
[INFO 11-12 05:09:10] ax.service.ax_client: Generated new trial 17 with parameters {'x1': 0.445058, 'x2': 0.459363, 'x3': 0.683631, 'x4': 0.135817, 'x5': 0.269162, 'x6': 0.417342} using model BoTorch.
[INFO 11-12 05:09:10] ax.service.ax_client: Completed trial 17 with data: {'hartmann6': (-0.850056, 0.0), 'l2norm': (1.068415, 0.0)}.
[INFO 11-12 05:09:17] ax.service.ax_client: Generated new trial 18 with parameters {'x1': 0.017165, 'x2': 0.026301, 'x3': 0.535719, 'x4': 0.129017, 'x5': 0.293897, 'x6': 0.430186} using model BoTorch.
[INFO 11-12 05:09:17] ax.service.ax_client: Completed trial 18 with data: {'hartmann6': (-1.559226, 0.0), 'l2norm': (0.758987, 0.0)}.
[INFO 11-12 05:09:27] ax.service.ax_client: Generated new trial 19 with parameters {'x1': 0.0, 'x2': 0.0, 'x3': 0.531807, 'x4': 0.476525, 'x5': 0.293762, 'x6': 0.426773} using model BoTorch.
[INFO 11-12 05:09:27] ax.service.ax_client: Completed trial 19 with data: {'hartmann6': (-1.174136, 0.0), 'l2norm': (0.882228, 0.0)}.
[INFO 11-12 05:09:35] ax.service.ax_client: Generated new trial 20 with parameters {'x1': 0.0, 'x2': 0.569154, 'x3': 0.028288, 'x4': 0.078705, 'x5': 1.0, 'x6': 0.317019} using model BoTorch.
[INFO 11-12 05:09:35] ax.service.ax_client: Completed trial 20 with data: {'hartmann6': (-0.004731, 0.0), 'l2norm': (1.196425, 0.0)}.
[INFO 11-12 05:09:46] ax.service.ax_client: Generated new trial 21 with parameters {'x1': 0.255612, 'x2': 0.683616, 'x3': 0.542852, 'x4': 0.0338, 'x5': 0.333262, 'x6': 0.436609} using model BoTorch.
[INFO 11-12 05:09:46] ax.service.ax_client: Completed trial 21 with data: {'hartmann6': (-0.568764, 0.0), 'l2norm': (1.063104, 0.0)}.
[INFO 11-12 05:09:57] ax.service.ax_client: Generated new trial 22 with parameters {'x1': 0.018924, 'x2': 0.163432, 'x3': 0.518488, 'x4': 0.127143, 'x5': 0.265422, 'x6': 0.413268} using model BoTorch.
[INFO 11-12 05:09:57] ax.service.ax_client: Completed trial 22 with data: {'hartmann6': (-1.500416, 0.0), 'l2norm': (0.743843, 0.0)}.
[INFO 11-12 05:10:05] ax.service.ax_client: Generated new trial 23 with parameters {'x1': 0.048942, 'x2': 0.0, 'x3': 0.552886, 'x4': 0.251676, 'x5': 0.282308, 'x6': 0.430264} using model BoTorch.
[INFO 11-12 05:10:05] ax.service.ax_client: Completed trial 23 with data: {'hartmann6': (-1.823388, 0.0), 'l2norm': (0.797649, 0.0)}.
[INFO 11-12 05:10:11] ax.service.ax_client: Generated new trial 24 with parameters {'x1': 0.0, 'x2': 0.0, 'x3': 0.85044, 'x4': 0.255022, 'x5': 0.281845, 'x6': 0.411805} using model BoTorch.
[INFO 11-12 05:10:11] ax.service.ax_client: Completed trial 24 with data: {'hartmann6': (-0.97853, 0.0), 'l2norm': (1.018481, 0.0)}.
By default, Ax restricts number of trials that can run in parallel for some optimization stages, in order to improve the optimization performance and reduce the number of trials that the optimization will require. To check the maximum parallelism for each optimization stage:
ax_client.get_max_parallelism()
[(12, 12), (-1, 3)]
The output of this function is a list of tuples of form (number of trials, max parallelism), so the example above means "the max parallelism is 12 for the first 12 trials and 3 for all subsequent trials." This is because the first 12 trials are produced quasi-randomly and can all be evaluated at once, and subsequent trials are produced via Bayesian optimization, which converges on optimal point in fewer trials when parallelism is limited. MaxParallelismReachedException
indicates that the parallelism limit has been reached –– refer to the 'Service API Exceptions Meaning and Handling' section at the end of the tutorial for handling.
ax_client.generation_strategy.trials_as_df
[INFO 11-12 05:10:12] ax.modelbridge.generation_strategy: Note that parameter values in dataframe are rounded to 2 decimal points; the values in the dataframe are thus not the exact ones suggested by Ax in trials.
Generation Step | Generation Model(s) | Trial Index | Trial Status | Arm Parameterizations | |
---|---|---|---|---|---|
0 | [GenerationStep_0] | [Sobol] | 0 | COMPLETED | {'0_0': {'x1': 0.97, 'x2': 0.23, 'x3': 0.05, '... |
1 | [GenerationStep_0] | [Sobol] | 1 | COMPLETED | {'1_0': {'x1': 0.11, 'x2': 0.96, 'x3': 0.72, '... |
2 | [GenerationStep_0] | [Sobol] | 2 | COMPLETED | {'2_0': {'x1': 0.38, 'x2': 0.35, 'x3': 0.31, '... |
3 | [GenerationStep_0] | [Sobol] | 3 | COMPLETED | {'3_0': {'x1': 0.54, 'x2': 0.58, 'x3': 0.98, '... |
4 | [GenerationStep_0] | [Sobol] | 4 | COMPLETED | {'4_0': {'x1': 0.63, 'x2': 0.47, 'x3': 0.56, '... |
5 | [GenerationStep_0] | [Sobol] | 5 | COMPLETED | {'5_0': {'x1': 0.3, 'x2': 0.73, 'x3': 0.23, 'x... |
6 | [GenerationStep_0] | [Sobol] | 6 | COMPLETED | {'6_0': {'x1': 0.21, 'x2': 0.09, 'x3': 0.8, 'x... |
7 | [GenerationStep_0] | [Sobol] | 7 | COMPLETED | {'7_0': {'x1': 0.87, 'x2': 0.85, 'x3': 0.47, '... |
8 | [GenerationStep_0] | [Sobol] | 8 | COMPLETED | {'8_0': {'x1': 0.81, 'x2': 0.25, 'x3': 0.85, '... |
9 | [GenerationStep_0] | [Sobol] | 9 | COMPLETED | {'9_0': {'x1': 0.15, 'x2': 0.55, 'x3': 0.43, '... |
10 | [GenerationStep_0] | [Sobol] | 10 | COMPLETED | {'10_0': {'x1': 0.35, 'x2': 0.13, 'x3': 0.61, ... |
11 | [GenerationStep_0] | [Sobol] | 11 | COMPLETED | {'11_0': {'x1': 0.7, 'x2': 0.93, 'x3': 0.19, '... |
12 | [GenerationStep_1] | [BoTorch] | 12 | COMPLETED | {'12_0': {'x1': 0.15, 'x2': 0.31, 'x3': 0.52, ... |
13 | [GenerationStep_1] | [BoTorch] | 13 | COMPLETED | {'13_0': {'x1': 0.11, 'x2': 0.47, 'x3': 0.48, ... |
14 | [GenerationStep_1] | [BoTorch] | 14 | COMPLETED | {'14_0': {'x1': 0.04, 'x2': 0.4, 'x3': 0.44, '... |
15 | [GenerationStep_1] | [BoTorch] | 15 | COMPLETED | {'15_0': {'x1': 0.2, 'x2': 0.09, 'x3': 0.51, '... |
16 | [GenerationStep_1] | [BoTorch] | 16 | COMPLETED | {'16_0': {'x1': 0.11, 'x2': 0.33, 'x3': 0.55, ... |
17 | [GenerationStep_1] | [BoTorch] | 17 | COMPLETED | {'17_0': {'x1': 0.45, 'x2': 0.46, 'x3': 0.68, ... |
18 | [GenerationStep_1] | [BoTorch] | 18 | COMPLETED | {'18_0': {'x1': 0.02, 'x2': 0.03, 'x3': 0.54, ... |
19 | [GenerationStep_1] | [BoTorch] | 19 | COMPLETED | {'19_0': {'x1': 0.0, 'x2': 0.0, 'x3': 0.53, 'x... |
20 | [GenerationStep_1] | [BoTorch] | 20 | COMPLETED | {'20_0': {'x1': 0.0, 'x2': 0.57, 'x3': 0.03, '... |
21 | [GenerationStep_1] | [BoTorch] | 21 | COMPLETED | {'21_0': {'x1': 0.26, 'x2': 0.68, 'x3': 0.54, ... |
22 | [GenerationStep_1] | [BoTorch] | 22 | COMPLETED | {'22_0': {'x1': 0.02, 'x2': 0.16, 'x3': 0.52, ... |
23 | [GenerationStep_1] | [BoTorch] | 23 | COMPLETED | {'23_0': {'x1': 0.05, 'x2': 0.0, 'x3': 0.55, '... |
24 | [GenerationStep_1] | [BoTorch] | 24 | COMPLETED | {'24_0': {'x1': 0.0, 'x2': 0.0, 'x3': 0.85, 'x... |
Once it's complete, we can access the best parameters found, as well as the corresponding metric values.
best_parameters, values = ax_client.get_best_parameters()
best_parameters
{'x1': 0.048942193732801495, 'x2': 0.0, 'x3': 0.5528859213636881, 'x4': 0.25167649491564226, 'x5': 0.28230803334679816, 'x6': 0.4302635344107974}
means, covariances = values
means
{'hartmann6': -1.823388064063059, 'l2norm': 0.7976727476739881}
For comparison, Hartmann6 minimum:
hartmann6.fmin
-3.32237
Here we arbitrarily select "x1" and "x2" as the two parameters to plot for both metrics, "hartmann6" and "l2norm".
render(ax_client.get_contour_plot())
[INFO 11-12 05:10:13] ax.service.ax_client: Retrieving contour plot with parameter 'x1' on X-axis and 'x2' on Y-axis, for metric 'hartmann6'. Remaining parameters are affixed to the middle of their range.
We can also retrieve a contour plot for the other metric, "l2norm" –– say, we are interested in seeing the response surface for parameters "x3" and "x4" for this one.
render(ax_client.get_contour_plot(param_x="x3", param_y="x4", metric_name="l2norm"))
[INFO 11-12 05:10:14] ax.service.ax_client: Retrieving contour plot with parameter 'x3' on X-axis and 'x4' on Y-axis, for metric 'l2norm'. Remaining parameters are affixed to the middle of their range.
Here we plot the optimization trace, showing the progression of finding the point with the optimal objective:
render(
ax_client.get_optimization_trace(objective_optimum=hartmann6.fmin)
) # Objective_optimum is optional.
We can serialize the state of optimization to JSON and save it to a .json
file or save it to the SQL backend. For the former:
ax_client.save_to_json_file() # For custom filepath, pass `filepath` argument.
[INFO 11-12 05:10:15] ax.service.ax_client: Saved JSON-serialized state of optimization to `ax_client_snapshot.json`.
restored_ax_client = (
AxClient.load_from_json_file()
) # For custom filepath, pass `filepath` argument.
[INFO 11-12 05:10:15] ax.service.ax_client: Starting optimization with verbose logging. To disable logging, set the `verbose_logging` argument to `False`. Note that float values in the logs are rounded to 6 decimal points.
To store state of optimization to an SQL backend, first follow setup instructions on Ax website.
Having set up the SQL backend, pass DBSettings
to AxClient
on instantiation (note that SQLAlchemy
dependency will have to be installed – for installation, refer to optional dependencies on Ax website):
from ax.storage.sqa_store.structs import DBSettings
# URL is of the form "dialect+driver://username:password@host:port/database".
db_settings = DBSettings(url="sqlite:///foo.db")
# Instead of URL, can provide a `creator function`; can specify custom encoders/decoders if necessary.
new_ax = AxClient(db_settings=db_settings)
[INFO 11-12 05:10:16] ax.service.ax_client: Starting optimization with verbose logging. To disable logging, set the `verbose_logging` argument to `False`. Note that float values in the logs are rounded to 6 decimal points.
When valid DBSettings
are passed into AxClient
, a unique experiment name is a required argument (name
) to ax_client.create_experiment
. The state of the optimization is auto-saved any time it changes (i.e. a new trial is added or completed, etc).
To reload an optimization state later, instantiate AxClient
with the same DBSettings
and use ax_client.load_experiment_from_database(experiment_name="my_experiment")
.
Evaluation failure: should any optimization iterations fail during evaluation, log_trial_failure
will ensure that the same trial is not proposed again.
_, trial_index = ax_client.get_next_trial()
ax_client.log_trial_failure(trial_index=trial_index)
[INFO 11-12 05:10:23] ax.service.ax_client: Generated new trial 25 with parameters {'x1': 0.0, 'x2': 0.0, 'x3': 0.478343, 'x4': 0.254041, 'x5': 0.290382, 'x6': 0.460722} using model BoTorch.
[INFO 11-12 05:10:23] ax.service.ax_client: Registered failure of trial 25.
Adding custom trials: should there be need to evaluate a specific parameterization, attach_trial
will add it to the experiment.
ax_client.attach_trial(
parameters={"x1": 0.9, "x2": 0.9, "x3": 0.9, "x4": 0.9, "x5": 0.9, "x6": 0.9}
)
[INFO 11-12 05:10:23] ax.core.experiment: Attached custom parameterizations [{'x1': 0.9, 'x2': 0.9, 'x3': 0.9, 'x4': 0.9, 'x5': 0.9, 'x6': 0.9}] as trial 26.
({'x1': 0.9, 'x2': 0.9, 'x3': 0.9, 'x4': 0.9, 'x5': 0.9, 'x6': 0.9}, 26)
Need to run many trials in parallel: for optimal results and optimization efficiency, we strongly recommend sequential optimization (generating a few trials, then waiting for them to be completed with evaluation data). However, if your use case needs to dispatch many trials in parallel before they are updated with data and you are running into the "All trials for current model have been generated, but not enough data has been observed to fit next model" error, instantiate AxClient
as AxClient(enforce_sequential_optimization=False)
.
Nonlinear parameter constraints and/or constraints on non-Range parameters: Ax parameter constraints can currently only support linear inequalities (discussion). Users may be able to simulate this functionality, however, by substituting the following evaluate
function for that defined in section 3 above.
def evaluate(parameterization):
x = np.array([parameterization.get(f"x{i+1}") for i in range(6)])
# First calculate the nonlinear quantity to be constrained.
l2norm = np.sqrt((x**2).sum())
# Then define a constraint consistent with an outcome constraint on this experiment.
if l2norm > 1.25:
return {"l2norm": (l2norm, 0.0)}
return {"hartmann6": (hartmann6(x), 0.0), "l2norm": (l2norm, 0.0)}
For this to work, the constraint quantity (l2norm
in this case) should have a corresponding outcome constraint on the experiment. See the outcome_constraint arg to ax_client.create_experiment in section 2 above for how to specify outcome constraints.
This setup accomplishes the following:
DataRequiredError
: Ax generation strategy needs to be updated with more data to proceed to the next optimization model. When the optimization moves from initialization stage to the Bayesian optimization stage, the underlying BayesOpt model needs sufficient data to train. For optimal results and optimization efficiency (finding the optimal point in the least number of trials), we recommend sequential optimization (generating a few trials, then waiting for them to be completed with evaluation data). Therefore, the correct way to handle this exception is to wait until more trial evaluations complete and log their data via ax_client.complete_trial(...)
.
However, if there is strong need to generate more trials before more data is available, instantiate AxClient
as AxClient(enforce_sequential_optimization=False)
. With this setting, as many trials will be generated from the initialization stage as requested, and the optimization will move to the BayesOpt stage whenever enough trials are completed.
MaxParallelismReachedException
: generation strategy restricts the number of trials that can be ran simultaneously (to encourage sequential optimization), and the parallelism limit has been reached. The correct way to handle this exception is the same as DataRequiredError
– to wait until more trial evluations complete and log their data via ax_client.complete_trial(...)
.
In some cases higher parallelism is important, so enforce_sequential_optimization=False
kwarg to AxClient allows to suppress limiting of parallelism. It's also possible to override the default parallelism setting for all stages of the optimization by passing choose_generation_strategy_kwargs
to ax_client.create_experiment
:
ax_client = AxClient()
ax_client.create_experiment(
parameters=[
{"name": "x", "type": "range", "bounds": [-5.0, 10.0]},
{"name": "y", "type": "range", "bounds": [0.0, 15.0]},
],
# Sets max parallelism to 10 for all steps of the generation strategy.
choose_generation_strategy_kwargs={"max_parallelism_override": 10},
)
[INFO 11-12 05:10:25] ax.service.ax_client: Starting optimization with verbose logging. To disable logging, set the `verbose_logging` argument to `False`. Note that float values in the logs are rounded to 6 decimal points.
[INFO 11-12 05:10:25] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.
[INFO 11-12 05:10:25] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter y. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.
[INFO 11-12 05:10:25] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='x', parameter_type=FLOAT, range=[-5.0, 10.0]), RangeParameter(name='y', parameter_type=FLOAT, range=[0.0, 15.0])], parameter_constraints=[]).
[INFO 11-12 05:10:25] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.
[INFO 11-12 05:10:25] ax.modelbridge.dispatch_utils: Calculating the number of remaining initialization trials based on num_initialization_trials=None max_initialization_trials=None num_tunable_parameters=2 num_trials=None use_batch_trials=False
[INFO 11-12 05:10:25] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=5
[INFO 11-12 05:10:25] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=5
[INFO 11-12 05:10:25] ax.modelbridge.dispatch_utils: `verbose`, `disable_progbar`, and `jit_compile` are not yet supported when using `choose_generation_strategy` with ModularBoTorchModel, dropping these arguments.
[INFO 11-12 05:10:25] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+BoTorch', steps=[Sobol for 5 trials, BoTorch for subsequent trials]). Iterations after 5 will take longer to generate due to model-fitting.
ax_client.get_max_parallelism() # Max parallelism is now 10 for all stages of the optimization.
[(5, 10), (-1, 10)]
Total runtime of script: 2 minutes, 2.34 seconds.