Ax integrates easily with different scheduling frameworks and distributed training frameworks. In this example, Ax-driven optimization is executed in a distributed fashion using RayTune.
RayTune is a scalable framework for hyperparameter tuning that provides many state-of-the-art hyperparameter tuning algorithms and seamlessly scales from laptop to distributed cluster with fault tolerance. RayTune leverages Ray's Actor API to provide asynchronous parallel and distributed execution.
Ray 'Actors' are a simple and clean abstraction for replicating your Python classes across multiple workers and nodes. Each hyperparameter evaluation is asynchronously executed on a separate Ray actor and reports intermediate training progress back to RayTune. Upon reporting, RayTune then uses this information to performs actions such as early termination, re-prioritization, or checkpointing.
import logging
from ray import tune
from ray.tune import report
from ray.tune.suggest.ax import AxSearch
logger = logging.getLogger(tune.__name__)
logger.setLevel(
level=logging.CRITICAL
) # Reduce the number of Ray warnings that are not relevant here.
/tmp/ipykernel_3000/1865771151.py:5: DeprecationWarning: The module `ray.tune.suggest` has been moved to `ray.tune.search` and the old location will be deprecated soon. Please adjust your imports to point to the new location. Example: Do a global search and replace `ray.tune.suggest` with `ray.tune.search`. from ray.tune.suggest.ax import AxSearch /tmp/ipykernel_3000/1865771151.py:5: DeprecationWarning: The module `ray.tune.suggest.ax` has been moved to `ray.tune.search.ax` and the old location will be deprecated soon. Please adjust your imports to point to the new location. Example: Do a global search and replace `ray.tune.suggest.ax` with `ray.tune.search.ax`. from ray.tune.suggest.ax import AxSearch
import numpy as np
import torch
from ax.plot.contour import plot_contour
from ax.plot.trace import optimization_trace_single_method
from ax.service.ax_client import AxClient
from ax.utils.notebook.plotting import init_notebook_plotting, render
from ax.utils.tutorials.cnn_utils import CNN, evaluate, load_mnist, train
init_notebook_plotting()
[INFO 09-28 16:26:50] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.
We specify enforce_sequential_optimization
as False, because Ray runs many trials in parallel. With the sequential optimization enforcement, AxClient
would expect the first few trials to be completed with data before generating more trials.
When high parallelism is not required, it is best to enforce sequential optimization, as it allows for achieving optimal results in fewer (but sequential) trials. In cases where parallelism is important, such as with distributed training using Ray, we choose to forego minimizing resource utilization and run more trials in parallel.
ax = AxClient(enforce_sequential_optimization=False)
[INFO 09-28 16:26:50] 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.
Here we set up the search space and specify the objective; refer to the Ax API tutorials for more detail.
MINIMIZE = False # Whether we should be minimizing or maximizing the objective
ax.create_experiment(
name="mnist_experiment",
parameters=[
{"name": "lr", "type": "range", "bounds": [1e-6, 0.4], "log_scale": True},
{"name": "momentum", "type": "range", "bounds": [0.0, 1.0]},
],
objective_name="mean_accuracy",
minimize=MINIMIZE,
)
[INFO 09-28 16:26:50] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter lr. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict. [INFO 09-28 16:26:50] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter momentum. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict. [INFO 09-28 16:26:50] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='lr', parameter_type=FLOAT, range=[1e-06, 0.4], log_scale=True), RangeParameter(name='momentum', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[]). [INFO 09-28 16:26:50] ax.modelbridge.dispatch_utils: Using Bayesian optimization since there are more ordered parameters than there are categories for the unordered categorical parameters. [INFO 09-28 16:26:50] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 5 trials, GPEI for subsequent trials]). Iterations after 5 will take longer to generate due to model-fitting.
ax.experiment.optimization_config.objective.minimize
False
load_mnist(data_path="~/.data") # Pre-load the dataset before the initial evaluations are executed.
Downloading http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz Downloading http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz to /home/runner/.data/MNIST/raw/train-images-idx3-ubyte.gz
0%| | 0/9912422 [00:00<?, ?it/s]
Extracting /home/runner/.data/MNIST/raw/train-images-idx3-ubyte.gz to /home/runner/.data/MNIST/raw Downloading http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz Downloading http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz to /home/runner/.data/MNIST/raw/train-labels-idx1-ubyte.gz
0%| | 0/28881 [00:00<?, ?it/s]
Extracting /home/runner/.data/MNIST/raw/train-labels-idx1-ubyte.gz to /home/runner/.data/MNIST/raw Downloading http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz Downloading http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz to /home/runner/.data/MNIST/raw/t10k-images-idx3-ubyte.gz
0%| | 0/1648877 [00:00<?, ?it/s]
Extracting /home/runner/.data/MNIST/raw/t10k-images-idx3-ubyte.gz to /home/runner/.data/MNIST/raw Downloading http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz Downloading http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz to /home/runner/.data/MNIST/raw/t10k-labels-idx1-ubyte.gz
0%| | 0/4542 [00:00<?, ?it/s]
Extracting /home/runner/.data/MNIST/raw/t10k-labels-idx1-ubyte.gz to /home/runner/.data/MNIST/raw
(<torch.utils.data.dataloader.DataLoader at 0x7f4c50928370>, <torch.utils.data.dataloader.DataLoader at 0x7f4c5094ea90>, <torch.utils.data.dataloader.DataLoader at 0x7f4c5094e6d0>)
Since we use the Ax Service API here, we evaluate the parameterizations that Ax suggests, using RayTune. The evaluation function follows its usual pattern, taking in a parameterization and outputting an objective value. For detail on evaluation functions, see Trial Evaluation.
def train_evaluate(parameterization):
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
train_loader, valid_loader, test_loader = load_mnist(data_path="~/.data")
net = train(
net=CNN(),
train_loader=train_loader,
parameters=parameterization,
dtype=torch.float,
device=device,
)
report(
mean_accuracy=evaluate(
net=net,
data_loader=valid_loader,
dtype=torch.float,
device=device,
)
)
Execute the Ax optimization and trial evaluation in RayTune using AxSearch algorithm:
# Set up AxSearcher in RayTune
algo = AxSearch(ax_client=ax)
# Wrap AxSearcher in a concurrently limiter, to ensure that Bayesian optimization receives the
# data for completed trials before creating more trials
algo = tune.suggest.ConcurrencyLimiter(algo, max_concurrent=3)
tune.run(
train_evaluate,
num_samples=30,
search_alg=algo,
verbose=0, # Set this level to 1 to see status updates and to 2 to also see trial results.
# To use GPU, specify: resources_per_trial={"gpu": 1}.
)
/home/runner/work/Ax/Ax/ax/core/observation.py:274: FutureWarning: In a future version of pandas, a length 1 tuple will be returned when iterating over a groupby with a grouper equal to a list of length 1. Don't supply a list with a single grouper to avoid this warning. [INFO 09-28 16:26:54] ax.service.ax_client: Generated new trial 0 with parameters {'lr': 0.03775, 'momentum': 0.948654}. /home/runner/work/Ax/Ax/ax/core/observation.py:274: FutureWarning: In a future version of pandas, a length 1 tuple will be returned when iterating over a groupby with a grouper equal to a list of length 1. Don't supply a list with a single grouper to avoid this warning. [INFO 09-28 16:26:54] ax.service.ax_client: Generated new trial 1 with parameters {'lr': 0.002144, 'momentum': 0.203203}. /home/runner/work/Ax/Ax/ax/core/observation.py:274: FutureWarning: In a future version of pandas, a length 1 tuple will be returned when iterating over a groupby with a grouper equal to a list of length 1. Don't supply a list with a single grouper to avoid this warning. [INFO 09-28 16:26:54] ax.service.ax_client: Generated new trial 2 with parameters {'lr': 2.1e-05, 'momentum': 0.990686}. [INFO 09-28 16:27:07] ax.service.ax_client: Completed trial 0 with data: {'mean_accuracy': (0.103833, None)}. [INFO 09-28 16:27:07] ax.service.ax_client: Generated new trial 3 with parameters {'lr': 0.035087, 'momentum': 0.656959}. [INFO 09-28 16:27:07] ax.service.ax_client: Completed trial 1 with data: {'mean_accuracy': (0.9585, None)}. [INFO 09-28 16:27:07] ax.service.ax_client: Generated new trial 4 with parameters {'lr': 0.09263, 'momentum': 0.500736}. [INFO 09-28 16:27:15] ax.service.ax_client: Completed trial 2 with data: {'mean_accuracy': (0.912167, None)}. [INFO 09-28 16:27:15] ax.service.ax_client: Generated new trial 5 with parameters {'lr': 8e-06, 'momentum': 0.362601}. [INFO 09-28 16:27:16] ax.service.ax_client: Completed trial 3 with data: {'mean_accuracy': (0.100167, None)}. [INFO 09-28 16:27:16] ax.service.ax_client: Generated new trial 6 with parameters {'lr': 0.00024, 'momentum': 0.0}. [INFO 09-28 16:27:24] ax.service.ax_client: Completed trial 4 with data: {'mean_accuracy': (0.095, None)}. [INFO 09-28 16:27:25] ax.service.ax_client: Generated new trial 7 with parameters {'lr': 1e-06, 'momentum': 1.0}. [INFO 09-28 16:27:25] ax.service.ax_client: Completed trial 5 with data: {'mean_accuracy': (0.635667, None)}. [INFO 09-28 16:27:25] ax.service.ax_client: Generated new trial 8 with parameters {'lr': 0.000256, 'momentum': 0.548199}. [INFO 09-28 16:27:33] ax.service.ax_client: Completed trial 7 with data: {'mean_accuracy': (0.8265, None)}. [INFO 09-28 16:27:34] ax.service.ax_client: Generated new trial 9 with parameters {'lr': 0.00266, 'momentum': 0.0}. [INFO 09-28 16:27:35] ax.service.ax_client: Completed trial 6 with data: {'mean_accuracy': (0.911, None)}. [INFO 09-28 16:27:35] ax.service.ax_client: Generated new trial 10 with parameters {'lr': 0.000548, 'momentum': 0.224229}. [INFO 09-28 16:27:43] ax.service.ax_client: Completed trial 8 with data: {'mean_accuracy': (0.934833, None)}. [INFO 09-28 16:27:43] ax.service.ax_client: Generated new trial 11 with parameters {'lr': 0.00019, 'momentum': 1.0}. [INFO 09-28 16:27:45] ax.service.ax_client: Completed trial 9 with data: {'mean_accuracy': (0.962, None)}. [INFO 09-28 16:27:46] ax.service.ax_client: Generated new trial 12 with parameters {'lr': 0.001011, 'momentum': 0.043503}. [INFO 09-28 16:27:53] ax.service.ax_client: Completed trial 10 with data: {'mean_accuracy': (0.945667, None)}. [INFO 09-28 16:27:54] ax.service.ax_client: Generated new trial 13 with parameters {'lr': 6.5e-05, 'momentum': 0.730003}. [INFO 09-28 16:27:54] ax.service.ax_client: Completed trial 11 with data: {'mean_accuracy': (0.530167, None)}. [INFO 09-28 16:27:56] ax.service.ax_client: Generated new trial 14 with parameters {'lr': 9e-06, 'momentum': 0.817587}. [INFO 09-28 16:28:03] ax.service.ax_client: Completed trial 12 with data: {'mean_accuracy': (0.947667, None)}. [INFO 09-28 16:28:05] ax.service.ax_client: Generated new trial 15 with parameters {'lr': 0.000156, 'momentum': 0.405578}. [INFO 09-28 16:28:05] ax.service.ax_client: Completed trial 13 with data: {'mean_accuracy': (0.907167, None)}. [INFO 09-28 16:28:06] ax.service.ax_client: Generated new trial 16 with parameters {'lr': 6e-06, 'momentum': 1.0}. [INFO 09-28 16:28:12] ax.service.ax_client: Completed trial 14 with data: {'mean_accuracy': (0.826667, None)}. [INFO 09-28 16:28:14] ax.service.ax_client: Generated new trial 17 with parameters {'lr': 8.8e-05, 'momentum': 0.477078}. [INFO 09-28 16:28:16] ax.service.ax_client: Completed trial 15 with data: {'mean_accuracy': (0.917833, None)}. [INFO 09-28 16:28:17] ax.service.ax_client: Generated new trial 18 with parameters {'lr': 0.010739, 'momentum': 0.0}. [INFO 09-28 16:28:24] ax.service.ax_client: Completed trial 16 with data: {'mean_accuracy': (0.853333, None)}. [INFO 09-28 16:28:25] ax.service.ax_client: Generated new trial 19 with parameters {'lr': 0.000779, 'momentum': 0.373893}. [INFO 09-28 16:28:26] ax.service.ax_client: Completed trial 17 with data: {'mean_accuracy': (0.877833, None)}. [INFO 09-28 16:28:28] ax.service.ax_client: Generated new trial 20 with parameters {'lr': 0.002091, 'momentum': 0.103504}. [INFO 09-28 16:28:34] ax.service.ax_client: Completed trial 18 with data: {'mean_accuracy': (0.109333, None)}. [INFO 09-28 16:28:37] ax.service.ax_client: Generated new trial 21 with parameters {'lr': 0.001794, 'momentum': 0.0}. [INFO 09-28 16:28:38] ax.service.ax_client: Completed trial 19 with data: {'mean_accuracy': (0.958667, None)}. [INFO 09-28 16:28:40] ax.service.ax_client: Generated new trial 22 with parameters {'lr': 1e-06, 'momentum': 0.0}. [INFO 09-28 16:28:46] ax.service.ax_client: Completed trial 20 with data: {'mean_accuracy': (0.971333, None)}. [INFO 09-28 16:28:47] ax.service.ax_client: Generated new trial 23 with parameters {'lr': 3.1e-05, 'momentum': 0.675067}. [INFO 09-28 16:28:48] ax.service.ax_client: Completed trial 21 with data: {'mean_accuracy': (0.960667, None)}. [INFO 09-28 16:28:49] ax.service.ax_client: Generated new trial 24 with parameters {'lr': 0.00031, 'momentum': 0.358087}. [INFO 09-28 16:28:57] ax.service.ax_client: Completed trial 22 with data: {'mean_accuracy': (0.103833, None)}. [INFO 09-28 16:28:58] ax.service.ax_client: Generated new trial 25 with parameters {'lr': 0.001606, 'momentum': 0.790892}. [INFO 09-28 16:28:59] ax.service.ax_client: Completed trial 23 with data: {'mean_accuracy': (0.879667, None)}. [INFO 09-28 16:29:01] ax.service.ax_client: Generated new trial 26 with parameters {'lr': 0.001231, 'momentum': 0.252503}. [INFO 09-28 16:29:08] ax.service.ax_client: Completed trial 24 with data: {'mean_accuracy': (0.926667, None)}. [INFO 09-28 16:29:10] ax.service.ax_client: Generated new trial 27 with parameters {'lr': 6e-05, 'momentum': 0.0}. [INFO 09-28 16:29:10] ax.service.ax_client: Completed trial 25 with data: {'mean_accuracy': (0.960333, None)}. [INFO 09-28 16:29:12] ax.service.ax_client: Generated new trial 28 with parameters {'lr': 0.00136, 'momentum': 0.592654}. [INFO 09-28 16:29:18] ax.service.ax_client: Completed trial 26 with data: {'mean_accuracy': (0.962333, None)}. [INFO 09-28 16:29:19] ax.service.ax_client: Generated new trial 29 with parameters {'lr': 0.002825, 'momentum': 1.0}. [INFO 09-28 16:29:21] ax.service.ax_client: Completed trial 27 with data: {'mean_accuracy': (0.857667, None)}. [INFO 09-28 16:29:26] ax.service.ax_client: Completed trial 28 with data: {'mean_accuracy': (0.961167, None)}. [INFO 09-28 16:29:30] ax.service.ax_client: Completed trial 29 with data: {'mean_accuracy': (0.095333, None)}.
<ray.tune.analysis.experiment_analysis.ExperimentAnalysis at 0x7f4c50432580>
best_parameters, values = ax.get_best_parameters()
best_parameters
{'lr': 0.002090992598046835, 'momentum': 0.10350390502152358}
means, covariances = values
means
{'mean_accuracy': 0.9752157395792119}
render(
plot_contour(
model=ax.generation_strategy.model,
param_x="lr",
param_y="momentum",
metric_name="mean_accuracy",
)
)
# `plot_single_method` expects a 2-d array of means, because it expects to average means from multiple
# optimization runs, so we wrap out best objectives array in another array.
best_objectives = np.array(
[[trial.objective_mean * 100 for trial in ax.experiment.trials.values()]]
)
best_objective_plot = optimization_trace_single_method(
y=np.maximum.accumulate(best_objectives, axis=1),
title="Model performance vs. # of iterations",
ylabel="Accuracy",
)
render(best_objective_plot)
Total runtime of script: 2 minutes, 49.94 seconds.