Trial-level early stopping
Trial-level early stopping aims to monitor the results of expensive evaluations with timeseries-like data and terminate those that are unlikely to produce promising results prior to completing that evaluation. This reduces computational waste, and enables the same amount of resources to explore more configurations. Early stopping is useful for expensive to evaluate problems where stepwise information is available on the way to the final measurement.
Like the Getting Started tutorial we'll be minimizing the Hartmann6 function, but this time we've modified it to incorporate a new parameter which allows the function to produce timeseries-like data where the value returned is closer and closer to Hartmann6's true value as increases. At the function will simply return Hartmann6's unaltered value.
While the function is synthetic, the workflow captures the intended principles for this tutorial and is similar to the process of training typical machine learning models.
Learning Objectives
- Understand when time-series-like data can be used in an optimization experiment
- Run a simple optimization experiment with early stopping
- Configure details of an early stopping strategy
- Analyze the results of the optimization
Prerequisites
- Familiarity with Python and basic programming concepts
- Understanding of adaptive experimentation and Bayesian optimization
- Getting Started with Ax
Step 1: Import Necessary Modules
First, ensure you have all the necessary imports:
import numpy as np
from ax.api.client import Client
from ax.api.configs import RangeParameterConfig
Step 2: Initialize the Client
Create an instance of the Client
to manage the state of your experiment.
client = Client()
Step 3: Configure the Experiment
The Client
instance can be configured with a series of Config
s that define how the
experiment will be run.
The Hartmann6 problem is usually evaluated on the hypercube , so we will
define six identical RangeParameterConfig
s with these bounds.
You may specify additional features like parameter constraints to further refine the search space and parameter scaling to help navigate parameters with nonuniform effects.
# Define six float parameters for the Hartmann6 function
parameters = [
RangeParameterConfig(
name=f"x{i + 1}", parameter_type="float", bounds=(0, 1)
)
for i in range(6)
]
client.configure_experiment(parameters=parameters)
Step 4: Configure Optimization
Now, we must configure the objective for this optimization, which we do using
Client.configure_optimization
. This method expects a string objective
, an expression
containing either a single metric to maximize, a linear combination of metrics to
maximize, or a tuple of multiple metrics to jointly maximize. These expressions are
parsed using SymPy. For example:
"score"
would direct Ax to maximize a metric named score"-loss"
would direct Ax to Ax to minimize a metric named loss"task_0 + 0.5 * task_1"
would direct Ax to maximize the sum of two task scores, downweighting task_1 by a factor of 0.5"score, -flops"
would direct Ax to simultaneously maximize score while minimizing flops
See these recipes for more information on configuring objectives and outcome constraints.
client.configure_optimization(objective="-hartmann6")
Step 5: Run Trials with early stopping
Here, we will configure the ask-tell loop.
We begin by defining our Hartmann6 function as written above. Remember, this is just an example problem and any Python function can be substituted here.
Then we will iteratively do the following:
- Call
client.get_next_trials
to "ask" Ax for a parameterization to evaluate - Evaluate
hartmann6_curve
using those parameters in an inner loop to simulate the generation of timeseries data - "Tell" Ax the partial result using
client.attach_data
- Query whether the trial should be stopped via
client.should_stop_trial_early
- Stop the underperforming trial and report back to Ax that is has been stopped
This loop will run multiple trials to optimize the function.
Ax will configure an EarlyStoppingStrategy when should_stop_trial_early
is called for
the first time. By default Ax uses a Percentile early stopping strategy which will
terminate a trial early if its performance falls below a percentile threshold when
compared to other trials at the same step. Early stopping can only occur after a minimum
number of progressions
to prevent premature early stopping. This validates that both
enough data is gathered to make a decision and there is a minimum number of completed
trials with curve data; these completed trials establish a baseline.
# Hartmann6 function
def hartmann6(x1, x2, x3, x4, x5, x6):
alpha = np.array([1.0, 1.2, 3.0, 3.2])
A = np.array(
[
[10, 3, 17, 3.5, 1.7, 8],
[0.05, 10, 17, 0.1, 8, 14],
[3, 3.5, 1.7, 10, 17, 8],
[17, 8, 0.05, 10, 0.1, 14],
]
)
P = 10**-4 * np.array(
[
[1312, 1696, 5569, 124, 8283, 5886],
[2329, 4135, 8307, 3736, 1004, 9991],
[2348, 1451, 3522, 2883, 3047, 6650],
[4047, 8828, 8732, 5743, 1091, 381],
]
)
outer = 0.0
for i in range(4):
inner = 0.0
for j, x in enumerate([x1, x2, x3, x4, x5, x6]):
inner += A[i, j] * (x - P[i, j]) ** 2
outer += alpha[i] * np.exp(-inner)
return -outer
# Hartmann6 function with additional t term such that
# hartmann6(X) == hartmann6_curve(X, t=100)
def hartmann6_curve(x1, x2, x3, x4, x5, x6, t):
return hartmann6(x1, x2, x3, x4, x5, x6) - np.log2(t / 100)
(
hartmann6(0.1, 0.45, 0.8, 0.25, 0.552, 1.0),
hartmann6_curve(0.1, 0.45, 0.8, 0.25, 0.552, 1.0, 100),
)
(np.float64(-0.4878737485613134), np.float64(-0.4878737485613134))
maximum_progressions = 100 # Observe hartmann6_curve over 100 progressions
for _ in range(30): # Run 30 rounds of trials
trials = client.get_next_trials(max_trials=3)
for trial_index, parameters in trials.items():
for t in range(1, maximum_progressions + 1):
raw_data = {"hartmann6": hartmann6_curve(t=t, **parameters)}
# On the final reading call complete_trial and break, else call attach_data
if t == maximum_progressions:
client.complete_trial(
trial_index=trial_index, raw_data=raw_data, progression=t
)
break
client.attach_data(
trial_index=trial_index, raw_data=raw_data, progression=t
)
# If the trial is underperforming, stop it
if client.should_stop_trial_early(trial_index=trial_index):
client.mark_trial_early_stopped(trial_index=trial_index)
break
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:08:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.api.client: 3 trials requested but only 2 could be generated.
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.api.client: 3 trials requested but only 1 could be generated.
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:10] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:09:25] ax.early_stopping.strategies.percentile: Early stoppinging trial 11: Trial objective value 3.016639164157387 is worse than 50.0-th percentile (2.9364676688939664) across comparable trials..
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:09:34] ax.early_stopping.strategies.percentile: Early stoppinging trial 14: Trial objective value 3.307898238008408 is worse than 50.0-th percentile (2.86748213287922) across comparable trials..
[WARNING 07-17 05:09:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:09:36] ax.early_stopping.strategies.percentile: Early stoppinging trial 15: Trial objective value 3.2515997910490038 is worse than 50.0-th percentile (2.9364676688939664) across comparable trials..
[WARNING 07-17 05:09:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:09:46] ax.early_stopping.strategies.percentile: Early stoppinging trial 18: Trial objective value 3.313871761279471 is worse than 50.0-th percentile (2.86748213287922) across comparable trials..
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:09:46] ax.early_stopping.strategies.percentile: Early stoppinging trial 19: Trial objective value 3.317914213887901 is worse than 50.0-th percentile (2.9364676688939664) across comparable trials..
[WARNING 07-17 05:09:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:09:47] ax.early_stopping.strategies.percentile: Early stoppinging trial 20: Trial objective value 3.0180508137210476 is worse than 50.0-th percentile (3.0054532049087124) across comparable trials..
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:09:48] ax.early_stopping.strategies.percentile: Early stoppinging trial 21: Trial objective value 3.3138637004825306 is worse than 50.0-th percentile (3.0110461845330496) across comparable trials..
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:09:49] ax.early_stopping.strategies.percentile: Early stoppinging trial 22: Trial objective value 3.317937203121525 is worse than 50.0-th percentile (3.016639164157387) across comparable trials..
[WARNING 07-17 05:09:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:09:49] ax.early_stopping.strategies.percentile: Early stoppinging trial 23: Trial objective value 3.1563608053023557 is worse than 50.0-th percentile (3.017344988939217) across comparable trials..
[WARNING 07-17 05:09:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:09:51] ax.early_stopping.strategies.percentile: Early stoppinging trial 24: Trial objective value 3.3140145693414085 is worse than 50.0-th percentile (3.0180508137210476) across comparable trials..
[WARNING 07-17 05:09:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:09:52] ax.early_stopping.strategies.percentile: Early stoppinging trial 25: Trial objective value 3.317953836368586 is worse than 50.0-th percentile (3.0652723782016285) across comparable trials..
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:09:59] ax.early_stopping.strategies.percentile: Early stoppinging trial 27: Trial objective value 3.3071127464166095 is worse than 50.0-th percentile (3.0652723782016285) across comparable trials..
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:09:59] ax.early_stopping.strategies.percentile: Early stoppinging trial 28: Trial objective value 3.3117587468573886 is worse than 50.0-th percentile (3.112493942682209) across comparable trials..
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:09:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:09:59] ax.early_stopping.strategies.percentile: Early stoppinging trial 29: Trial objective value 3.2860001259384024 is worse than 50.0-th percentile (3.134427373992282) across comparable trials..
[WARNING 07-17 05:10:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:02] ax.early_stopping.strategies.percentile: Early stoppinging trial 30: Trial objective value 3.3084334116963148 is worse than 50.0-th percentile (3.1563608053023557) across comparable trials..
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:02] ax.early_stopping.strategies.percentile: Early stoppinging trial 31: Trial objective value 3.3129382317942215 is worse than 50.0-th percentile (3.2002336411833365) across comparable trials..
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:02] ax.early_stopping.strategies.percentile: Early stoppinging trial 32: Trial objective value 3.3201826084487895 is worse than 50.0-th percentile (3.2441064770643178) across comparable trials..
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:05] ax.early_stopping.strategies.percentile: Early stoppinging trial 33: Trial objective value 2.8950558452882253 is worse than 50.0-th percentile (2.6791095794351945) across comparable trials..
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:05] ax.early_stopping.strategies.percentile: Early stoppinging trial 34: Trial objective value 3.290786281885145 is worse than 50.0-th percentile (3.2441064770643178) across comparable trials..
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:06] ax.early_stopping.strategies.percentile: Early stoppinging trial 35: Trial objective value 3.3136646839829345 is worse than 50.0-th percentile (3.247853134056661) across comparable trials..
[WARNING 07-17 05:10:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:09] ax.early_stopping.strategies.percentile: Early stoppinging trial 36: Trial objective value 3.3091976415387525 is worse than 50.0-th percentile (3.2515997910490038) across comparable trials..
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:09] ax.early_stopping.strategies.percentile: Early stoppinging trial 37: Trial objective value 3.320170373641184 is worse than 50.0-th percentile (3.263182991270706) across comparable trials..
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:09] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:09] ax.early_stopping.strategies.percentile: Early stoppinging trial 38: Trial objective value 3.3132666401015394 is worse than 50.0-th percentile (3.2747661914924087) across comparable trials..
[WARNING 07-17 05:10:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:19] ax.early_stopping.strategies.percentile: Early stoppinging trial 40: Trial objective value 3.2890948787187586 is worse than 50.0-th percentile (3.2747661914924087) across comparable trials..
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:29] ax.early_stopping.strategies.percentile: Early stoppinging trial 42: Trial objective value 3.30112108364351 is worse than 50.0-th percentile (3.2747661914924087) across comparable trials..
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:29] ax.early_stopping.strategies.percentile: Early stoppinging trial 43: Trial objective value 3.3100199163463477 is worse than 50.0-th percentile (3.2803831587154058) across comparable trials..
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:29] ax.early_stopping.strategies.percentile: Early stoppinging trial 44: Trial objective value 3.299855672170033 is worse than 50.0-th percentile (3.2860001259384024) across comparable trials..
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:32] ax.early_stopping.strategies.percentile: Early stoppinging trial 45: Trial objective value 3.307025195363375 is worse than 50.0-th percentile (3.2875475023285805) across comparable trials..
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:33] ax.early_stopping.strategies.percentile: Early stoppinging trial 46: Trial objective value 3.30296637205345 is worse than 50.0-th percentile (3.2890948787187586) across comparable trials..
[WARNING 07-17 05:10:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:33] ax.early_stopping.strategies.percentile: Early stoppinging trial 47: Trial objective value 3.3198643550094054 is worse than 50.0-th percentile (3.289940580301952) across comparable trials..
[WARNING 07-17 05:10:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:44] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:45] ax.early_stopping.strategies.percentile: Early stoppinging trial 49: Trial objective value 3.2900784332311224 is worse than 50.0-th percentile (3.2895866559749405) across comparable trials..
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:45] ax.early_stopping.strategies.percentile: Early stoppinging trial 50: Trial objective value 2.8734262236964097 is worse than 50.0-th percentile (2.5816150478168836) across comparable trials..
[WARNING 07-17 05:10:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:49] ax.early_stopping.strategies.percentile: Early stoppinging trial 51: Trial objective value 3.149551669162814 is worse than 50.0-th percentile (2.630362313626039) across comparable trials..
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:49] ax.early_stopping.strategies.percentile: Early stoppinging trial 52: Trial objective value 3.3180990257159073 is worse than 50.0-th percentile (3.2890948787187586) across comparable trials..
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:49] ax.early_stopping.strategies.percentile: Early stoppinging trial 53: Trial objective value 3.319324969832065 is worse than 50.0-th percentile (3.2895866559749405) across comparable trials..
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:54] ax.early_stopping.strategies.percentile: Early stoppinging trial 54: Trial objective value 2.7982438895727104 is worse than 50.0-th percentile (2.6791095794351945) across comparable trials..
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:10:54] ax.early_stopping.strategies.percentile: Early stoppinging trial 55: Trial objective value 3.1349508159588666 is worse than 50.0-th percentile (2.7001708585356825) across comparable trials..
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:10:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:06] ax.early_stopping.strategies.percentile: Early stoppinging trial 57: Trial objective value 3.302448692295507 is worse than 50.0-th percentile (3.2880750358157536) across comparable trials..
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:07] ax.early_stopping.strategies.percentile: Early stoppinging trial 58: Trial objective value 3.3104761625980816 is worse than 50.0-th percentile (3.2890948787187586) across comparable trials..
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:07] ax.early_stopping.strategies.percentile: Early stoppinging trial 59: Trial objective value 3.3219038345824923 is worse than 50.0-th percentile (3.2895866559749405) across comparable trials..
[WARNING 07-17 05:11:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:11] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:12] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:13] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:21] ax.early_stopping.strategies.percentile: Early stoppinging trial 61: Trial objective value 3.296381484092753 is worse than 50.0-th percentile (3.2895866559749405) across comparable trials..
[WARNING 07-17 05:11:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:21] ax.early_stopping.strategies.percentile: Early stoppinging trial 62: Trial objective value 3.3150433933236094 is worse than 50.0-th percentile (3.2900784332311224) across comparable trials..
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:25] ax.early_stopping.strategies.percentile: Early stoppinging trial 63: Trial objective value 3.1489102470851855 is worse than 50.0-th percentile (2.6791095794351945) across comparable trials..
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:27] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:28] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:29] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:36] ax.early_stopping.strategies.percentile: Early stoppinging trial 65: Trial objective value 3.318734716394125 is worse than 50.0-th percentile (3.2895866559749405) across comparable trials..
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:40] ax.early_stopping.strategies.percentile: Early stoppinging trial 66: Trial objective value 3.1497230317027705 is worse than 50.0-th percentile (2.6791095794351945) across comparable trials..
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:41] ax.early_stopping.strategies.percentile: Early stoppinging trial 67: Trial objective value 2.8219741560103895 is worse than 50.0-th percentile (2.7001708585356825) across comparable trials..
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:41] ax.early_stopping.strategies.percentile: Early stoppinging trial 68: Trial objective value 3.1369669152774398 is worse than 50.0-th percentile (2.7212321376361706) across comparable trials..
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:45] ax.early_stopping.strategies.percentile: Early stoppinging trial 69: Trial objective value 3.292836654495405 is worse than 50.0-th percentile (3.2881607170857317) across comparable trials..
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:45] ax.early_stopping.strategies.percentile: Early stoppinging trial 70: Trial objective value 2.743100313254706 is worse than 50.0-th percentile (2.725605373382728) across comparable trials..
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:45] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:46] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:46] ax.early_stopping.strategies.percentile: Early stoppinging trial 71: Trial objective value 3.315771403144078 is worse than 50.0-th percentile (3.2881607170857317) across comparable trials..
[WARNING 07-17 05:11:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:50] ax.early_stopping.strategies.percentile: Early stoppinging trial 72: Trial objective value 3.300722574951614 is worse than 50.0-th percentile (3.2890948787187586) across comparable trials..
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:51] ax.early_stopping.strategies.percentile: Early stoppinging trial 73: Trial objective value 3.3157849427224875 is worse than 50.0-th percentile (3.2895866559749405) across comparable trials..
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:11:51] ax.early_stopping.strategies.percentile: Early stoppinging trial 74: Trial objective value 3.296670970670643 is worse than 50.0-th percentile (3.2900784332311224) across comparable trials..
[WARNING 07-17 05:11:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:11:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:01] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:02] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:03] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:04] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:05] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:06] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:12:07] ax.early_stopping.strategies.percentile: Early stoppinging trial 76: Trial objective value 3.3216796033691507 is worse than 50.0-th percentile (3.2900784332311224) across comparable trials..
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:07] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:08] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:12:08] ax.early_stopping.strategies.percentile: Early stoppinging trial 77: Trial objective value 3.2984504903750373 is worse than 50.0-th percentile (3.290432357558134) across comparable trials..
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:12:14] ax.early_stopping.strategies.percentile: Early stoppinging trial 78: Trial objective value 3.314859155560464 is worse than 50.0-th percentile (3.290786281885145) across comparable trials..
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:14] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:15] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:16] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:17] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:18] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:19] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:20] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:21] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:22] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:23] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:24] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:25] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:26] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:12:26] ax.early_stopping.strategies.percentile: Early stoppinging trial 80: Trial objective value 3.2953927746149843 is worse than 50.0-th percentile (3.290786281885145) across comparable trials..
[WARNING 07-17 05:12:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:30] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:31] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:32] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:33] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:34] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:35] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:36] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:37] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:38] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:39] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:40] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:41] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:42] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:12:43] ax.early_stopping.strategies.percentile: Early stoppinging trial 82: Trial objective value 2.4151852974042742 is worse than 50.0-th percentile (2.338718461888641) across comparable trials..
[WARNING 07-17 05:12:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:43] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:12:43] ax.early_stopping.strategies.percentile: Early stoppinging trial 83: Trial objective value 3.3208505993966004 is worse than 50.0-th percentile (3.290432357558134) across comparable trials..
[WARNING 07-17 05:12:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:47] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:48] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:49] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:50] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:51] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:52] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:53] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:54] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:55] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:56] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:57] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:58] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:12:59] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:13:00] ax.early_stopping.strategies.percentile: Early stoppinging trial 85: Trial objective value 3.2932197668977867 is worse than 50.0-th percentile (3.290432357558134) across comparable trials..
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[WARNING 07-17 05:13:00] ax.early_stopping.strategies.base: No metric names specified. Defaulting to the objective metric(s).
[INFO 07-17 05:13:00] ax.early_stopping.strategies.percentile: Early stoppinging trial 86: Trial objective value 3.3155966837815183 is worse than 50.0-th percentile (3.290786281885145) across comparable trials..
Step 6: Analyze Results
After running trials, you can analyze the results. Most commonly this means extracting the parameterization from the best performing trial you conducted.
best_parameters, prediction, index, name = client.get_best_parameterization()
print("Best Parameters:", best_parameters)
print("Prediction (mean, variance):", prediction)
Best Parameters: {'x1': 0.0, 'x2': 0.24385052321641895, 'x3': 0.6559969479120276, 'x4': 0.32956958613876025, 'x5': 0.2470688322545546, 'x6': 1.0}
Prediction (mean, variance): {'hartmann6': (np.float64(-1.252120737632151), np.float64(0.002939636945966381))}
Step 7: Compute Analyses
Ax can also produce a number of analyses to help interpret the results of the experiment
via client.compute_analyses
. Users can manually select which analyses to run, or can
allow Ax to select which would be most relevant. In this case Ax selects the following:
- Parrellel Coordinates Plot shows which parameterizations were evaluated and what metric values were observed -- this is useful for getting a high level overview of how thoroughly the search space was explored and which regions tend to produce which outcomes
- Progression Plot shows each partial observation observed by Ax for each trial in a timeseries
- Sensitivity Analysis Plot shows which parameters have the largest affect on the objective using Sobol Indicies
- Slice Plot shows how the model predicts a single parameter effects the objective along with a confidence interval
- Contour Plot shows how the model predicts a pair of parameters effects the objective as a 2D surface
- Summary lists all trials generated along with their parameterizations, observations, and miscellaneous metadata
- Cross Validation helps to visualize how well the surrogate model is able to predict out of sample points
# display=True instructs Ax to sort then render the resulting analyses
cards = client.compute_analyses(display=True)
Modeled Arm Effects on hartmann6
Modeled effects on hartmann6. This plot visualizes predictions of the true metric changes for each arm based on Ax's model. This is the expected delta you would expect if you (re-)ran that arm. This plot helps in anticipating the outcomes and performance of arms based on the model's predictions. Note, flat predictions across arms indicate that the model predicts that there is no effect, meaning if you were to re-run the experiment, the delta you would see would be small and fall within the confidence interval indicated in the plot.
Conclusion
This tutorial demonstates Ax's early stopping capabilities, which utilize timeseries-like data to monitor the results of expensive evaluations and terminate those that are unlikely to produce promising results, freeing up resources to explore more configurations. This can be used in a number of applications, and is especially useful in machine learning contexts.