ax.metrics

BoTorch Test Problem

class ax.metrics.botorch_test_problem.BotorchTestProblemMetric(name: str, noise_sd: float, index: Optional[int] = None)[source]

Bases: ax.core.metric.Metric

A Metric for retriving information from a BotorchTestProblemRunner. A BotorchTestProblemRunner will attach the result of a call to BaseTestProblem.forward per Arm on a given trial, and this Metric will extract the proper value from the resulting tensor given its index.

fetch_trial_data(trial: ax.core.base_trial.BaseTrial, **kwargs: Any) ax.core.data.Data[source]

Fetch data for one trial.

Branin

class ax.metrics.branin.AugmentedBraninMetric(name: str, param_names: List[str], noise_sd: Optional[float] = 0.0, lower_is_better: Optional[bool] = None)[source]

Bases: ax.metrics.noisy_function.NoisyFunctionMetric

f(x: numpy.ndarray) float[source]

The deterministic function that produces the metric outcomes.

class ax.metrics.branin.BraninMetric(name: str, param_names: List[str], noise_sd: Optional[float] = 0.0, lower_is_better: Optional[bool] = None)[source]

Bases: ax.metrics.noisy_function.NoisyFunctionMetric

f(x: numpy.ndarray) float[source]

The deterministic function that produces the metric outcomes.

class ax.metrics.branin.NegativeBraninMetric(name: str, param_names: List[str], noise_sd: Optional[float] = 0.0, lower_is_better: Optional[bool] = None)[source]

Bases: ax.metrics.branin.BraninMetric

f(x: numpy.ndarray) float[source]

The deterministic function that produces the metric outcomes.

Branin Map

class ax.metrics.branin_map.BraninFidelityMapMetric(name: str, param_names: Iterable[str], noise_sd: float = 0.0, lower_is_better: Optional[bool] = None)[source]

Bases: ax.metrics.noisy_function_map.NoisyFunctionMapMetric

f(x: numpy.ndarray) Mapping[str, Any][source]

The deterministic function that produces the metric outcomes.

fetch_trial_data(trial: ax.core.base_trial.BaseTrial, noisy: bool = True, **kwargs: Any) ax.core.map_data.MapData[source]

Fetch data for one trial.

class ax.metrics.branin_map.BraninTimestampMapMetric(name: str, param_names: Iterable[str], map_key_infos: Optional[Iterable[ax.core.map_data.MapKeyInfo]] = None, noise_sd: float = 0.0, lower_is_better: Optional[bool] = None, rate: Optional[float] = None, cache_evaluations: bool = True)[source]

Bases: ax.metrics.noisy_function_map.NoisyFunctionMapMetric

f(x: numpy.ndarray, timestamp: int) Mapping[str, Any][source]

The deterministic function that produces the metric outcomes.

fetch_trial_data(trial: ax.core.base_trial.BaseTrial, noisy: bool = True, **kwargs: Any) ax.core.map_data.MapData[source]

Fetch data for one trial.

ax.metrics.branin_map.random() x in the interval [0, 1).

Chemistry

Classes for optimizing yields from chemical reactions.

References

Perera2018

D. Perera, J. W. Tucker, S. Brahmbhatt, C. Helal, A. Chong, W. Farrell, P. Richardson, N. W. Sach. A platform for automated nanomole-scale reaction screening and micromole-scale synthesis in flow. Science, 26. 2018.

Shields2021

B. J. Shields, J. Stevens, J. Li, et al. Bayesian reaction optimization as a tool for chemical synthesis. Nature 590, 89–96 (2021).

“SUZUKI” involves optimization solvent, ligand, and base combinations in a Suzuki-Miyaura coupling to optimize carbon-carbon bond formation. See _[Perera2018] for details.

“DIRECT_ARYLATION” involves optimizing the solvent, base, and ligand chemicals as well as the temperature and concentration for a direct arylation reaction. See _[Shields2021] for details.

class ax.metrics.chemistry.ChemistryData(param_names: 'List[str]', objective_dict: 'Dict[Tuple[TParamValue, ...], float]')[source]

Bases: object

evaluate(params: Dict[str, Optional[Union[str, bool, float, int]]]) float[source]
objective_dict: Dict[Tuple[Optional[Union[str, bool, float, int]], ...], float]
param_names: List[str]
class ax.metrics.chemistry.ChemistryMetric(name: str, noiseless: bool = False, problem_type: ax.metrics.chemistry.ChemistryProblemType = ChemistryProblemType.SUZUKI, lower_is_better: bool = False)[source]

Bases: ax.core.metric.Metric

Metric for modeling chemical reactions.

Metric describing the outcomes of chemical reactions. Based on tabulate data. Problems typically contain many discrete and categorical parameters.

Parameters
  • name – The name of the metric.

  • noiseless – If True, consider observations noiseless, otherwise assume unknown Gaussian observation noise.

  • problem_type – The problem type.

noiseless

If True, consider observations noiseless, otherwise assume unknown Gaussian observation noise.

lower_is_better

If True, the metric should be minimized.

clone() ax.metrics.chemistry.ChemistryMetric[source]

Create a copy of this Metric.

fetch_trial_data(trial: ax.core.base_trial.BaseTrial, **kwargs: Any) ax.core.data.Data[source]

Fetch data for one trial.

class ax.metrics.chemistry.ChemistryProblemType(value)[source]

Bases: enum.Enum

An enumeration.

DIRECT_ARYLATION: str = 'direct_arylation'
SUZUKI: str = 'suzuki'

Curve

Metrics that allow to retrieve curves of partial results. Typically used to retrieve partial learning curves of ML training jobs.

class ax.metrics.curve.AbstractCurveMetric(name: str, curve_name: str, lower_is_better: bool = True)[source]

Bases: ax.core.map_metric.MapMetric, abc.ABC

Metric representing (partial) learning curves of ML model training jobs.

MAP_KEY = <ax.core.map_data.MapKeyInfo object>
classmethod fetch_experiment_data_multi(experiment: ax.core.experiment.Experiment, metrics: Iterable[ax.core.metric.Metric], trials: Optional[Iterable[ax.core.base_trial.BaseTrial]] = None, **kwargs: Any) ax.core.data.Data[source]

Fetch multiple metrics data for an experiment.

fetch_trial_data(trial: ax.core.base_trial.BaseTrial, **kwargs: Any) ax.core.data.Data[source]

Fetch data for one trial.

classmethod fetch_trial_data_multi(trial: ax.core.base_trial.BaseTrial, metrics: Iterable[ax.core.metric.Metric], **kwargs: Any) ax.core.data.Data[source]

Fetch multiple metrics data for one trial.

abstract classmethod get_curves_from_ids(ids: Iterable[Union[int, str]]) Dict[Union[int, str], Dict[str, pandas.Series]][source]

Get partial result curves from backend ids.

Parameters

ids – The ids of the backend runs for which to fetch the partial result curves.

Returns

A dictionary mapping the backend id to the partial result curves, each of which is represented as a mapping from the metric name to a pandas Series indexed by the progression (which will be mapped to the MAP_KEY of the metric class). E.g. if curve_name=loss and MAP_KEY=training_rows, then a Series should look like:

training_rows (index) | loss

———————–|——

100 | 0.5 200 | 0.2

classmethod get_df_from_curve_series(experiment: ax.core.experiment.Experiment, all_curve_series: Dict[Union[int, str], Dict[str, pandas.Series]], metrics: Iterable[ax.core.metric.Metric], trial_idx_to_id: Dict[int, Union[int, str]]) Optional[pandas.DataFrame][source]

Convert a all_curve_series dict (from get_curves_from_ids) into a dataframe. For each metric, we get one curve (of name curve_name).

Parameters
  • experiment – The experiment.

  • all_curve_series – A dict containing curve data, as output from get_curves_from_ids.

  • metrics – The metrics from which data is being fetched.

  • trial_idx_to_id – A dict mapping trial index to ids.

Returns

A dataframe containing curve data or None if no curve data could be found.

abstract classmethod get_ids_from_trials(trials: Iterable[ax.core.base_trial.BaseTrial]) Dict[int, Union[int, str]][source]

Get backend run ids associated with trials.

Parameters

trials – The trials for which to retrieve the associated ids that can be used to to identify the corresponding runs on the backend.

Returns

A dictionary mapping the trial indices to the identifiers (ints or strings) corresponding to the backend runs associated with the trials. Trials whose corresponding ids could not be found should be omitted.

classmethod is_available_while_running() bool[source]

Whether metrics of this class are available while the trial is running. Metrics that are not available while the trial is running are assumed to be available only upon trial completion. For such metrics, data is assumed to never change once the trial is completed.

NOTE: If this method returns False, data-fetching via experiment.fetch_data will return the data cached on the experiment (for the metrics of the given class) whenever its available. Data is cached on experiment when attached via experiment.attach_data.

class ax.metrics.curve.AbstractScalarizedCurveMetric(name: str, coefficients: Dict[str, float], offset: float = 0.0, lower_is_better: bool = True)[source]

Bases: ax.metrics.curve.AbstractCurveMetric

A linear scalarization of (partial) learning curves of ML model training jobs:

scalarized_curve = offset + sum_i(coefficients[i] * curve[i]).

It is assumed that the output of get_curves_from_ids contains all of the curves necessary for performing the scalarization.

classmethod get_df_from_curve_series(experiment: ax.core.experiment.Experiment, all_curve_series: Dict[Union[int, str], Dict[str, pandas.Series]], metrics: Iterable[ax.core.metric.Metric], trial_idx_to_id: Dict[int, Union[int, str]]) Optional[pandas.DataFrame][source]

Convert a all_curve_series dict (from get_curves_from_ids) into a dataframe. For each metric, we first get all curves represented in coefficients and then perform scalarization.

Parameters
  • experiment – The experiment.

  • all_curve_series – A dict containing curve data, as output from get_curves_from_ids.

  • metrics – The metrics from which data is being fetched.

  • trial_idx_to_id – A dict mapping trial index to ids.

Returns

A dataframe containing curve data or None if no curve data could be found.

Factorial

class ax.metrics.factorial.FactorialMetric(name: str, coefficients: Dict[str, Dict[Optional[Union[str, bool, float, int]], float]], batch_size: int = 10000, noise_var: float = 0.0)[source]

Bases: ax.core.metric.Metric

Metric for testing factorial designs assuming a main effects only logit model.

fetch_trial_data(trial: ax.core.base_trial.BaseTrial, **kwargs: Any) ax.core.data.Data[source]

Fetch data for one trial.

classmethod is_available_while_running() bool[source]

Whether metrics of this class are available while the trial is running. Metrics that are not available while the trial is running are assumed to be available only upon trial completion. For such metrics, data is assumed to never change once the trial is completed.

NOTE: If this method returns False, data-fetching via experiment.fetch_data will return the data cached on the experiment (for the metrics of the given class) whenever its available. Data is cached on experiment when attached via experiment.attach_data.

ax.metrics.factorial.evaluation_function(parameterization: Dict[str, Optional[Union[str, bool, float, int]]], coefficients: Dict[str, Dict[Optional[Union[str, bool, float, int]], float]], weight: float = 1.0, batch_size: int = 10000, noise_var: float = 0.0) Tuple[float, float][source]

Hartmann6

class ax.metrics.hartmann6.AugmentedHartmann6Metric(name: str, param_names: List[str], noise_sd: Optional[float] = 0.0, lower_is_better: Optional[bool] = None)[source]

Bases: ax.metrics.noisy_function.NoisyFunctionMetric

f(x: numpy.ndarray) float[source]

The deterministic function that produces the metric outcomes.

class ax.metrics.hartmann6.Hartmann6Metric(name: str, param_names: List[str], noise_sd: Optional[float] = 0.0, lower_is_better: Optional[bool] = None)[source]

Bases: ax.metrics.noisy_function.NoisyFunctionMetric

f(x: numpy.ndarray) float[source]

The deterministic function that produces the metric outcomes.

Jenatton

class ax.metrics.jenatton.JenattonMetric(name: str = 'jenatton')[source]

Bases: ax.core.metric.Metric

fetch_trial_data(trial: ax.core.base_trial.BaseTrial, **kwargs: Any) ax.core.data.Data[source]

Fetch data for one trial.

L2 Norm

class ax.metrics.l2norm.L2NormMetric(name: str, param_names: List[str], noise_sd: Optional[float] = 0.0, lower_is_better: Optional[bool] = None)[source]

Bases: ax.metrics.noisy_function.NoisyFunctionMetric

f(x: numpy.ndarray) float[source]

The deterministic function that produces the metric outcomes.

Noisy Functions

class ax.metrics.noisy_function.GenericNoisyFunctionMetric(name: str, f: Callable[[Dict[str, Optional[Union[str, bool, float, int]]]], float], noise_sd: Optional[float] = 0.0, lower_is_better: Optional[bool] = None)[source]

Bases: ax.metrics.noisy_function.NoisyFunctionMetric

clone() ax.metrics.noisy_function.GenericNoisyFunctionMetric[source]

Create a copy of this Metric.

property param_names: List[str]
class ax.metrics.noisy_function.NoisyFunctionMetric(name: str, param_names: List[str], noise_sd: Optional[float] = 0.0, lower_is_better: Optional[bool] = None)[source]

Bases: ax.core.metric.Metric

A metric defined by a generic deterministic function, with normal noise with mean 0 and mean_sd scale added to the result.

clone() ax.metrics.noisy_function.NoisyFunctionMetric[source]

Create a copy of this Metric.

f(x: numpy.ndarray) float[source]

The deterministic function that produces the metric outcomes.

fetch_trial_data(trial: ax.core.base_trial.BaseTrial, noisy: bool = True, **kwargs: Any) ax.core.data.Data[source]

Fetch data for one trial.

classmethod is_available_while_running() bool[source]

Whether metrics of this class are available while the trial is running. Metrics that are not available while the trial is running are assumed to be available only upon trial completion. For such metrics, data is assumed to never change once the trial is completed.

NOTE: If this method returns False, data-fetching via experiment.fetch_data will return the data cached on the experiment (for the metrics of the given class) whenever its available. Data is cached on experiment when attached via experiment.attach_data.

Noisy Function Map

class ax.metrics.noisy_function_map.NoisyFunctionMapMetric(name: str, param_names: Iterable[str], map_key_infos: Iterable[ax.core.map_data.MapKeyInfo], noise_sd: float = 0.0, lower_is_better: Optional[bool] = None, cache_evaluations: bool = True)[source]

Bases: ax.core.map_metric.MapMetric

A metric defined by a generic deterministic function, with normal noise with mean 0 and mean_sd scale added to the result.

clone() ax.metrics.noisy_function_map.NoisyFunctionMapMetric[source]

Create a copy of this Metric.

classmethod deserialize_init_args(args: Dict[str, Any]) Dict[str, Any][source]

Given a dictionary, deserialize the properties needed to initialize the object. Used for storage.

f(x: numpy.ndarray) Mapping[str, Any][source]

The deterministic function that produces the metric outcomes.

fetch_trial_data(trial: ax.core.base_trial.BaseTrial, noisy: bool = True, **kwargs: Any) ax.core.map_data.MapData[source]

Fetch data for one trial.

classmethod is_available_while_running() bool[source]

Whether metrics of this class are available while the trial is running. Metrics that are not available while the trial is running are assumed to be available only upon trial completion. For such metrics, data is assumed to never change once the trial is completed.

NOTE: If this method returns False, data-fetching via experiment.fetch_data will return the data cached on the experiment (for the metrics of the given class) whenever its available. Data is cached on experiment when attached via experiment.attach_data.

classmethod overwrite_existing_data() bool[source]
classmethod serialize_init_args(obj: Any) Dict[str, Any][source]

Serialize the properties needed to initialize the object. Used for storage.

Sklearn

class ax.metrics.sklearn.SklearnDataset(value)[source]

Bases: enum.Enum

An enumeration.

BOSTON: str = 'boston'
CANCER: str = 'cancer'
DIGITS: str = 'digits'
class ax.metrics.sklearn.SklearnMetric(name: str, lower_is_better: bool = False, model_type: ax.metrics.sklearn.SklearnModelType = SklearnModelType.RF, dataset: ax.metrics.sklearn.SklearnDataset = SklearnDataset.DIGITS, observed_noise: bool = False, num_folds: int = 5)[source]

Bases: ax.core.metric.Metric

A metric that trains and evaluates an sklearn model.

The evaluation metric is the k-fold “score”. The scoring function depends on the model type and task type (e.g. classification/regression), but higher scores are better.

See sklearn documentation for supported parameters.

In addition, this metric supports tuning the hidden_layer_size and the number of hidden layers (num_hidden_layers) of a NN model.

clone() ax.metrics.sklearn.SklearnMetric[source]

Create a copy of this Metric.

fetch_trial_data(trial: ax.core.base_trial.BaseTrial, noisy: bool = True, **kwargs: Any) ax.core.data.Data[source]

Fetch data for one trial.

train_eval(arm: ax.core.arm.Arm) Tuple[float, float][source]

Train and evaluate model.

Parameters

arm – An arm specifying the parameters to evaluate.

Returns

  • The average k-fold CV score

  • The SE of the mean k-fold CV score if observed_noise is True

    and ‘nan’ otherwise

Return type

A two-element tuple containing

class ax.metrics.sklearn.SklearnModelType(value)[source]

Bases: enum.Enum

An enumeration.

NN: str = 'nn'
RF: str = 'rf'

Tensorboard

class ax.metrics.tensorboard.TensorboardCurveMetric(name: str, curve_name: str, lower_is_better: bool = True)[source]

Bases: ax.metrics.curve.AbstractCurveMetric

A CurveMetric for getting Tensorboard curves.

MAP_KEY = <ax.core.map_data.MapKeyInfo object>
classmethod get_curves_from_ids(ids: Iterable[Union[int, str]]) Dict[Union[int, str], Dict[str, pandas.Series]][source]

Get curve data from tensorboard logs.

NOTE: If the ids are not simple paths/posix locations, subclass this metric and replace this method with an appropriate one that retrieves the log results.

Parameters

ids – A list of string paths to tensorboard log directories.

Returns

A dictionary mapping metric names to pandas Series of data.

ax.metrics.tensorboard.get_tb_from_posix(path: str) Dict[str, pandas.Series][source]

Get Tensorboard data from a posix path.

Parameters

path – The posix path for the directory that contains the tensorboard logs.

Returns

A dictionary mapping metric names to pandas Series of data.

TorchX

class ax.metrics.torchx.TorchXMetric(name: str, lower_is_better: Optional[bool] = None, properties: Optional[Dict[str, Any]] = None)[source]

Bases: ax.core.metric.Metric

Fetches AppMetric (the observation returned by the trial job/app) via the torchx.tracking module. Assumes that the app used the tracker in the following manner:


tracker = torchx.runtime.tracking.FsspecResultTracker(tracker_base) tracker[str(trial_index)] = {metric_name: value}

# – or – tracker[str(trial_index)] = {“metric_name/mean”: mean_value,

“metric_name/sem”: sem_value}

fetch_trial_data(trial: ax.core.base_trial.BaseTrial, **kwargs: Any) ax.core.data.Data[source]

Fetch data for one trial.