This tutorial illustrates how to add a trial-level early stopping strategy to an Ax hyper-parameter optimization (HPO) loop. The goal of trial-level early stopping is to monitor the results of expensive evaluations and terminate those that are unlikely to produce promising results, freeing up resources to explore more configurations.
Most of this tutorial is adapted from the PyTorch Ax Multiobjective NAS Tutorial. The training job is different from the original in that we do not optimize batch_size
or epochs
. This was done for illustrative purposes, as each validation curve now has the same number of points. The companion training file mnist_train_nas.py
has also been altered to log to Tensorboard during training.
NOTE: Although the original NAS tutorial is for a multi-objective problem, this tutorial focuses on a single objective (validation accuracy) problem. Early stopping currently does not support "true" multi-objective stopping, although one can use logical compositions of early stopping strategies to target multiple objectives separately. Early stopping for the multi-objective case is currently a work in progress.
import os
import tempfile
from pathlib import Path
import torchx
from ax.core import Experiment, Objective, ParameterType, RangeParameter, SearchSpace
from ax.core.optimization_config import OptimizationConfig
from ax.early_stopping.strategies import PercentileEarlyStoppingStrategy
from ax.metrics.tensorboard import TensorboardCurveMetric
from ax.modelbridge.dispatch_utils import choose_generation_strategy
from ax.runners.torchx import TorchXRunner
from ax.service.scheduler import Scheduler, SchedulerOptions
from ax.service.utils.report_utils import exp_to_df
from torchx import specs
from torchx.components import utils
from matplotlib import pyplot as plt
%matplotlib inline
SMOKE_TEST = os.environ.get("SMOKE_TEST")
Our goal is to optimize the PyTorch Lightning training job defined in mnist_train_nas.py. To do this using TorchX, we write a helper function that takes in the values of the architcture and hyperparameters of the training job and creates a TorchX AppDef with the appropriate settings.
if SMOKE_TEST:
epochs = 3
else:
epochs = 10
def trainer(
log_path: str,
hidden_size_1: int,
hidden_size_2: int,
learning_rate: float,
dropout: float,
trial_idx: int = -1,
) -> specs.AppDef:
# define the log path so we can pass it to the TorchX AppDef
if trial_idx >= 0:
log_path = Path(log_path).joinpath(str(trial_idx)).absolute().as_posix()
batch_size = 32
return utils.python(
# command line args to the training script
"--log_path",
log_path,
"--hidden_size_1",
str(hidden_size_1),
"--hidden_size_2",
str(hidden_size_2),
"--learning_rate",
str(learning_rate),
"--epochs",
str(epochs),
"--dropout",
str(dropout),
"--batch_size",
str(batch_size),
# other config options
name="trainer",
script="tutorials/early_stopping/mnist_train_nas.py",
image=torchx.version.TORCHX_IMAGE,
)
Ax’s Runner
abstraction allows writing interfaces to various backends.
Ax already comes with Runner for TorchX, so we just need to
configure it. For the purpose of this tutorial, we run jobs locally
in a fully asynchronous fashion. In order to launch them on a cluster, you can instead specify a
different TorchX scheduler and adjust the configuration appropriately.
For example, if you have a Kubernetes cluster, you just need to change the
scheduler from local_cwd
to kubernetes
.
The training job launched by this runner will log partial results to Tensorboard, which will then be monitored by the early stopping strategy. We will show how this is done using an Ax TensorboardCurveMetric below.
# Make a temporary dir to log our results into
log_dir = tempfile.mkdtemp()
ax_runner = TorchXRunner(
tracker_base="/tmp/",
component=trainer,
# NOTE: To launch this job on a cluster instead of locally you can
# specify a different scheduler and adjust args appropriately.
scheduler="local_cwd",
component_const_params={"log_path": log_dir},
cfg={},
)
First, we define our search space. Ax supports both range parameters of type integer and float as well as choice parameters which can have non-numerical types such as strings. We will tune the hidden sizes, learning rate, and dropout parameters.
parameters = [
# NOTE: In a real-world setting, hidden_size_1 and hidden_size_2
# should probably be powers of 2, but in our simple example this
# would mean that num_params can't take on that many values, which
# in turn makes the Pareto frontier look pretty weird.
RangeParameter(
name="hidden_size_1",
lower=16,
upper=128,
parameter_type=ParameterType.INT,
log_scale=True,
),
RangeParameter(
name="hidden_size_2",
lower=16,
upper=128,
parameter_type=ParameterType.INT,
log_scale=True,
),
RangeParameter(
name="learning_rate",
lower=1e-4,
upper=1e-2,
parameter_type=ParameterType.FLOAT,
log_scale=True,
),
RangeParameter(
name="dropout",
lower=0.0,
upper=0.5,
parameter_type=ParameterType.FLOAT,
),
]
search_space = SearchSpace(
parameters=parameters,
# NOTE: In practice, it may make sense to add a constraint
# hidden_size_2 <= hidden_size_1
parameter_constraints=[],
)
Ax has the concept of a Metric that defines properties of outcomes and how observations are obtained for these outcomes. This allows e.g. encodig how data is fetched from some distributed execution backend and post-processed before being passed as input to Ax.
We will optimize the validation accuracy, which is a TensorboardCurveMetric
that points to the logging directory assigned above. Note that we have set is_available_while_running
, allowing for the metric to be queried as the trial progresses. This is critical for the early stopping strategy to monitor partial results.
class MyTensorboardMetric(TensorboardCurveMetric):
# NOTE: We need to tell the new Tensorboard metric how to get the id /
# file handle for the tensorboard logs from a trial. In this case
# our convention is to just save a separate file per trial in
# the pre-specified log dir.
@classmethod
def get_ids_from_trials(cls, trials):
return {
trial.index: Path(log_dir).joinpath(str(trial.index)).as_posix()
for trial in trials
}
# This indicates whether the metric is queryable while the trial is
# still running. This is required for early stopping to monitor the
# progress of the running trial.ArithmeticError
@classmethod
def is_available_while_running(cls):
return True
val_acc = MyTensorboardMetric(
name="val_acc",
curve_name="val_acc",
lower_is_better=False,
)
The OptimizationConfig
specifies the objective for Ax to optimize.
opt_config = OptimizationConfig(
objective=Objective(
metric=val_acc,
minimize=False,
)
)
A PercentileEarlyStoppingStrategy
is a simple method that stops a trial if its performance falls below a certain percentile of other trials at the same step (e.g., when percentile_threshold
is 50, at a given point in time, if a trial ranks in the bottom 50% of trials, it is stopped).
normalize_progressions
which normalizes the progression column (e.g. timestamp, epochs, training data used) to be in [0, 1]. This is useful because one doesn't need to know the maximum progression values of the curve (which might be, e.g., the total number of data points in the training dataset).min_progression
parameter specifies that trials should only be considered for stopping if the latest progression value is greater than this threshold.min_curves
parameter specifies the minimum number of completed curves (i.e., fully completed training jobs) before early stopping will be considered. This should be larger than zero if normalize_progression
is used. In general, we want a few completed curves to have a baseline for comparison.Note that PercentileEarlyStoppingStrategy
does not make use of learning curve modeling or prediction. More sophisticated model-based methods will be available in future versions of Ax.
percentile_early_stopping_strategy = PercentileEarlyStoppingStrategy(
# stop if in bottom 70% of runs at the same progression
percentile_threshold=70,
# the trial must have passed `min_progression` steps before early stopping is initiated
# note that we are using `normalize_progressions`, so this is on a scale of [0, 1]
min_progression=0.3,
# there must be `min_curves` completed trials and `min_curves` trials reporting data in
# order for early stopping to be applicable
min_curves=5,
# specify, e.g., [0, 1] if the first two trials should never be stopped
trial_indices_to_ignore=None,
# check for new data every 10 seconds
seconds_between_polls=10,
normalize_progressions=True,
)
In Ax, the Experiment object is the object that stores all the information about the problem setup.
experiment = Experiment(
name="torchx_mnist",
search_space=search_space,
optimization_config=opt_config,
runner=ax_runner,
)
A GenerationStrategy is the abstract representation of how we would like to perform the optimization. While this can be customized (if you’d like to do so, see this tutorial), in most cases Ax can automatically determine an appropriate strategy based on the search space, optimization config, and the total number of trials we want to run.
Typically, Ax chooses to evaluate a number of random configurations before starting a model-based Bayesian Optimization strategy.
We remark that in Ax, generation strategies and early stopping strategies are separate, a design decision motivated by ease-of-use. However, we should acknowledge that jointly considering generation and stopping using a single strategy would likely be the "proper" formulation.
if SMOKE_TEST:
total_trials = 6
else:
total_trials = 15 # total evaluation budget
gs = choose_generation_strategy(
search_space=experiment.search_space,
optimization_config=experiment.optimization_config,
num_trials=total_trials,
)
[INFO 03-01 18:04:16] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.
[INFO 03-01 18:04:16] ax.modelbridge.dispatch_utils: Calculating the number of remaining initialization trials based on num_initialization_trials=None max_initialization_trials=None num_tunable_parameters=4 num_trials=15 use_batch_trials=False
[INFO 03-01 18:04:16] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=5
[INFO 03-01 18:04:16] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=5
[INFO 03-01 18:04:16] ax.modelbridge.dispatch_utils: `verbose`, `disable_progbar`, and `jit_compile` are not yet supported when using `choose_generation_strategy` with ModularBoTorchModel, dropping these arguments.
[INFO 03-01 18:04:16] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+BoTorch', steps=[Sobol for 5 trials, BoTorch for subsequent trials]). Iterations after 5 will take longer to generate due to model-fitting.
The Scheduler
acts as the loop control for the optimization.
It communicates with the backend to launch trials, check their status, retrieve (partial) results, and importantly for this tutorial, calls the early stopping strategy. If the early stopping strategy suggests a trial to be the stopped, the Scheduler
communicates with the backend to terminate the trial.
The Scheduler
requires the Experiment
and the GenerationStrategy
.
A set of options can be passed in via SchedulerOptions
. Here, we
configure the number of total evaluations as well as max_pending_trials
,
the maximum number of trials that should run concurrently. In our
local setting, this is the number of training jobs running as individual
processes, while in a remote execution setting, this would be the number
of machines you want to use in parallel.
scheduler = Scheduler(
experiment=experiment,
generation_strategy=gs,
options=SchedulerOptions(
total_trials=total_trials,
max_pending_trials=5,
early_stopping_strategy=percentile_early_stopping_strategy,
),
)
[INFO 03-01 18:04:16] Scheduler: `Scheduler` requires experiment to have immutable search space and optimization config. Setting property immutable_search_space_and_opt_config to `True` on experiment.
%%time
scheduler.run_all_trials()
[INFO 03-01 18:04:16] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:04:16] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 03-01 18:04:16] Scheduler: Running trials [0]...
[INFO 03-01 18:04:17] Scheduler: Running trials [1]...
[INFO 03-01 18:04:18] Scheduler: Running trials [2]...
[INFO 03-01 18:04:19] Scheduler: Running trials [3]...
[INFO 03-01 18:04:20] Scheduler: Running trials [4]...
[WARNING 03-01 18:04:21] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 03-01 18:04:21] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:04:21] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:04:21] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/0. Returning without this metric.
[INFO 03-01 18:04:21] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/1. Returning without this metric.
[INFO 03-01 18:04:21] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/2. Returning without this metric.
[INFO 03-01 18:04:21] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/3. Returning without this metric.
[INFO 03-01 18:04:21] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/4. Returning without this metric.
[INFO 03-01 18:04:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:04:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:04:21] Scheduler: Failed to fetch val_acc for trial 0, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:21] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:21] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:21] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:21] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 03-01 18:04:21] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 03-01 18:04:21] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:04:31] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:04:31] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:04:32] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/0. Returning without this metric.
[INFO 03-01 18:04:32] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/1. Returning without this metric.
[INFO 03-01 18:04:32] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/2. Returning without this metric.
[INFO 03-01 18:04:32] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/3. Returning without this metric.
[INFO 03-01 18:04:32] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/4. Returning without this metric.
[INFO 03-01 18:04:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:04:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:04:32] Scheduler: Failed to fetch val_acc for trial 0, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:32] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:32] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:32] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:32] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 03-01 18:04:32] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 03-01 18:04:32] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:04:42] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:04:42] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:04:42] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/0. Returning without this metric.
[INFO 03-01 18:04:42] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/1. Returning without this metric.
[INFO 03-01 18:04:42] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/2. Returning without this metric.
[INFO 03-01 18:04:42] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/3. Returning without this metric.
[INFO 03-01 18:04:42] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/4. Returning without this metric.
[INFO 03-01 18:04:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:04:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:04:42] Scheduler: Failed to fetch val_acc for trial 0, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:42] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:42] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:42] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:42] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:42] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:42] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:42] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:42] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:42] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 03-01 18:04:42] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 03-01 18:04:42] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:04:52] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:04:52] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:04:52] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/0. Returning without this metric.
[INFO 03-01 18:04:52] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/1. Returning without this metric.
[INFO 03-01 18:04:52] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/2. Returning without this metric.
[INFO 03-01 18:04:52] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/3. Returning without this metric.
[INFO 03-01 18:04:52] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/4. Returning without this metric.
[INFO 03-01 18:04:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:04:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:04:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:04:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:04:52] Scheduler: Failed to fetch val_acc for trial 0, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:52] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:52] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:52] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:04:52] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:04:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 03-01 18:04:52] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 03-01 18:04:52] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:05:02] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:05:02] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:05:02] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/0. Returning without this metric.
[INFO 03-01 18:05:02] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/1. Returning without this metric.
[INFO 03-01 18:05:02] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/2. Returning without this metric.
[INFO 03-01 18:05:02] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/3. Returning without this metric.
[INFO 03-01 18:05:02] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/4. Returning without this metric.
[INFO 03-01 18:05:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:05:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:05:02] Scheduler: Failed to fetch val_acc for trial 0, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:02] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:02] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:02] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:02] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:02] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:02] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:02] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:02] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:02] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 03-01 18:05:02] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 03-01 18:05:02] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:05:12] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:05:12] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:05:12] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/0. Returning without this metric.
[INFO 03-01 18:05:12] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/1. Returning without this metric.
[INFO 03-01 18:05:12] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/2. Returning without this metric.
[INFO 03-01 18:05:12] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/3. Returning without this metric.
[INFO 03-01 18:05:12] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/4. Returning without this metric.
[INFO 03-01 18:05:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:05:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:05:12] Scheduler: Failed to fetch val_acc for trial 0, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:12] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:12] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:12] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:12] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 03-01 18:05:12] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 03-01 18:05:12] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:05:22] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:05:22] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:05:22] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/0. Returning without this metric.
[INFO 03-01 18:05:22] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/1. Returning without this metric.
[INFO 03-01 18:05:22] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/2. Returning without this metric.
[INFO 03-01 18:05:22] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/3. Returning without this metric.
[INFO 03-01 18:05:22] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/4. Returning without this metric.
[INFO 03-01 18:05:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:05:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:05:22] Scheduler: Failed to fetch val_acc for trial 0, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:22] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:22] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:22] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:22] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:22] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:22] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:22] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:22] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:22] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 03-01 18:05:22] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 03-01 18:05:22] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:05:32] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:05:32] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:05:32] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/0. Returning without this metric.
[INFO 03-01 18:05:32] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/1. Returning without this metric.
[INFO 03-01 18:05:32] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/2. Returning without this metric.
[INFO 03-01 18:05:32] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/3. Returning without this metric.
[INFO 03-01 18:05:32] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/4. Returning without this metric.
[INFO 03-01 18:05:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:05:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:05:32] Scheduler: Failed to fetch val_acc for trial 0, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:32] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:32] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:32] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:32] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 03-01 18:05:32] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 03-01 18:05:32] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:05:42] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:05:42] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:05:43] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/0. Returning without this metric.
[INFO 03-01 18:05:43] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/1. Returning without this metric.
[INFO 03-01 18:05:43] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/2. Returning without this metric.
[INFO 03-01 18:05:43] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/3. Returning without this metric.
[INFO 03-01 18:05:43] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/4. Returning without this metric.
[INFO 03-01 18:05:43] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:43] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:43] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:43] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:43] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:05:43] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:43] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:43] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:43] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:43] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:05:43] Scheduler: Failed to fetch val_acc for trial 0, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:43] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:43] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:43] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:43] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:43] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:43] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:43] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:43] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:43] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 03-01 18:05:43] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 03-01 18:05:43] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:05:53] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:05:53] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:05:53] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/0. Returning without this metric.
[INFO 03-01 18:05:53] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/1. Returning without this metric.
[INFO 03-01 18:05:53] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/2. Returning without this metric.
[INFO 03-01 18:05:53] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/3. Returning without this metric.
[INFO 03-01 18:05:53] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/4. Returning without this metric.
[INFO 03-01 18:05:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:05:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:05:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:05:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:05:53] Scheduler: Failed to fetch val_acc for trial 0, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:53] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:53] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:53] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:53] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:53] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:53] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:53] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:05:53] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:05:53] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 03-01 18:05:53] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 03-01 18:05:53] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:06:03] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:06:03] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:06:03] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/0. Returning without this metric.
[INFO 03-01 18:06:03] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/2. Returning without this metric.
[INFO 03-01 18:06:03] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/3. Returning without this metric.
[INFO 03-01 18:06:03] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/4. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:06:03] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:06:03] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:06:13] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:06:13] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:06:13] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/0. Returning without this metric.
[INFO 03-01 18:06:13] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/2. Returning without this metric.
[INFO 03-01 18:06:13] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/3. Returning without this metric.
[INFO 03-01 18:06:13] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/4. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:06:13] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:06:13] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:06:23] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:06:23] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:06:23] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/0. Returning without this metric.
[INFO 03-01 18:06:23] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/4. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:06:23] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:06:23] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:06:33] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:06:33] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:06:34] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/4. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:06:34] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:06:34] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:06:44] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:06:44] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:06:44] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:06:44] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:06:54] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:06:54] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:06:54] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:06:54] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:07:04] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:07:04] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:07:05] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:07:05] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:07:15] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:07:15] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:07:15] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:07:15] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:07:25] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:07:25] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:07:25] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:07:25] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:07:35] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:07:35] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:07:36] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:07:36] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:07:46] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:07:46] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:07:46] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:07:46] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:07:56] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:07:56] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:07:56] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:07:56] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:08:06] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:08:06] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:08:07] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:08:07] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:08:17] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:08:17] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:08:17] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:08:17] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:08:27] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:08:27] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:08:27] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:08:27] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:08:37] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:08:37] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:08:38] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:08:38] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:08:48] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:08:48] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:08:48] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:08:48] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:08:58] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:08:58] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:08:58] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:08:58] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:09:08] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:09:08] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:09:09] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:09:09] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:09:19] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:09:19] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:09:19] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:09:19] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:09:29] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:09:29] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:09:29] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:09:29] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:09:39] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:09:39] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:09:39] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:09:39] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:09:49] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:09:49] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:09:50] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:09:50] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:10:00] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:10:00] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:10:00] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:10:00] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:10:10] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:10:10] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:10:10] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:10:10] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:10:20] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:10:20] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:10:21] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:10:21] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:10:31] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:10:31] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:10:31] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:10:31] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:10:41] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:10:41] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:10:41] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:10:41] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:10:51] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:10:51] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:10:52] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:10:52] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:11:02] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:11:02] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:11:02] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:11:02] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:11:12] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:11:12] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:11:12] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:11:12] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:11:22] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:11:22] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:11:23] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:11:23] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:11:33] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:11:33] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 03-01 18:11:33] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:11:33] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:11:43] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:11:43] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:11:43] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:11:43] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:11:53] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:11:53] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:11:54] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:11:54] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:12:04] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:12:04] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:12:04] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:12:04] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:12:14] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:12:14] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:12:14] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:12:14] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:12:24] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:12:24] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:12:24] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:12:24] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:12:35] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:12:35] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:12:35] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:12:35] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:12:45] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:12:45] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:12:45] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:12:45] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:12:55] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:12:55] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:12:55] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:12:55] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:13:05] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:13:05] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:13:06] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:13:06] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:13:16] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:13:16] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:13:16] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:13:16] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:13:26] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:13:26] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:13:26] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:13:26] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:13:36] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:13:36] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:13:37] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:13:37] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:13:47] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:13:47] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:13:47] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:13:47] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:13:57] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:13:57] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:13:57] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:13:57] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:14:07] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:14:07] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:14:08] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:14:08] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:14:18] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:14:18] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:14:18] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:14:18] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:14:28] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:14:28] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:14:28] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:14:28] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:14:38] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:14:38] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:14:39] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:14:39] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:14:49] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:14:49] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:14:49] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:14:49] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:14:59] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:14:59] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:14:59] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:14:59] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:15:09] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:15:09] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:15:10] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:15:10] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:15:20] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:15:20] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:15:20] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:15:20] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:15:30] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:15:30] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:15:30] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:15:30] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:15:40] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:15:40] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:15:40] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:15:41] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:15:51] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:15:51] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:15:51] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:15:51] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:16:01] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:16:01] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 03-01 18:16:01] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:16:01] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:16:11] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:16:11] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:16:11] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:16:11] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:16:21] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:16:21] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:16:22] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:16:22] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:16:32] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:16:32] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:16:32] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:16:32] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:16:42] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:16:42] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:16:42] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:16:42] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:16:52] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:16:52] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:16:53] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:16:53] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:17:03] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:17:03] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:17:03] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:17:03] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:17:13] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:17:13] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:17:13] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:17:13] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:17:23] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:17:23] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:17:24] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:17:24] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:17:34] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:17:34] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:17:34] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:17:34] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:17:44] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:17:44] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:17:44] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:17:44] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:17:54] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:17:54] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:17:55] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:17:55] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:18:05] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:18:05] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:18:05] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:18:05] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:18:15] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:18:15] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:18:15] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:18:15] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:18:25] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:18:25] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:18:26] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:18:26] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:18:36] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:18:36] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:18:36] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:18:36] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:18:46] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:18:46] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:18:46] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:18:46] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:18:56] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:18:56] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:18:57] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:18:57] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:19:07] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:19:07] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:19:07] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:19:07] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:19:17] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:19:17] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:19:17] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:19:17] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:19:27] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:19:27] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:19:28] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:19:28] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:19:38] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:19:38] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:19:38] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:19:38] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:19:48] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:19:48] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:19:48] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:19:48] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:19:58] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:19:58] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:19:59] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[WARNING 03-01 18:19:59] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 03-01 18:19:59] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:19:59] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:19:59] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:19:59] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:20:09] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:20:09] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:20:09] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:20:09] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:20:19] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:20:19] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:20:20] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:20:20] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:20:30] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:20:30] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:20:30] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:20:30] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:20:40] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:20:40] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:20:40] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:20:40] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:20:50] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:20:50] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:20:51] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:20:51] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:21:01] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:21:01] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:21:01] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:21:01] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:21:11] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:21:11] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:21:11] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:21:11] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:21:21] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:21:21] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:21:22] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:21:22] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:21:32] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:21:32] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:21:32] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:21:32] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:21:42] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:21:42] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:21:42] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:21:42] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:21:52] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:21:52] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:21:53] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:21:53] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:22:03] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:22:03] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:22:03] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:22:03] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:22:13] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:22:13] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:22:13] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:22:13] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:22:23] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:22:23] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:22:24] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:22:24] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:22:34] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:22:34] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:22:34] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:22:34] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:22:44] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:22:44] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:22:44] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:22:44] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:22:54] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:22:54] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:22:54] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:22:54] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:23:04] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:23:04] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:23:05] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:23:05] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:23:15] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:23:15] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:23:15] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:23:15] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 03-01 18:23:25] Scheduler: Fetching data for newly completed trials: [1].
[INFO 03-01 18:23:25] Scheduler: Fetching data for trials: [0, 2, 3, 4] because some metrics on experiment are available while trials are running.
[INFO 03-01 18:23:25] Scheduler: Retrieved COMPLETED trials: [1].
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:23:25] ax.early_stopping.strategies.base: The number of completed trials (1) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[WARNING 03-01 18:23:25] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 03-01 18:23:25] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:23:25] Scheduler: Fetching data for trials: [0, 2, 3, 4] because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 03-01 18:23:26] ax.early_stopping.strategies.base: The number of completed trials (1) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:23:26] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 4).
[INFO 03-01 18:23:36] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:23:36] Scheduler: Fetching data for trials: [0, 2, 3, 4] because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:23:36] ax.early_stopping.strategies.base: The number of completed trials (1) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:23:36] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 4).
[INFO 03-01 18:23:46] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:23:46] Scheduler: Fetching data for trials: [0, 2, 3, 4] because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:23:46] ax.early_stopping.strategies.base: The number of completed trials (1) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:23:46] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 4).
[INFO 03-01 18:23:56] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:23:56] Scheduler: Fetching data for trials: [0, 2, 3, 4] because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 03-01 18:23:56] ax.early_stopping.strategies.base: The number of completed trials (1) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:23:56] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 4).
[INFO 03-01 18:24:06] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:24:06] Scheduler: Fetching data for trials: [0, 2, 3, 4] because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:24:07] ax.early_stopping.strategies.base: The number of completed trials (1) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:24:07] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 4).
[INFO 03-01 18:24:17] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:24:17] Scheduler: Fetching data for trials: [0, 2, 3, 4] because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 03-01 18:24:17] ax.early_stopping.strategies.base: The number of completed trials (1) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:24:17] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 4).
[INFO 03-01 18:24:27] Scheduler: Fetching data for newly completed trials: [4].
[INFO 03-01 18:24:27] Scheduler: Fetching data for trials: [0, 2, 3] because some metrics on experiment are available while trials are running.
[INFO 03-01 18:24:27] Scheduler: Retrieved COMPLETED trials: [4].
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:24:27] ax.early_stopping.strategies.base: The number of completed trials (2) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[WARNING 03-01 18:24:27] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 03-01 18:24:27] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:24:27] Scheduler: Fetching data for trials: [0, 2, 3] because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:24:27] ax.early_stopping.strategies.base: The number of completed trials (2) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 03-01 18:24:27] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:24:37] Scheduler: Fetching data for newly completed trials: [0, 2, 3].
[INFO 03-01 18:24:37] Scheduler: Retrieved COMPLETED trials: [0, 2, 3].
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:24:37] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 03-01 18:24:37] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 03-01 18:24:38] Scheduler: Running trials [5]...
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:24:39] ax.modelbridge.torch: The observations are identical to the last set of observations used to fit the model. Skipping model fitting.
[INFO 03-01 18:24:40] Scheduler: Running trials [6]...
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:24:41] ax.modelbridge.torch: The observations are identical to the last set of observations used to fit the model. Skipping model fitting.
[INFO 03-01 18:24:44] Scheduler: Running trials [7]...
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:24:45] ax.modelbridge.torch: The observations are identical to the last set of observations used to fit the model. Skipping model fitting.
[INFO 03-01 18:24:45] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 03-01 18:24:45] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 03-01 18:24:45] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:24:45] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:24:45] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/5. Returning without this metric.
[INFO 03-01 18:24:45] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/6. Returning without this metric.
[INFO 03-01 18:24:45] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/7. Returning without this metric.
[INFO 03-01 18:24:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:24:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:24:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:24:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:24:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:24:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:24:45] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:24:45] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:24:45] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:24:45] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:24:45] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:24:45] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:24:45] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 03-01 18:24:45] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:24:45] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:24:55] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:24:55] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:24:55] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/5. Returning without this metric.
[INFO 03-01 18:24:55] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/6. Returning without this metric.
[INFO 03-01 18:24:55] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/7. Returning without this metric.
[INFO 03-01 18:24:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:24:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:24:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:24:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:24:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:24:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:24:55] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:24:55] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:24:55] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:24:55] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:24:55] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:24:55] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:24:55] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 03-01 18:24:55] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:24:55] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:25:05] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:25:05] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:25:05] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/5. Returning without this metric.
[INFO 03-01 18:25:05] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/6. Returning without this metric.
[INFO 03-01 18:25:05] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/7. Returning without this metric.
[INFO 03-01 18:25:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:25:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:25:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:25:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:25:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:25:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:25:05] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:25:05] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:25:05] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:25:06] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:25:06] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:25:06] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:25:06] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 03-01 18:25:06] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:25:06] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:25:16] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:25:16] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:25:16] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/5. Returning without this metric.
[INFO 03-01 18:25:16] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/6. Returning without this metric.
[INFO 03-01 18:25:16] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/7. Returning without this metric.
[INFO 03-01 18:25:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:25:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:25:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:25:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:25:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:25:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:25:16] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:25:16] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:25:16] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:25:16] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:25:16] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:25:16] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:25:16] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 03-01 18:25:16] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:25:16] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:25:26] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:25:26] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:25:26] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/5. Returning without this metric.
[INFO 03-01 18:25:26] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/6. Returning without this metric.
[INFO 03-01 18:25:26] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/7. Returning without this metric.
[INFO 03-01 18:25:26] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:25:26] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[INFO 03-01 18:25:26] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="DataFrame from curve series is empty")
[ERROR 03-01 18:25:26] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:25:26] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 03-01 18:25:26] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="DataFrame from curve series is empty"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 03-01 18:25:26] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:25:26] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:25:26] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:25:26] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 03-01 18:25:26] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="DataFrame from curve series is empty").
[INFO 03-01 18:25:26] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:25:26] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 03-01 18:25:26] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:25:26] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:25:36] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:25:36] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:25:36] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 03-01 18:25:36] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:25:36] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:25:46] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:25:46] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:25:46] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 03-01 18:25:46] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:25:46] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:25:56] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:25:56] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:25:56] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 03-01 18:25:56] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:25:56] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:26:06] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:26:06] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:26:06] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 03-01 18:26:06] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:26:06] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:26:16] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:26:16] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:26:16] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:26:16] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:26:16] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:26:26] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:26:26] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:26:26] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:26:26] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:26:26] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:26:36] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:26:36] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:26:37] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:26:37] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:26:37] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:26:47] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:26:47] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:26:47] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:26:47] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:26:47] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:26:57] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:26:57] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:26:57] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:26:57] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:26:57] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:27:07] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:27:07] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:27:07] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:27:07] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:27:07] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:27:17] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:27:17] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:27:17] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:27:17] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:27:17] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:27:27] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:27:27] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:27:27] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:27:27] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:27:27] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:27:37] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:27:37] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 03-01 18:27:38] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:27:38] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:27:38] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:27:48] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:27:48] Scheduler: Fetching data for trials: 5 - 7 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:27:48] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 03-01 18:27:48] ax.early_stopping.strategies.percentile: Considering trial 5 for early stopping.
[INFO 03-01 18:27:48] ax.early_stopping.strategies.base: Last progression of Trial 5 is 0.3999466666666667.
[INFO 03-01 18:27:48] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:27:48] ax.early_stopping.strategies.percentile: Early stopping decision for 5: False. Reason: Trial objective value 0.9681462049484253 is better than 70.0-th percentile (0.9668116688728332) across comparable trials.
[INFO 03-01 18:27:48] ax.early_stopping.strategies.percentile: Considering trial 6 for early stopping.
[INFO 03-01 18:27:48] ax.early_stopping.strategies.base: Last progression of Trial 6 is 0.3999466666666667.
[INFO 03-01 18:27:48] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:27:48] ax.early_stopping.strategies.percentile: Early stopping decision for 6: True. Reason: Trial objective value 0.9466980695724487 is worse than 70.0-th percentile (0.9668116688728332) across comparable trials.
[INFO 03-01 18:27:48] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 03-01 18:27:48] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.3999466666666667.
[INFO 03-01 18:27:48] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:27:48] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.966842770576477 is better than 70.0-th percentile (0.9668116688728332) across comparable trials.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[WARNING 03-01 18:27:49] ax.models.torch.botorch_modular.acquisition: Encountered Xs pending for some Surrogates but observed for others. Considering these points to be pending.
[INFO 03-01 18:27:54] Scheduler: Running trials [8]...
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:27:54] ax.modelbridge.torch: The observations are identical to the last set of observations used to fit the model. Skipping model fitting.
[INFO 03-01 18:27:54] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 03-01 18:27:54] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 03-01 18:27:54] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:27:54] Scheduler: Fetching data for trials: [5, 7, 8] because some metrics on experiment are available while trials are running.
[INFO 03-01 18:27:54] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/8. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 03-01 18:27:54] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 03-01 18:27:54] ax.early_stopping.strategies.percentile: Considering trial 5 for early stopping.
[INFO 03-01 18:27:54] ax.early_stopping.strategies.base: Last progression of Trial 5 is 0.3999466666666667.
[INFO 03-01 18:27:54] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:27:54] ax.early_stopping.strategies.percentile: Early stopping decision for 5: False. Reason: Trial objective value 0.9681462049484253 is better than 70.0-th percentile (0.9668116688728332) across comparable trials.
[INFO 03-01 18:27:54] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 03-01 18:27:54] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.3999466666666667.
[INFO 03-01 18:27:54] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:27:54] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.966842770576477 is better than 70.0-th percentile (0.9668116688728332) across comparable trials.
[INFO 03-01 18:27:54] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 03-01 18:27:54] ax.early_stopping.strategies.base: There is not yet any data associated with trial 8 and metric val_acc. Not early stopping this trial.
[INFO 03-01 18:27:54] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:28:04] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:28:04] Scheduler: Fetching data for trials: [5, 7, 8] because some metrics on experiment are available while trials are running.
[INFO 03-01 18:28:04] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/8. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:28:04] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 03-01 18:28:04] ax.early_stopping.strategies.percentile: Considering trial 5 for early stopping.
[INFO 03-01 18:28:04] ax.early_stopping.strategies.base: Last progression of Trial 5 is 0.3999466666666667.
[INFO 03-01 18:28:04] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:28:04] ax.early_stopping.strategies.percentile: Early stopping decision for 5: False. Reason: Trial objective value 0.9681462049484253 is better than 70.0-th percentile (0.9668116688728332) across comparable trials.
[INFO 03-01 18:28:04] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 03-01 18:28:04] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.3999466666666667.
[INFO 03-01 18:28:04] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:28:04] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.966842770576477 is better than 70.0-th percentile (0.9668116688728332) across comparable trials.
[INFO 03-01 18:28:04] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 03-01 18:28:04] ax.early_stopping.strategies.base: There is not yet any data associated with trial 8 and metric val_acc. Not early stopping this trial.
[INFO 03-01 18:28:04] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:28:14] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:28:14] Scheduler: Fetching data for trials: [5, 7, 8] because some metrics on experiment are available while trials are running.
[INFO 03-01 18:28:14] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/8. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:28:14] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 03-01 18:28:15] ax.early_stopping.strategies.percentile: Considering trial 5 for early stopping.
[INFO 03-01 18:28:15] ax.early_stopping.strategies.base: Last progression of Trial 5 is 0.3999466666666667.
[INFO 03-01 18:28:15] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:28:15] ax.early_stopping.strategies.percentile: Early stopping decision for 5: False. Reason: Trial objective value 0.9681462049484253 is better than 70.0-th percentile (0.9668116688728332) across comparable trials.
[INFO 03-01 18:28:15] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 03-01 18:28:15] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.3999466666666667.
[INFO 03-01 18:28:15] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:28:15] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.966842770576477 is better than 70.0-th percentile (0.9668116688728332) across comparable trials.
[INFO 03-01 18:28:15] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 03-01 18:28:15] ax.early_stopping.strategies.base: There is not yet any data associated with trial 8 and metric val_acc. Not early stopping this trial.
[INFO 03-01 18:28:15] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:28:25] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:28:25] Scheduler: Fetching data for trials: [5, 7, 8] because some metrics on experiment are available while trials are running.
[INFO 03-01 18:28:25] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/8. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:28:25] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 03-01 18:28:25] ax.early_stopping.strategies.percentile: Considering trial 5 for early stopping.
[INFO 03-01 18:28:25] ax.early_stopping.strategies.base: Last progression of Trial 5 is 0.49994666666666665.
[INFO 03-01 18:28:25] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.970439 1 0.889782 2 0.953380 3 0.961892 4 0.946025 5 0.972063 7 0.959552 Name: 0.49994666666666665, dtype: float64.
[INFO 03-01 18:28:25] ax.early_stopping.strategies.percentile: Early stopping decision for 5: False. Reason: Trial objective value 0.9720627069473267 is better than 70.0-th percentile (0.9636016845703125) across comparable trials.
[INFO 03-01 18:28:25] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 03-01 18:28:25] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.49994666666666665.
[INFO 03-01 18:28:25] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.970439 1 0.889782 2 0.953380 3 0.961892 4 0.946025 5 0.972063 7 0.959552 Name: 0.49994666666666665, dtype: float64.
[INFO 03-01 18:28:25] ax.early_stopping.strategies.percentile: Early stopping decision for 7: True. Reason: Trial objective value 0.9595524668693542 is worse than 70.0-th percentile (0.9636016845703125) across comparable trials.
[INFO 03-01 18:28:25] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 03-01 18:28:25] ax.early_stopping.strategies.base: There is not yet any data associated with trial 8 and metric val_acc. Not early stopping this trial.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[WARNING 03-01 18:28:26] ax.models.torch.botorch_modular.acquisition: Encountered Xs pending for some Surrogates but observed for others. Considering these points to be pending.
[INFO 03-01 18:28:31] Scheduler: Running trials [9]...
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:28:32] ax.modelbridge.torch: The observations are identical to the last set of observations used to fit the model. Skipping model fitting.
[INFO 03-01 18:28:32] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 03-01 18:28:32] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 03-01 18:28:32] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:28:32] Scheduler: Fetching data for trials: [5, 8, 9] because some metrics on experiment are available while trials are running.
[INFO 03-01 18:28:32] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/8. Returning without this metric.
[INFO 03-01 18:28:32] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/9. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:28:32] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 03-01 18:28:32] ax.early_stopping.strategies.percentile: Considering trial 5 for early stopping.
[INFO 03-01 18:28:32] ax.early_stopping.strategies.base: Last progression of Trial 5 is 0.49994666666666665.
[INFO 03-01 18:28:32] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.970439 1 0.889782 2 0.953380 3 0.961892 4 0.946025 5 0.972063 7 0.959552 Name: 0.49994666666666665, dtype: float64.
[INFO 03-01 18:28:32] ax.early_stopping.strategies.percentile: Early stopping decision for 5: False. Reason: Trial objective value 0.9720627069473267 is better than 70.0-th percentile (0.9636016845703125) across comparable trials.
[INFO 03-01 18:28:32] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 03-01 18:28:32] ax.early_stopping.strategies.base: There is not yet any data associated with trial 8 and metric val_acc. Not early stopping this trial.
[INFO 03-01 18:28:32] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 03-01 18:28:32] ax.early_stopping.strategies.base: There is not yet any data associated with trial 9 and metric val_acc. Not early stopping this trial.
[INFO 03-01 18:28:32] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:28:42] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:28:42] Scheduler: Fetching data for trials: [5, 8, 9] because some metrics on experiment are available while trials are running.
[INFO 03-01 18:28:42] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/8. Returning without this metric.
[INFO 03-01 18:28:42] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/9. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:28:42] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 03-01 18:28:42] ax.early_stopping.strategies.percentile: Considering trial 5 for early stopping.
[INFO 03-01 18:28:42] ax.early_stopping.strategies.base: Last progression of Trial 5 is 0.49994666666666665.
[INFO 03-01 18:28:42] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.970439 1 0.889782 2 0.953380 3 0.961892 4 0.946025 5 0.972063 7 0.959552 Name: 0.49994666666666665, dtype: float64.
[INFO 03-01 18:28:42] ax.early_stopping.strategies.percentile: Early stopping decision for 5: False. Reason: Trial objective value 0.9720627069473267 is better than 70.0-th percentile (0.9636016845703125) across comparable trials.
[INFO 03-01 18:28:42] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 03-01 18:28:42] ax.early_stopping.strategies.base: There is not yet any data associated with trial 8 and metric val_acc. Not early stopping this trial.
[INFO 03-01 18:28:42] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 03-01 18:28:42] ax.early_stopping.strategies.base: There is not yet any data associated with trial 9 and metric val_acc. Not early stopping this trial.
[INFO 03-01 18:28:42] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:28:52] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:28:53] Scheduler: Fetching data for trials: [5, 8, 9] because some metrics on experiment are available while trials are running.
[INFO 03-01 18:28:53] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/9. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:28:53] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 03-01 18:28:53] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 03-01 18:28:53] ax.early_stopping.strategies.percentile: Considering trial 5 for early stopping.
[INFO 03-01 18:28:53] ax.early_stopping.strategies.base: Last progression of Trial 5 is 0.49994666666666665.
[INFO 03-01 18:28:53] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.970439 1 0.889782 2 0.953380 3 0.961892 4 0.946025 5 0.972063 7 0.959552 Name: 0.49994666666666665, dtype: float64.
[INFO 03-01 18:28:53] ax.early_stopping.strategies.percentile: Early stopping decision for 5: False. Reason: Trial objective value 0.9720627069473267 is better than 70.0-th percentile (0.9636016845703125) across comparable trials.
[INFO 03-01 18:28:53] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 03-01 18:28:53] ax.early_stopping.strategies.base: Last progression of Trial 8 is 0.09994666666666667.
[INFO 03-01 18:28:53] ax.early_stopping.strategies.base: Trial 8's most recent progression (0.09994666666666667) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 03-01 18:28:53] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 03-01 18:28:53] ax.early_stopping.strategies.base: There is not yet any data associated with trial 9 and metric val_acc. Not early stopping this trial.
[INFO 03-01 18:28:53] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:29:03] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:29:03] Scheduler: Fetching data for trials: [5, 8, 9] because some metrics on experiment are available while trials are running.
[INFO 03-01 18:29:03] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/9. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:29:03] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 03-01 18:29:03] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 03-01 18:29:03] ax.early_stopping.strategies.percentile: Considering trial 5 for early stopping.
[INFO 03-01 18:29:03] ax.early_stopping.strategies.base: Last progression of Trial 5 is 0.5999466666666666.
[INFO 03-01 18:29:03] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.971392 1 0.882816 2 0.954960 3 0.964900 4 0.944120 5 0.959000 Name: 0.5999466666666666, dtype: float64.
[INFO 03-01 18:29:03] ax.early_stopping.strategies.percentile: Early stopping decision for 5: True. Reason: Trial objective value 0.9589998126029968 is worse than 70.0-th percentile (0.9619500041007996) across comparable trials.
[INFO 03-01 18:29:03] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 03-01 18:29:03] ax.early_stopping.strategies.base: Last progression of Trial 8 is 0.09994666666666667.
[INFO 03-01 18:29:03] ax.early_stopping.strategies.base: Trial 8's most recent progression (0.09994666666666667) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 03-01 18:29:03] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 03-01 18:29:03] ax.early_stopping.strategies.base: There is not yet any data associated with trial 9 and metric val_acc. Not early stopping this trial.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[WARNING 03-01 18:29:04] ax.models.torch.botorch_modular.acquisition: Encountered Xs pending for some Surrogates but observed for others. Considering these points to be pending.
[INFO 03-01 18:29:07] Scheduler: Running trials [10]...
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:29:08] ax.modelbridge.torch: The observations are identical to the last set of observations used to fit the model. Skipping model fitting.
[INFO 03-01 18:29:08] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 03-01 18:29:08] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 03-01 18:29:08] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:29:08] Scheduler: Fetching data for trials: 8 - 10 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:29:08] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/9. Returning without this metric.
[INFO 03-01 18:29:08] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/10. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:29:08] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 03-01 18:29:08] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:29:08] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:29:18] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:29:18] Scheduler: Fetching data for trials: 8 - 10 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:29:18] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/10. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:29:18] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 03-01 18:29:18] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:29:18] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:29:28] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:29:28] Scheduler: Fetching data for trials: 8 - 10 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:29:28] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/10. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:29:28] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 03-01 18:29:28] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:29:28] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:29:38] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:29:38] Scheduler: Fetching data for trials: 8 - 10 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:29:38] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/10. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:29:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:29:39] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:29:39] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:29:49] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:29:49] Scheduler: Fetching data for trials: 8 - 10 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:29:49] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/10. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:29:49] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:29:49] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:29:49] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:29:59] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:29:59] Scheduler: Fetching data for trials: 8 - 10 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:29:59] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:29:59] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:29:59] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:30:09] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:30:09] Scheduler: Fetching data for trials: 8 - 10 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:30:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:30:09] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:30:09] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:30:19] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:30:19] Scheduler: Fetching data for trials: 8 - 10 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:30:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:30:19] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:30:19] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:30:29] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:30:29] Scheduler: Fetching data for trials: 8 - 10 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:30:29] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:30:29] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:30:29] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:30:39] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:30:39] Scheduler: Fetching data for trials: 8 - 10 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:30:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:30:39] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:30:39] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:30:49] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:30:49] Scheduler: Fetching data for trials: 8 - 10 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:30:50] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:30:50] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:30:50] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:31:00] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:31:00] Scheduler: Fetching data for trials: 8 - 10 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:31:00] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:31:00] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:31:00] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:31:10] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:31:10] Scheduler: Fetching data for trials: 8 - 10 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:31:10] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:31:10] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:31:10] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:31:20] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:31:20] Scheduler: Fetching data for trials: 8 - 10 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:31:20] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 03-01 18:31:20] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 03-01 18:31:20] ax.early_stopping.strategies.base: Last progression of Trial 8 is 0.3999466666666667.
[INFO 03-01 18:31:20] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 8 0.962369 9 0.960863 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:31:20] ax.early_stopping.strategies.percentile: Early stopping decision for 8: True. Reason: Trial objective value 0.9623690247535706 is worse than 70.0-th percentile (0.9666250586509705) across comparable trials.
[INFO 03-01 18:31:20] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 03-01 18:31:20] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 03-01 18:31:20] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 8 0.962369 9 0.960863 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:31:20] ax.early_stopping.strategies.percentile: Early stopping decision for 9: True. Reason: Trial objective value 0.9608628153800964 is worse than 70.0-th percentile (0.9666250586509705) across comparable trials.
[INFO 03-01 18:31:20] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 03-01 18:31:20] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.19994666666666666.
[INFO 03-01 18:31:20] ax.early_stopping.strategies.base: Trial 10's most recent progression (0.19994666666666666) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [WARNING 03-01 18:31:22] ax.models.torch.botorch_modular.acquisition: Encountered Xs pending for some Surrogates but observed for others. Considering these points to be pending.
[INFO 03-01 18:31:23] Scheduler: Running trials [11]...
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:31:24] ax.modelbridge.torch: The observations are identical to the last set of observations used to fit the model. Skipping model fitting.
[WARNING 03-01 18:31:24] ax.models.torch.botorch_modular.acquisition: Encountered Xs pending for some Surrogates but observed for others. Considering these points to be pending.
[INFO 03-01 18:31:28] Scheduler: Running trials [12]...
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:31:29] ax.modelbridge.torch: The observations are identical to the last set of observations used to fit the model. Skipping model fitting.
[INFO 03-01 18:31:29] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 03-01 18:31:29] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 03-01 18:31:29] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:31:29] Scheduler: Fetching data for trials: 10 - 12 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:31:29] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/11. Returning without this metric.
[INFO 03-01 18:31:29] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/12. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:31:29] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:31:29] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:31:29] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:31:39] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:31:39] Scheduler: Fetching data for trials: 10 - 12 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:31:39] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/11. Returning without this metric.
[INFO 03-01 18:31:39] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/12. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:31:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:31:39] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:31:39] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:31:49] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:31:49] Scheduler: Fetching data for trials: 10 - 12 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:31:49] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/11. Returning without this metric.
[INFO 03-01 18:31:49] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/12. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:31:49] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:31:49] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:31:49] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:31:59] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:31:59] Scheduler: Fetching data for trials: 10 - 12 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:31:59] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/11. Returning without this metric.
[INFO 03-01 18:31:59] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/12. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:31:59] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:31:59] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:31:59] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:32:09] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:32:09] Scheduler: Fetching data for trials: 10 - 12 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:32:09] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/11. Returning without this metric.
[INFO 03-01 18:32:09] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/12. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:32:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 03-01 18:32:09] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 03-01 18:32:09] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 03-01 18:32:09] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 8 0.962369 9 0.960863 10 0.965990 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:32:09] ax.early_stopping.strategies.percentile: Early stopping decision for 10: True. Reason: Trial objective value 0.9659903049468994 is worse than 70.0-th percentile (0.9665317535400391) across comparable trials.
[INFO 03-01 18:32:09] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 03-01 18:32:09] ax.early_stopping.strategies.base: There is not yet any data associated with trial 11 and metric val_acc. Not early stopping this trial.
[INFO 03-01 18:32:09] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 03-01 18:32:09] ax.early_stopping.strategies.base: There is not yet any data associated with trial 12 and metric val_acc. Not early stopping this trial.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 03-01 18:32:13] Scheduler: Running trials [13]...
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:32:14] ax.modelbridge.torch: The observations are identical to the last set of observations used to fit the model. Skipping model fitting.
[INFO 03-01 18:32:14] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 03-01 18:32:14] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 03-01 18:32:14] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:32:14] Scheduler: Fetching data for trials: 11 - 13 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:32:14] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/13. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:32:14] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 03-01 18:32:14] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:32:14] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:32:24] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:32:24] Scheduler: Fetching data for trials: 11 - 13 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:32:24] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/13. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:32:24] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 03-01 18:32:24] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:32:24] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:32:34] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:32:34] Scheduler: Fetching data for trials: 11 - 13 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:32:34] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/13. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:32:34] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 03-01 18:32:34] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:32:34] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:32:44] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:32:44] Scheduler: Fetching data for trials: 11 - 13 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:32:44] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/13. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:32:44] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 03-01 18:32:44] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:32:44] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:32:55] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:32:55] Scheduler: Fetching data for trials: 11 - 13 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:32:55] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/13. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:32:55] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:32:55] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:32:55] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:33:05] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:33:05] Scheduler: Fetching data for trials: 11 - 13 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:33:05] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/13. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:33:05] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:33:05] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:33:05] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:33:15] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:33:15] Scheduler: Fetching data for trials: 11 - 13 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:33:15] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:33:15] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:33:15] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:33:25] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:33:25] Scheduler: Fetching data for trials: 11 - 13 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:33:25] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:33:25] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:33:25] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:33:35] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:33:35] Scheduler: Fetching data for trials: 11 - 13 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:33:35] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:33:35] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:33:35] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:33:45] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:33:45] Scheduler: Fetching data for trials: 11 - 13 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:33:45] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:33:45] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:33:45] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:33:55] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:33:55] Scheduler: Fetching data for trials: 11 - 13 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:33:55] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:33:55] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:33:55] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:34:05] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:34:05] Scheduler: Fetching data for trials: 11 - 13 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:34:06] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:34:06] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:34:06] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:34:16] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:34:16] Scheduler: Fetching data for trials: 11 - 13 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:34:16] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 03-01 18:34:16] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 03-01 18:34:16] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 03-01 18:34:16] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 8 0.962369 9 0.960863 10 0.965990 11 0.961767 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:34:16] ax.early_stopping.strategies.percentile: Early stopping decision for 11: True. Reason: Trial objective value 0.96176677942276 is worse than 70.0-th percentile (0.9663693189620972) across comparable trials.
[INFO 03-01 18:34:16] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 03-01 18:34:16] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 03-01 18:34:16] ax.early_stopping.strategies.base: Trial 12's most recent progression (0.29994666666666664) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 03-01 18:34:16] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 03-01 18:34:16] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 03-01 18:34:16] ax.early_stopping.strategies.base: Trial 13's most recent progression (0.19994666666666666) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[WARNING 03-01 18:34:17] ax.models.torch.botorch_modular.acquisition: Encountered Xs pending for some Surrogates but observed for others. Considering these points to be pending.
[INFO 03-01 18:34:22] Scheduler: Running trials [14]...
[WARNING 03-01 18:34:22] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 03-01 18:34:22] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:34:22] Scheduler: Fetching data for trials: 12 - 14 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:34:22] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/14. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:34:22] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:34:22] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:34:22] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 03-01 18:34:32] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:34:32] Scheduler: Fetching data for trials: 12 - 14 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:34:32] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/14. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:34:32] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 03-01 18:34:32] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 03-01 18:34:32] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.3999466666666667.
[INFO 03-01 18:34:32] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 8 0.962369 9 0.960863 10 0.965990 11 0.961767 12 0.963500 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:34:32] ax.early_stopping.strategies.percentile: Early stopping decision for 12: True. Reason: Trial objective value 0.9635002017021179 is worse than 70.0-th percentile (0.9662068843841553) across comparable trials.
[INFO 03-01 18:34:32] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 03-01 18:34:32] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 03-01 18:34:32] ax.early_stopping.strategies.base: Trial 13's most recent progression (0.29994666666666664) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 03-01 18:34:32] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 03-01 18:34:32] ax.early_stopping.strategies.base: There is not yet any data associated with trial 14 and metric val_acc. Not early stopping this trial.
[INFO 03-01 18:34:33] Scheduler: Done submitting trials, waiting for remaining 2 running trials...
[WARNING 03-01 18:34:33] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 03-01 18:34:33] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:34:33] Scheduler: Fetching data for trials: 13 - 14 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:34:33] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/14. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:34:33] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:34:33] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:34:33] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 2).
[INFO 03-01 18:34:43] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:34:43] Scheduler: Fetching data for trials: 13 - 14 because some metrics on experiment are available while trials are running.
[INFO 03-01 18:34:43] ax.metrics.curve: val_acc not yet present in curves from /tmp/tmp3o86bad6/14. Returning without this metric.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:34:43] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:34:43] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:34:43] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 2).
[INFO 03-01 18:34:53] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:34:53] Scheduler: Fetching data for trials: 13 - 14 because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:34:53] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 03-01 18:34:53] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 03-01 18:34:53] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 03-01 18:34:53] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 03-01 18:34:53] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 8 0.962369 9 0.960863 10 0.965990 11 0.961767 12 0.963500 13 0.962738 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:34:53] ax.early_stopping.strategies.percentile: Early stopping decision for 13: True. Reason: Trial objective value 0.962737500667572 is worse than 70.0-th percentile (0.9660444498062134) across comparable trials.
[INFO 03-01 18:34:53] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 03-01 18:34:53] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 03-01 18:34:53] ax.early_stopping.strategies.base: Trial 14's most recent progression (0.09994666666666667) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[WARNING 03-01 18:34:54] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 03-01 18:34:54] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:34:54] Scheduler: Fetching data for trials: [14] because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:34:54] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 03-01 18:34:54] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:34:54] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
[INFO 03-01 18:35:04] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:35:04] Scheduler: Fetching data for trials: [14] because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:35:04] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 03-01 18:35:04] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:35:04] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
[INFO 03-01 18:35:14] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:35:14] Scheduler: Fetching data for trials: [14] because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:35:14] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 03-01 18:35:14] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:35:14] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
[INFO 03-01 18:35:24] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:35:24] Scheduler: Fetching data for trials: [14] because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:35:24] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:35:24] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:35:24] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
[INFO 03-01 18:35:34] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:35:34] Scheduler: Fetching data for trials: [14] because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:35:34] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 03-01 18:35:34] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 03-01 18:35:34] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
[INFO 03-01 18:35:44] Scheduler: Fetching data for newly completed trials: [].
[INFO 03-01 18:35:44] Scheduler: Fetching data for trials: [14] because some metrics on experiment are available while trials are running.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 03-01 18:35:44] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 03-01 18:35:44] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 03-01 18:35:44] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.3999466666666667.
[INFO 03-01 18:35:44] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 0 0.968049 1 0.886844 2 0.940627 3 0.966532 4 0.946419 5 0.968146 6 0.946698 7 0.966843 8 0.962369 9 0.960863 10 0.965990 11 0.961767 12 0.963500 13 0.962738 14 0.963592 Name: 0.3999466666666667, dtype: float64.
[INFO 03-01 18:35:44] ax.early_stopping.strategies.percentile: Early stopping decision for 14: True. Reason: Trial objective value 0.963591992855072 is worse than 70.0-th percentile (0.9655106425285339) across comparable trials.
[WARNING 03-01 18:35:45] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
CPU times: user 1min 1s, sys: 1.68 s, total: 1min 3s Wall time: 31min 28s
OptimizationResult()
First, we examine the data stored on the experiment. This shows that each trial is associated with an entire learning curve, represented by the column "steps".
experiment.lookup_data().map_df.head(n=10)
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
arm_name | metric_name | mean | sem | trial_index | steps | |
---|---|---|---|---|---|---|
0 | 0_0 | val_acc | 0.937576 | NaN | 0 | 1874.0 |
1 | 0_0 | val_acc | 0.954682 | NaN | 0 | 3749.0 |
2 | 0_0 | val_acc | 0.963626 | NaN | 0 | 5624.0 |
3 | 0_0 | val_acc | 0.968049 | NaN | 0 | 7499.0 |
4 | 0_0 | val_acc | 0.970439 | NaN | 0 | 9374.0 |
5 | 0_0 | val_acc | 0.971392 | NaN | 0 | 11249.0 |
6 | 0_0 | val_acc | 0.972696 | NaN | 0 | 13124.0 |
7 | 0_0 | val_acc | 0.973414 | NaN | 0 | 14999.0 |
8 | 0_0 | val_acc | 0.974881 | NaN | 0 | 16874.0 |
9 | 0_0 | val_acc | 0.976351 | NaN | 0 | 18749.0 |
Below is a summary of the experiment, showing that a portion of trials have been early stopped.
exp_to_df(experiment)
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [WARNING 03-01 18:35:45] ax.service.utils.report_utils: Column reason missing for all trials. Not appending column.
trial_index | arm_name | trial_status | generation_method | val_acc | hidden_size_1 | hidden_size_2 | learning_rate | dropout | |
---|---|---|---|---|---|---|---|---|---|
0 | 0 | 0_0 | COMPLETED | Sobol | 0.976351 | 112 | 27 | 0.000426 | 0.052168 |
1 | 1 | 1_0 | COMPLETED | Sobol | 0.897018 | 23 | 16 | 0.001847 | 0.448658 |
2 | 2 | 2_0 | COMPLETED | Sobol | 0.965397 | 74 | 113 | 0.002271 | 0.170683 |
3 | 3 | 3_0 | COMPLETED | Sobol | 0.972456 | 73 | 64 | 0.000546 | 0.175394 |
4 | 4 | 4_0 | COMPLETED | Sobol | 0.947862 | 23 | 99 | 0.001622 | 0.126724 |
5 | 5 | 5_0 | EARLY_STOPPED | BoTorch | 0.959000 | 119 | 53 | 0.000802 | 0.070037 |
6 | 6 | 6_0 | EARLY_STOPPED | BoTorch | 0.946698 | 81 | 33 | 0.000145 | 0.113841 |
7 | 7 | 7_0 | EARLY_STOPPED | BoTorch | 0.959552 | 81 | 26 | 0.001602 | 0.086228 |
8 | 8 | 8_0 | EARLY_STOPPED | BoTorch | 0.962369 | 128 | 27 | 0.000758 | 0.145119 |
9 | 9 | 9_0 | EARLY_STOPPED | BoTorch | 0.960863 | 82 | 44 | 0.000581 | 0.000000 |
10 | 10 | 10_0 | EARLY_STOPPED | BoTorch | 0.965990 | 110 | 18 | 0.000512 | 0.000000 |
11 | 11 | 11_0 | EARLY_STOPPED | BoTorch | 0.961767 | 87 | 70 | 0.001064 | 0.258528 |
12 | 12 | 12_0 | EARLY_STOPPED | BoTorch | 0.963500 | 69 | 116 | 0.000589 | 0.129714 |
13 | 13 | 13_0 | EARLY_STOPPED | BoTorch | 0.962738 | 78 | 31 | 0.000551 | 0.134143 |
14 | 14 | 14_0 | EARLY_STOPPED | BoTorch | 0.963592 | 128 | 27 | 0.000536 | 0.000000 |
We can give a very rough estimate of the amount of computational savings due to early stopping, by looking at the total number of steps used when early stopping is used versus the number of steps used if we ran all trials to completion. Note to do a true comparison, one should run full HPO loops with and without early stopping (as early stopping will influence the model and future points selected by the generation strategy).
map_df = experiment.lookup_data().map_df
trial_to_max_steps = map_df.groupby("trial_index")["steps"].max()
completed_trial_steps = trial_to_max_steps.iloc[0]
savings = 1.0 - trial_to_max_steps.sum() / (
completed_trial_steps * len(trial_to_max_steps)
)
# TODO format nicer
print(f"A rough estimate of the computational savings is {100 * savings}%.")
A rough estimate of the computational savings is 38.00355555555556%.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
Finally, we show a visualization of learning curves versus actual elapsed wall time. This helps to illustrate that stopped trials make room for additional trials to be run.
# helper function for getting trial start times
def time_started(row):
trial_index = row["trial_index"]
return experiment.trials[trial_index].time_run_started
# helper function for getting trial completion times
def time_completed(row):
trial_index = row["trial_index"]
return experiment.trials[trial_index].time_completed
# helper function for getting relevant data from experiment
# with early stopping into useful dfs
def early_stopping_exp_to_df(experiment):
trials_df = exp_to_df(experiment)
curve_df = experiment.lookup_data().map_df
training_row_df = (
curve_df.groupby("trial_index").max().reset_index()[["trial_index", "steps"]]
)
trials_df = trials_df.merge(training_row_df, on="trial_index")
trials_df["time_started"] = trials_df.apply(func=time_started, axis=1)
trials_df["time_completed"] = trials_df.apply(func=time_completed, axis=1)
start_time = trials_df["time_started"].min()
trials_df["time_started_rel"] = (
trials_df["time_started"] - start_time
).dt.total_seconds()
trials_df["time_completed_rel"] = (
trials_df["time_completed"] - start_time
).dt.total_seconds()
return trials_df, curve_df
def plot_curves_by_wall_time(trials_df, curve_df):
trials = set(curve_df["trial_index"])
fig, ax = plt.subplots(1, 1, figsize=(10, 6))
ax.set(xlabel="seconds since start", ylabel="validation accuracy")
for trial_index in trials:
this_trial_df = curve_df[curve_df["trial_index"] == trial_index]
start_time_rel = trials_df["time_started_rel"].iloc[trial_index]
completed_time_rel = trials_df["time_completed_rel"].iloc[trial_index]
total_steps = trials_df.loc[trial_index, "steps"]
smoothed_curve = this_trial_df["mean"].rolling(window=3).mean()
x = (
start_time_rel
+ (completed_time_rel - start_time_rel)
/ total_steps
* this_trial_df["steps"]
)
ax.plot(
x,
smoothed_curve,
label=f"trial #{trial_index}" if trial_index % 2 == 1 else None,
)
ax.legend()
# wrap in try/except in case of flaky I/O issues
try:
trials_df, curve_df = early_stopping_exp_to_df(experiment)
plot_curves_by_wall_time(trials_df, curve_df)
except Exception as e:
print(f"Encountered exception while plotting results: {e}")
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [WARNING 03-01 18:35:46] ax.service.utils.report_utils: Column reason missing for all trials. Not appending column.
/tmp/tmp.KbiES6I0qN/Ax-main/ax/core/map_data.py:188: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
Total runtime of script: 31 minutes, 37.8 seconds.