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 TensorboardMetric
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 tensorboard.backend.event_processing import plugin_event_multiplexer as event_multiplexer
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 TensorboardMetric 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 TensorboardMetric 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(TensorboardMetric):
# 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.
def _get_event_multiplexer_for_trial(self, trial):
mul = event_multiplexer.EventMultiplexer(max_reload_threads=20)
mul.AddRunsFromDirectory(Path(log_dir).joinpath(str(trial.index)).as_posix(), None)
mul.Reload()
return mul
# 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",
tag="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 12-13 06:44:53] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.
[INFO 12-13 06:44:53] 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 12-13 06:44:53] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=5
[INFO 12-13 06:44:53] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=5
[INFO 12-13 06:44:53] 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 12-13 06:44:53] 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 12-13 06:44:53] 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 12-13 06:44:53] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.
warn("Encountered exception in computing model fit quality: " + str(e))
[INFO 12-13 06:44:53] Scheduler: Running trials [0]...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.
warn("Encountered exception in computing model fit quality: " + str(e))
[INFO 12-13 06:44:54] Scheduler: Running trials [1]...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.
warn("Encountered exception in computing model fit quality: " + str(e))
[INFO 12-13 06:44:55] Scheduler: Running trials [2]...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.
warn("Encountered exception in computing model fit quality: " + str(e))
[INFO 12-13 06:44:56] Scheduler: Running trials [3]...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.
warn("Encountered exception in computing model fit quality: " + str(e))
[INFO 12-13 06:44:56] Scheduler: Running trials [4]...
[WARNING 12-13 06:44:57] 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 12-13 06:44:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8be0>")
[INFO 12-13 06:44:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e80a0>")
[INFO 12-13 06:44:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e84f0>")
[INFO 12-13 06:44:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8400>")
[INFO 12-13 06:44:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9de0>")
[ERROR 12-13 06:44:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8be0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:44:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e80a0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:44:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e84f0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:44:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8400>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:44:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9de0>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 06:44:57] Scheduler: Failed to fetch val_acc for trial 0, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8be0>").
[INFO 12-13 06:44:57] 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 12-13 06:44:57] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e80a0>").
[INFO 12-13 06:44:57] 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 12-13 06:44:57] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e84f0>").
[INFO 12-13 06:44:57] 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 12-13 06:44:57] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8400>").
[INFO 12-13 06:44:57] 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 12-13 06:44:57] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9de0>").
[INFO 12-13 06:44:57] 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 12-13 06:44:57] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 12-13 06:44:57] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 12-13 06:45:07] Scheduler: Retrieved FAILED trials: 0 - 2.
[INFO 12-13 06:45:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9330>")
[INFO 12-13 06:45:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb250>")
[ERROR 12-13 06:45:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9330>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb250>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 06:45:07] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9330>").
[INFO 12-13 06:45:07] 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 12-13 06:45:07] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb250>").
[INFO 12-13 06:45:07] 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 12-13 06:45:07] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.
warn("Encountered exception in computing model fit quality: " + str(e))
[INFO 12-13 06:45:07] Scheduler: Running trials [5]...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.
warn("Encountered exception in computing model fit quality: " + str(e))
[INFO 12-13 06:45:08] Scheduler: Running trials [6]...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning: Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.
warn("Encountered exception in computing model fit quality: " + str(e))
[INFO 12-13 06:45:10] Scheduler: Running trials [7]...
[WARNING 12-13 06:45:11] 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 12-13 06:45:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb340>")
[INFO 12-13 06:45:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea9b0>")
[INFO 12-13 06:45:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8be0>")
[INFO 12-13 06:45:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8310>")
[INFO 12-13 06:45:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea1d0>")
[ERROR 12-13 06:45:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb340>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea9b0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8be0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8310>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea1d0>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 06:45:11] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb340>").
[INFO 12-13 06:45:11] 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 12-13 06:45:11] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea9b0>").
[INFO 12-13 06:45:11] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 06:45:11] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8be0>").
[INFO 12-13 06:45:11] 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 12-13 06:45:11] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8310>").
[INFO 12-13 06:45:11] 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 12-13 06:45:11] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea1d0>").
[INFO 12-13 06:45:11] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 12-13 06:45:11] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 12-13 06:45:11] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 12-13 06:45:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eba60>")
[INFO 12-13 06:45:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9660>")
[INFO 12-13 06:45:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb910>")
[INFO 12-13 06:45:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb340>")
[INFO 12-13 06:45:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9330>")
[ERROR 12-13 06:45:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eba60>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9660>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb910>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb340>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9330>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 06:45:21] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eba60>").
[INFO 12-13 06:45: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 12-13 06:45:21] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9660>").
[INFO 12-13 06:45: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...
[WARNING 12-13 06:45:21] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb910>").
[INFO 12-13 06:45:21] 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 12-13 06:45:21] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb340>").
[INFO 12-13 06:45:21] 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 12-13 06:45:21] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9330>").
[INFO 12-13 06:45:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 12-13 06:45:21] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 12-13 06:45:21] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 12-13 06:45:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e98d0>")
[INFO 12-13 06:45:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e92d0>")
[INFO 12-13 06:45:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8400>")
[INFO 12-13 06:45:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9330>")
[INFO 12-13 06:45:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb3a0>")
[ERROR 12-13 06:45:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e98d0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e92d0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8400>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9330>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb3a0>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 06:45:31] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e98d0>").
[INFO 12-13 06:45:31] 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 12-13 06:45:31] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e92d0>").
[INFO 12-13 06:45:31] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 06:45:31] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8400>").
[INFO 12-13 06:45:31] 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 12-13 06:45:31] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9330>").
[INFO 12-13 06:45:31] 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 12-13 06:45:31] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb3a0>").
[INFO 12-13 06:45:31] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 12-13 06:45:31] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 12-13 06:45:31] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 12-13 06:45:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9a20>")
[INFO 12-13 06:45:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8400>")
[INFO 12-13 06:45:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea440>")
[INFO 12-13 06:45:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea1d0>")
[INFO 12-13 06:45:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9ed0>")
[ERROR 12-13 06:45:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9a20>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8400>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea440>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea1d0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9ed0>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 06:45:41] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9a20>").
[INFO 12-13 06:45:41] 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 12-13 06:45:41] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8400>").
[INFO 12-13 06:45:41] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 06:45:41] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea440>").
[INFO 12-13 06:45:41] 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 12-13 06:45:41] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea1d0>").
[INFO 12-13 06:45:41] 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 12-13 06:45:41] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9ed0>").
[INFO 12-13 06:45:41] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 12-13 06:45:41] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 12-13 06:45:41] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 12-13 06:45:51] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9a20>")
[INFO 12-13 06:45:51] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e96c0>")
[INFO 12-13 06:45:51] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb8b0>")
[INFO 12-13 06:45:51] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eaa70>")
[INFO 12-13 06:45:51] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eac20>")
[ERROR 12-13 06:45:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9a20>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e96c0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb8b0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eaa70>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:45:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eac20>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 06:45:51] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9a20>").
[INFO 12-13 06:45:51] 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 12-13 06:45:51] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e96c0>").
[INFO 12-13 06:45:51] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 06:45:51] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb8b0>").
[INFO 12-13 06:45:51] 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 12-13 06:45:51] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eaa70>").
[INFO 12-13 06:45:51] 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 12-13 06:45:51] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eac20>").
[INFO 12-13 06:45:51] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 12-13 06:45:51] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 12-13 06:45:51] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 12-13 06:46:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e97e0>")
[INFO 12-13 06:46:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ebaf0>")
[INFO 12-13 06:46:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eaa70>")
[INFO 12-13 06:46:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb340>")
[INFO 12-13 06:46:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9390>")
[ERROR 12-13 06:46:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e97e0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ebaf0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eaa70>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb340>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9390>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 06:46:01] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e97e0>").
[INFO 12-13 06:46:01] 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 12-13 06:46:01] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ebaf0>").
[INFO 12-13 06:46:01] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 06:46:01] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eaa70>").
[INFO 12-13 06:46:01] 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 12-13 06:46:01] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb340>").
[INFO 12-13 06:46:01] 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 12-13 06:46:01] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9390>").
[INFO 12-13 06:46:01] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 12-13 06:46:01] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 12-13 06:46:01] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 12-13 06:46:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9a20>")
[INFO 12-13 06:46:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9330>")
[INFO 12-13 06:46:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ebd00>")
[INFO 12-13 06:46:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eadd0>")
[INFO 12-13 06:46:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e96c0>")
[ERROR 12-13 06:46:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9a20>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9330>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ebd00>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eadd0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e96c0>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 06:46:11] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9a20>").
[INFO 12-13 06:46:11] 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 12-13 06:46:11] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9330>").
[INFO 12-13 06:46:11] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 06:46:11] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ebd00>").
[INFO 12-13 06:46:11] 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 12-13 06:46:11] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eadd0>").
[INFO 12-13 06:46:11] 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 12-13 06:46:11] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e96c0>").
[INFO 12-13 06:46:11] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 12-13 06:46:11] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 12-13 06:46:11] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 12-13 06:46:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb7c0>")
[INFO 12-13 06:46:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea170>")
[INFO 12-13 06:46:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9ed0>")
[INFO 12-13 06:46:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb7c0>")
[INFO 12-13 06:46:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea9b0>")
[ERROR 12-13 06:46:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb7c0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea170>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9ed0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb7c0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea9b0>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 06:46:22] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb7c0>").
[INFO 12-13 06:46: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 12-13 06:46:22] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea170>").
[INFO 12-13 06:46: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...
[WARNING 12-13 06:46:22] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9ed0>").
[INFO 12-13 06:46:22] 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 12-13 06:46:22] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb7c0>").
[INFO 12-13 06:46:22] 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 12-13 06:46:22] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea9b0>").
[INFO 12-13 06:46:22] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 12-13 06:46:22] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 12-13 06:46:22] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 12-13 06:46:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ebaf0>")
[INFO 12-13 06:46:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eadd0>")
[INFO 12-13 06:46:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9ed0>")
[INFO 12-13 06:46:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea9b0>")
[INFO 12-13 06:46:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8400>")
[ERROR 12-13 06:46:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ebaf0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eadd0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9ed0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea9b0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8400>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 06:46:32] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ebaf0>").
[INFO 12-13 06:46: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 12-13 06:46:32] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eadd0>").
[INFO 12-13 06:46: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...
[WARNING 12-13 06:46:32] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9ed0>").
[INFO 12-13 06:46:32] 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 12-13 06:46:32] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea9b0>").
[INFO 12-13 06:46:32] 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 12-13 06:46:32] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e8400>").
[INFO 12-13 06:46:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 12-13 06:46:32] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 12-13 06:46:32] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 12-13 06:46:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e98d0>")
[INFO 12-13 06:46:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ebac0>")
[INFO 12-13 06:46:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9b10>")
[INFO 12-13 06:46:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eadd0>")
[INFO 12-13 06:46:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb7c0>")
[ERROR 12-13 06:46:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e98d0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ebac0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9b10>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eadd0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb7c0>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 06:46:42] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e98d0>").
[INFO 12-13 06:46: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 12-13 06:46:42] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ebac0>").
[INFO 12-13 06:46: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...
[WARNING 12-13 06:46:42] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e9b10>").
[INFO 12-13 06:46:42] 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 12-13 06:46:42] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eadd0>").
[INFO 12-13 06:46:42] 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 12-13 06:46:42] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb7c0>").
[INFO 12-13 06:46:42] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 12-13 06:46:42] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 12-13 06:46:42] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 12-13 06:46:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e98d0>")
[INFO 12-13 06:46:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea170>")
[INFO 12-13 06:46:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb7c0>")
[INFO 12-13 06:46:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eadd0>")
[ERROR 12-13 06:46:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e98d0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea170>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb7c0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:46:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eadd0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:46:52] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58e98d0>").
[INFO 12-13 06:46: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...
[WARNING 12-13 06:46:52] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58ea170>").
[INFO 12-13 06:46:52] 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 12-13 06:46:52] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eb7c0>").
[INFO 12-13 06:46:52] 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 12-13 06:46:52] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c58eadd0>").
[INFO 12-13 06:46:52] 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:46: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 12-13 06:46:52] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 12-13 06:47:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c590b4f0>")
[INFO 12-13 06:47:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c590b4f0>")
[INFO 12-13 06:47:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c590b4f0>")
[ERROR 12-13 06:47:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c590b4f0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:47:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c590b4f0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:47:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c590b4f0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:47:02] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c590b4f0>").
[INFO 12-13 06:47:02] 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 12-13 06:47:02] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c590b4f0>").
[INFO 12-13 06:47:02] 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 12-13 06:47:02] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c590b4f0>").
[INFO 12-13 06:47:02] 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:47: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 12-13 06:47:02] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 12-13 06:47:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c59096c0>")
[INFO 12-13 06:47:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c59096c0>")
[INFO 12-13 06:47:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c59096c0>")
[ERROR 12-13 06:47:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c59096c0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:47:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c59096c0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 06:47:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c59096c0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:47:12] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c59096c0>").
[INFO 12-13 06:47:12] 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 12-13 06:47:12] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c59096c0>").
[INFO 12-13 06:47:12] 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 12-13 06:47:12] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c59096c0>").
[INFO 12-13 06:47:12] 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:47: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 12-13 06:47:13] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:47: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 12-13 06:47:23] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:47: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 12-13 06:47:33] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:47: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 12-13 06:47:43] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:47: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 12-13 06:47:53] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:48: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 12-13 06:48:04] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:48: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 12-13 06:48:14] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:48: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 12-13 06:48:24] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:48: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 12-13 06:48:34] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:48: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 12-13 06:48:45] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:48: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 12-13 06:48:55] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:49: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 12-13 06:49:05] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:49: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 12-13 06:49:15] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:49: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 12-13 06:49:26] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:49: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 12-13 06:49:36] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:49: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 12-13 06:49:46] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:49: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 12-13 06:49:57] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:50: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 12-13 06:50:07] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:50: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 12-13 06:50:17] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:50: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 12-13 06:50:27] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:50: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 12-13 06:50:38] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:50: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 12-13 06:50:48] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:50: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 12-13 06:50:58] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:51: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 12-13 06:51:08] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:51: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 12-13 06:51:19] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:51: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 12-13 06:51:29] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:51: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 12-13 06:51:39] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:51: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 12-13 06:51:49] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:52: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 12-13 06:52:00] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:52: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 12-13 06:52:10] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:52: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 12-13 06:52:20] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:52: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 12-13 06:52:30] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:52: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 12-13 06:52:41] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:52: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 12-13 06:52:51] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:53: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 12-13 06:53:01] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:53: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 12-13 06:53:12] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:53: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 12-13 06:53:22] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:53: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 12-13 06:53:32] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:53: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 12-13 06:53:42] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:53: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 12-13 06:53:53] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:54: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 12-13 06:54:03] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:54: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 12-13 06:54:13] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:54: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 12-13 06:54:23] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:54: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 12-13 06:54:34] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:54: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 12-13 06:54:44] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:54: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 12-13 06:54:54] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:55: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 12-13 06:55:04] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:55: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 12-13 06:55:15] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:55: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 12-13 06:55:25] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:55: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 12-13 06:55:35] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:55: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 12-13 06:55:46] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:55: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 12-13 06:55:56] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:56: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 12-13 06:56:06] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:56: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 12-13 06:56:16] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:56: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 12-13 06:56:27] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:56: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 12-13 06:56:37] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:56: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 12-13 06:56:48] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:56: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 12-13 06:56:58] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:57: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 12-13 06:57:08] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:57: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 12-13 06:57:18] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:57: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 12-13 06:57:29] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:57: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 12-13 06:57:39] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:57: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 12-13 06:57:49] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:57: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 12-13 06:57:59] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:58: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 12-13 06:58:10] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:58: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 12-13 06:58:20] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:58: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 12-13 06:58:30] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:58: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 12-13 06:58:40] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:58: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 12-13 06:58:51] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:59: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 12-13 06:59:01] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:59: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 12-13 06:59:11] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:59: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 12-13 06:59:21] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:59: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 12-13 06:59:32] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:59: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 12-13 06:59:42] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 06:59: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 12-13 06:59:52] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:00: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 12-13 07:00:02] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:00: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 12-13 07:00:13] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:00: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 12-13 07:00:23] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:00: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 12-13 07:00:33] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:00: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.
[WARNING 12-13 07:00:44] 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.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:00: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 12-13 07:00:44] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:00: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 12-13 07:00:54] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:01: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 12-13 07:01:04] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:01: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 12-13 07:01:14] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:01: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 12-13 07:01:25] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:01: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 12-13 07:01:35] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:01: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 12-13 07:01:45] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:01: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 12-13 07:01:55] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:02: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 12-13 07:02:06] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:02: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 12-13 07:02:16] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:02: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 12-13 07:02:26] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:02: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 12-13 07:02:36] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:02: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 12-13 07:02:47] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:02: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 12-13 07:02:57] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:03: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 12-13 07:03:07] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:03: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 12-13 07:03:17] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:03: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 12-13 07:03:28] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:03: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 12-13 07:03:38] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:03: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 12-13 07:03:48] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:03: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 12-13 07:03:58] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:04: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 12-13 07:04:09] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:04: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 12-13 07:04:19] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:04: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 12-13 07:04:29] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:04: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 12-13 07:04:40] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 12-13 07:04:50] Scheduler: Retrieved COMPLETED trials: [4].
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:04:50] 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 12-13 07:04:50] 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.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:04:50] 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 12-13 07:04:50] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 4).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:05:00] 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 12-13 07:05:00] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 4).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:05:10] 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 12-13 07:05:10] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 4).
[INFO 12-13 07:05:21] Scheduler: Retrieved COMPLETED trials: [3, 5, 7].
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:05:21] ax.early_stopping.strategies.base: The number of completed trials (4) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:05:22] Scheduler: Running trials [8]...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:05:24] Scheduler: Running trials [9]...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:05:26] Scheduler: Running trials [10]...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:05:27] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 12-13 07:05: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 12-13 07:05:27] Scheduler: Retrieved COMPLETED trials: [6].
[INFO 12-13 07:05:27] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc417580>")
[INFO 12-13 07:05:27] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc414f40>")
[INFO 12-13 07:05:27] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc4152a0>")
[ERROR 12-13 07:05:27] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc417580>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:05:27] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc414f40>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:05:27] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc4152a0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:05:27] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc417580>").
[INFO 12-13 07:05:27] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 8 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:05:27] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc414f40>").
[INFO 12-13 07:05:27] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 9 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:05:27] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc4152a0>").
[INFO 12-13 07:05:27] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:05:27] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 12-13 07:05:27] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:05:28] 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 12-13 07:05:28] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4dc0>")
[INFO 12-13 07:05:28] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4dc0>")
[INFO 12-13 07:05:28] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4dc0>")
[ERROR 12-13 07:05:28] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4dc0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:05:28] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4dc0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:05:28] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4dc0>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 07:05:28] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4dc0>").
[INFO 12-13 07:05:28] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 8 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:05:28] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4dc0>").
[INFO 12-13 07:05:28] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 9 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:05:28] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4dc0>").
[INFO 12-13 07:05:28] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:05:28] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 12-13 07:05:28] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:05:28] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:05:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b5e10>")
[INFO 12-13 07:05:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7940>")
[INFO 12-13 07:05:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7940>")
[ERROR 12-13 07:05:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b5e10>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:05:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7940>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:05:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7940>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 07:05:38] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b5e10>").
[INFO 12-13 07:05:38] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 8 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:05:38] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7940>").
[INFO 12-13 07:05:38] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 9 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:05:38] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7940>").
[INFO 12-13 07:05:38] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:05:38] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 12-13 07:05:38] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:05:38] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:05:48] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5d0f40>")
[INFO 12-13 07:05:48] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc433f70>")
[INFO 12-13 07:05:48] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b5b70>")
[ERROR 12-13 07:05:48] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5d0f40>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:05:48] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc433f70>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:05:48] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b5b70>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 07:05:48] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5d0f40>").
[INFO 12-13 07:05:48] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 8 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:05:48] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc433f70>").
[INFO 12-13 07:05:48] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 9 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:05:48] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b5b70>").
[INFO 12-13 07:05:48] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:05:48] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 12-13 07:05:48] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:05:48] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:05:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c4796f50>")
[INFO 12-13 07:05:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47970d0>")
[INFO 12-13 07:05:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47970d0>")
[ERROR 12-13 07:05:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c4796f50>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:05:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47970d0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:05:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47970d0>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 07:05:58] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c4796f50>").
[INFO 12-13 07:05:58] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 8 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:05:58] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47970d0>").
[INFO 12-13 07:05:58] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 9 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:05:58] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47970d0>").
[INFO 12-13 07:05:58] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:05:58] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 12-13 07:05:58] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:05:58] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:06:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5d3310>")
[INFO 12-13 07:06:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5d3310>")
[INFO 12-13 07:06:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5d3310>")
[ERROR 12-13 07:06:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5d3310>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:06:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5d3310>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:06:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5d3310>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 12-13 07:06:08] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5d3310>").
[INFO 12-13 07:06:08] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 8 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:06:08] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5d3310>").
[INFO 12-13 07:06:08] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 9 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:06:08] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5d3310>").
[INFO 12-13 07:06:08] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:06:08] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 12-13 07:06:08] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:06:08] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:06:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 12-13 07:06:19] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:06:19] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:06:29] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 12-13 07:06:29] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:06:29] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:06:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 12-13 07:06:39] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:06:39] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:06:49] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 12-13 07:06:49] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:06:49] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:06:59] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 12-13 07:06:59] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:06:59] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:07:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 12-13 07:07:09] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:07:09] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:07:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 12-13 07:07:19] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:07:19] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:07:29] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 12-13 07:07:29] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:07:29] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:07:40] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 12-13 07:07:40] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:07:40] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:07:50] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 12-13 07:07:50] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:07:50] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:08:00] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 12-13 07:08:00] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:08:00] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:08:10] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 12-13 07:08:10] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:08:10] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:08:20] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 12-13 07:08:20] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:08:20] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:08:30] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 12-13 07:08:30] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 12-13 07:08:30] ax.early_stopping.strategies.base: Last progression of Trial 8 is 0.29994666666666664.
[INFO 12-13 07:08:30] ax.early_stopping.strategies.base: Trial 8'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 12-13 07:08:30] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 12-13 07:08:30] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 12-13 07:08:30] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.949745 4 0.941618 5 0.877038 6 0.958928 7 0.944041 9 0.903510 10 0.959935 Name: 0.3999466666666667, dtype: float64.
[INFO 12-13 07:08:30] ax.early_stopping.strategies.percentile: Early stopping decision for 9: True. Reason: Trial objective value 0.9035103227117378 is worse than 70.0-th percentile (0.9515814782363441) across comparable trials.
[INFO 12-13 07:08:30] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:08:30] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 12-13 07:08:30] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.949745 4 0.941618 5 0.877038 6 0.958928 7 0.944041 9 0.903510 10 0.959935 Name: 0.3999466666666667, dtype: float64.
[INFO 12-13 07:08:30] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9599349836410561 is better than 70.0-th percentile (0.9515814782363441) across comparable trials.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:08:34] Scheduler: Running trials [11]...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:08:35] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 12-13 07:08:35] 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 12-13 07:08:35] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc415120>")
[ERROR 12-13 07:08:35] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc415120>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:08:35] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc415120>").
[INFO 12-13 07:08:35] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 11 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:08:35] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 12-13 07:08:35] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 12-13 07:08:35] ax.early_stopping.strategies.base: Last progression of Trial 8 is 0.29994666666666664.
[INFO 12-13 07:08:35] ax.early_stopping.strategies.base: Trial 8'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 12-13 07:08:35] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:08:35] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 12-13 07:08:35] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.949745 4 0.941618 5 0.877038 6 0.958928 7 0.944041 9 0.903510 10 0.959935 Name: 0.3999466666666667, dtype: float64.
[INFO 12-13 07:08:35] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9599349836410561 is better than 70.0-th percentile (0.9515814782363441) across comparable trials.
[INFO 12-13 07:08:35] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:08:35] 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 12-13 07:08:35] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:08:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc4174f0>")
[ERROR 12-13 07:08:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc4174f0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:08:45] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc4174f0>").
[INFO 12-13 07:08:45] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 11 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:08:45] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 12-13 07:08:45] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 12-13 07:08:45] ax.early_stopping.strategies.base: Last progression of Trial 8 is 0.3999466666666667.
[INFO 12-13 07:08:45] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.949745 4 0.941618 5 0.877038 6 0.958928 7 0.944041 8 0.946620 9 0.903510 10 0.959935 Name: 0.3999466666666667, dtype: float64.
[INFO 12-13 07:08:45] ax.early_stopping.strategies.percentile: Early stopping decision for 8: True. Reason: Trial objective value 0.946620069701096 is worse than 70.0-th percentile (0.9494323975640564) across comparable trials.
[INFO 12-13 07:08:45] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:08:45] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 12-13 07:08:45] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.949745 4 0.941618 5 0.877038 6 0.958928 7 0.944041 8 0.946620 9 0.903510 10 0.959935 Name: 0.3999466666666667, dtype: float64.
[INFO 12-13 07:08:45] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9599349836410561 is better than 70.0-th percentile (0.9494323975640564) across comparable trials.
[INFO 12-13 07:08:45] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:08:45] ax.early_stopping.strategies.base: There is not yet any data associated with trial 11 and metric val_acc. Not early stopping this trial.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:08:58] Scheduler: Running trials [12]...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:08:58] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 12-13 07:08:58] 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 12-13 07:08:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4850>")
[INFO 12-13 07:08:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc415b10>")
[ERROR 12-13 07:08:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4850>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:08:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc415b10>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:08:58] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4850>").
[INFO 12-13 07:08:58] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 11 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:08:58] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc415b10>").
[INFO 12-13 07:08:58] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 12 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:08:58] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 12-13 07:08:58] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:08:58] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 12-13 07:08:58] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.949745 4 0.941618 5 0.877038 6 0.958928 7 0.944041 8 0.946620 9 0.903510 10 0.959935 Name: 0.3999466666666667, dtype: float64.
[INFO 12-13 07:08:58] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9599349836410561 is better than 70.0-th percentile (0.9494323975640564) across comparable trials.
[INFO 12-13 07:08:58] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:08:58] 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 12-13 07:08:58] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:08:58] ax.early_stopping.strategies.base: There is not yet any data associated with trial 12 and metric val_acc. Not early stopping this trial.
[INFO 12-13 07:08:58] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:09:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e6440>")
[INFO 12-13 07:09:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4ac0>")
[ERROR 12-13 07:09:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e6440>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:09:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4ac0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:09:08] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e6440>").
[INFO 12-13 07:09:08] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 11 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:09:08] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4ac0>").
[INFO 12-13 07:09:08] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 12 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:09:08] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 12-13 07:09:08] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:09:08] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.49994666666666665.
[INFO 12-13 07:09:08] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.954711 4 0.947598 5 0.876831 6 0.958718 7 0.947719 10 0.966535 Name: 0.49994666666666665, dtype: float64.
[INFO 12-13 07:09:08] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9665346889098101 is better than 70.0-th percentile (0.9567147626331083) across comparable trials.
[INFO 12-13 07:09:08] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:09:08] 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 12-13 07:09:08] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:09:08] ax.early_stopping.strategies.base: There is not yet any data associated with trial 12 and metric val_acc. Not early stopping this trial.
[INFO 12-13 07:09:08] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:09:18] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7fa0>")
[INFO 12-13 07:09:18] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b6dd0>")
[ERROR 12-13 07:09:18] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7fa0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 12-13 07:09:18] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b6dd0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:09:18] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7fa0>").
[INFO 12-13 07:09:18] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 11 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 12-13 07:09:18] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b6dd0>").
[INFO 12-13 07:09:18] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 12 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:09:18] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 12-13 07:09:18] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:09:18] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.49994666666666665.
[INFO 12-13 07:09:18] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.954711 4 0.947598 5 0.876831 6 0.958718 7 0.947719 10 0.966535 Name: 0.49994666666666665, dtype: float64.
[INFO 12-13 07:09:18] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9665346889098101 is better than 70.0-th percentile (0.9567147626331083) across comparable trials.
[INFO 12-13 07:09:18] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:09:18] 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 12-13 07:09:18] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:09:18] ax.early_stopping.strategies.base: There is not yet any data associated with trial 12 and metric val_acc. Not early stopping this trial.
[INFO 12-13 07:09:18] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:09:28] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7fa0>")
[ERROR 12-13 07:09:28] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7fa0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:09:28] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7fa0>").
[INFO 12-13 07:09:28] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 12 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:09:28] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 12-13 07:09:28] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:09:28] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:09:28] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.49994666666666665.
[INFO 12-13 07:09:28] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.954711 4 0.947598 5 0.876831 6 0.958718 7 0.947719 10 0.966535 Name: 0.49994666666666665, dtype: float64.
[INFO 12-13 07:09:28] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9665346889098101 is better than 70.0-th percentile (0.9567147626331083) across comparable trials.
[INFO 12-13 07:09:28] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:09:28] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.09994666666666667.
[INFO 12-13 07:09:28] ax.early_stopping.strategies.base: Trial 11'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 12-13 07:09:28] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:09:28] ax.early_stopping.strategies.base: There is not yet any data associated with trial 12 and metric val_acc. Not early stopping this trial.
[INFO 12-13 07:09:28] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:09:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b79d0>")
[ERROR 12-13 07:09:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b79d0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:09:38] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b79d0>").
[INFO 12-13 07:09:38] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 12 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:09:38] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 12-13 07:09:39] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:09:39] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:09:39] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.49994666666666665.
[INFO 12-13 07:09:39] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.954711 4 0.947598 5 0.876831 6 0.958718 7 0.947719 10 0.966535 Name: 0.49994666666666665, dtype: float64.
[INFO 12-13 07:09:39] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9665346889098101 is better than 70.0-th percentile (0.9567147626331083) across comparable trials.
[INFO 12-13 07:09:39] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:09:39] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.09994666666666667.
[INFO 12-13 07:09:39] ax.early_stopping.strategies.base: Trial 11'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 12-13 07:09:39] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:09:39] ax.early_stopping.strategies.base: There is not yet any data associated with trial 12 and metric val_acc. Not early stopping this trial.
[INFO 12-13 07:09:39] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:09:49] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4d00>")
[ERROR 12-13 07:09:49] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4d00>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:09:49] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4d00>").
[INFO 12-13 07:09:49] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 12 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:09:49] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 12-13 07:09:49] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:09:49] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:09:49] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.5999466666666666.
[INFO 12-13 07:09:49] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.957868 4 0.953070 5 0.879586 6 0.956849 7 0.950083 10 0.970051 Name: 0.5999466666666666, dtype: float64.
[INFO 12-13 07:09:49] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9700510107714799 is better than 70.0-th percentile (0.9573583493337068) across comparable trials.
[INFO 12-13 07:09:49] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:09:49] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.09994666666666667.
[INFO 12-13 07:09:49] ax.early_stopping.strategies.base: Trial 11'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 12-13 07:09:49] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:09:49] ax.early_stopping.strategies.base: There is not yet any data associated with trial 12 and metric val_acc. Not early stopping this trial.
[INFO 12-13 07:09:49] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:09:59] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 12-13 07:09:59] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:09:59] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:09:59] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:09:59] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.5999466666666666.
[INFO 12-13 07:09:59] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.957868 4 0.953070 5 0.879586 6 0.956849 7 0.950083 10 0.970051 Name: 0.5999466666666666, dtype: float64.
[INFO 12-13 07:09:59] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9700510107714799 is better than 70.0-th percentile (0.9573583493337068) across comparable trials.
[INFO 12-13 07:09:59] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:09:59] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.09994666666666667.
[INFO 12-13 07:09:59] ax.early_stopping.strategies.base: Trial 11'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 12-13 07:09:59] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:09:59] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 12-13 07:09:59] ax.early_stopping.strategies.base: Trial 12'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 12-13 07:09:59] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:10:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 12-13 07:10:09] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:10:09] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:10:09] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:10:09] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.5999466666666666.
[INFO 12-13 07:10:09] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.957868 4 0.953070 5 0.879586 6 0.956849 7 0.950083 10 0.970051 Name: 0.5999466666666666, dtype: float64.
[INFO 12-13 07:10:09] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9700510107714799 is better than 70.0-th percentile (0.9573583493337068) across comparable trials.
[INFO 12-13 07:10:09] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:10:09] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.09994666666666667.
[INFO 12-13 07:10:09] ax.early_stopping.strategies.base: Trial 11'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 12-13 07:10:09] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:10:09] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 12-13 07:10:09] ax.early_stopping.strategies.base: Trial 12'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 12-13 07:10:09] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:10:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 12-13 07:10:19] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:10:19] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:10:19] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.5999466666666666.
[INFO 12-13 07:10:19] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.957868 4 0.953070 5 0.879586 6 0.956849 7 0.950083 10 0.970051 Name: 0.5999466666666666, dtype: float64.
[INFO 12-13 07:10:19] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9700510107714799 is better than 70.0-th percentile (0.9573583493337068) across comparable trials.
[INFO 12-13 07:10:19] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:10:19] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.19994666666666666.
[INFO 12-13 07:10:19] ax.early_stopping.strategies.base: Trial 11'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.
[INFO 12-13 07:10:19] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:10:19] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 12-13 07:10:19] ax.early_stopping.strategies.base: Trial 12'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 12-13 07:10:19] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:10:30] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 12-13 07:10:30] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:10:30] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:10:30] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.5999466666666666.
[INFO 12-13 07:10:30] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.957868 4 0.953070 5 0.879586 6 0.956849 7 0.950083 10 0.970051 Name: 0.5999466666666666, dtype: float64.
[INFO 12-13 07:10:30] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9700510107714799 is better than 70.0-th percentile (0.9573583493337068) across comparable trials.
[INFO 12-13 07:10:30] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:10:30] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.19994666666666666.
[INFO 12-13 07:10:30] ax.early_stopping.strategies.base: Trial 11'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.
[INFO 12-13 07:10:30] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:10:30] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 12-13 07:10:30] ax.early_stopping.strategies.base: Trial 12'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 12-13 07:10:30] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:10:40] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 12-13 07:10:40] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:10:40] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.6999466666666667.
[INFO 12-13 07:10:40] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.961791 4 0.956193 5 0.879641 6 0.959601 7 0.951957 10 0.968002 Name: 0.6999466666666667, dtype: float64.
[INFO 12-13 07:10:40] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9680021892736002 is better than 70.0-th percentile (0.9606956279806469) across comparable trials.
[INFO 12-13 07:10:40] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:10:40] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.19994666666666666.
[INFO 12-13 07:10:40] ax.early_stopping.strategies.base: Trial 11'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.
[INFO 12-13 07:10:40] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:10:40] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 12-13 07:10:40] ax.early_stopping.strategies.base: Trial 12'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.
[INFO 12-13 07:10:40] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:10:50] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 12-13 07:10:50] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:10:50] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.6999466666666667.
[INFO 12-13 07:10:50] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.961791 4 0.956193 5 0.879641 6 0.959601 7 0.951957 10 0.968002 Name: 0.6999466666666667, dtype: float64.
[INFO 12-13 07:10:50] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9680021892736002 is better than 70.0-th percentile (0.9606956279806469) across comparable trials.
[INFO 12-13 07:10:50] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:10:50] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 12-13 07:10:50] ax.early_stopping.strategies.base: Trial 11'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 12-13 07:10:50] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:10:50] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 12-13 07:10:50] ax.early_stopping.strategies.base: Trial 12'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.
[INFO 12-13 07:10:50] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:11:00] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 12-13 07:11:00] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:11:00] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.6999466666666667.
[INFO 12-13 07:11:00] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.961791 4 0.956193 5 0.879641 6 0.959601 7 0.951957 10 0.968002 Name: 0.6999466666666667, dtype: float64.
[INFO 12-13 07:11:00] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9680021892736002 is better than 70.0-th percentile (0.9606956279806469) across comparable trials.
[INFO 12-13 07:11:00] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:11:00] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 12-13 07:11:00] ax.early_stopping.strategies.base: Trial 11'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 12-13 07:11:00] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:11:00] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 12-13 07:11:00] ax.early_stopping.strategies.base: Trial 12'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.
[INFO 12-13 07:11:00] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:11:10] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 12-13 07:11:10] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:11:10] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.6999466666666667.
[INFO 12-13 07:11:10] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.961791 4 0.956193 5 0.879641 6 0.959601 7 0.951957 10 0.968002 Name: 0.6999466666666667, dtype: float64.
[INFO 12-13 07:11:10] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9680021892736002 is better than 70.0-th percentile (0.9606956279806469) across comparable trials.
[INFO 12-13 07:11:10] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:11:10] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 12-13 07:11:10] ax.early_stopping.strategies.base: Trial 11'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 12-13 07:11:10] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:11:10] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 12-13 07:11:10] ax.early_stopping.strategies.base: Trial 12'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.
[INFO 12-13 07:11:10] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:11:21] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 12-13 07:11:21] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:11:21] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.6999466666666667.
[INFO 12-13 07:11:21] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.961791 4 0.956193 5 0.879641 6 0.959601 7 0.951957 10 0.968002 Name: 0.6999466666666667, dtype: float64.
[INFO 12-13 07:11:21] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9680021892736002 is better than 70.0-th percentile (0.9606956279806469) across comparable trials.
[INFO 12-13 07:11:21] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:11:21] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 12-13 07:11:21] ax.early_stopping.strategies.base: Trial 11'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 12-13 07:11:21] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:11:21] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 12-13 07:11:21] ax.early_stopping.strategies.base: Trial 12'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.
[INFO 12-13 07:11:21] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:11:31] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 12-13 07:11:31] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:11:31] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.7999466666666667.
[INFO 12-13 07:11:31] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.964125 4 0.957856 5 0.871595 6 0.962255 7 0.953009 10 0.970518 Name: 0.7999466666666667, dtype: float64.
[INFO 12-13 07:11:31] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.970518290519249 is better than 70.0-th percentile (0.9631899446044024) across comparable trials.
[INFO 12-13 07:11:31] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:11:31] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 12-13 07:11:31] ax.early_stopping.strategies.base: Trial 11'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 12-13 07:11:31] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:11:31] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 12-13 07:11:31] 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 12-13 07:11:31] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:11:41] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 12-13 07:11:41] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:11:41] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.7999466666666667.
[INFO 12-13 07:11:41] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.964125 4 0.957856 5 0.871595 6 0.962255 7 0.953009 10 0.970518 Name: 0.7999466666666667, dtype: float64.
[INFO 12-13 07:11:41] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.970518290519249 is better than 70.0-th percentile (0.9631899446044024) across comparable trials.
[INFO 12-13 07:11:41] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 12-13 07:11:41] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 12-13 07:11:41] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.949745 4 0.941618 5 0.877038 6 0.958928 7 0.944041 8 0.946620 9 0.903510 10 0.959935 11 0.944323 Name: 0.3999466666666667, dtype: float64.
[INFO 12-13 07:11:41] ax.early_stopping.strategies.percentile: Early stopping decision for 11: True. Reason: Trial objective value 0.9443232881024552 is worse than 70.0-th percentile (0.9484949549430697) across comparable trials.
[INFO 12-13 07:11:41] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:11:41] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 12-13 07:11:41] 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.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:11:44] Scheduler: Running trials [13]...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:11:45] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 12-13 07:11: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 12-13 07:11:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc4174f0>")
[ERROR 12-13 07:11:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc4174f0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:11:45] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc4174f0>").
[INFO 12-13 07:11:45] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 13 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:11:45] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 12-13 07:11:45] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:11:45] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.7999466666666667.
[INFO 12-13 07:11:45] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.964125 4 0.957856 5 0.871595 6 0.962255 7 0.953009 10 0.970518 Name: 0.7999466666666667, dtype: float64.
[INFO 12-13 07:11:45] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.970518290519249 is better than 70.0-th percentile (0.9631899446044024) across comparable trials.
[INFO 12-13 07:11:45] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:11:45] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 12-13 07:11:45] 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 12-13 07:11:45] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:11:45] ax.early_stopping.strategies.base: There is not yet any data associated with trial 13 and metric val_acc. Not early stopping this trial.
[INFO 12-13 07:11:45] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:11:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c4794370>")
[ERROR 12-13 07:11:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c4794370>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:11:55] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c4794370>").
[INFO 12-13 07:11:55] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 13 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:11:56] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 12-13 07:11:56] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:11:56] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.7999466666666667.
[INFO 12-13 07:11:56] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.964125 4 0.957856 5 0.871595 6 0.962255 7 0.953009 10 0.970518 Name: 0.7999466666666667, dtype: float64.
[INFO 12-13 07:11:56] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.970518290519249 is better than 70.0-th percentile (0.9631899446044024) across comparable trials.
[INFO 12-13 07:11:56] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:11:56] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 12-13 07:11:56] 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 12-13 07:11:56] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:11:56] ax.early_stopping.strategies.base: There is not yet any data associated with trial 13 and metric val_acc. Not early stopping this trial.
[INFO 12-13 07:11:56] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:12:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc415480>")
[ERROR 12-13 07:12:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc415480>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:12:06] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc415480>").
[INFO 12-13 07:12:06] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 13 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:12:06] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 12-13 07:12:06] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:12:06] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.7999466666666667.
[INFO 12-13 07:12:06] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.964125 4 0.957856 5 0.871595 6 0.962255 7 0.953009 10 0.970518 Name: 0.7999466666666667, dtype: float64.
[INFO 12-13 07:12:06] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.970518290519249 is better than 70.0-th percentile (0.9631899446044024) across comparable trials.
[INFO 12-13 07:12:06] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:12:06] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.3999466666666667.
[INFO 12-13 07:12:06] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.949745 4 0.941618 5 0.877038 6 0.958928 7 0.944041 8 0.946620 9 0.903510 10 0.959935 11 0.944323 12 0.955522 Name: 0.3999466666666667, dtype: float64.
[INFO 12-13 07:12:06] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9555220536410515 is better than 70.0-th percentile (0.9514780309987185) across comparable trials.
[INFO 12-13 07:12:06] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:12:06] ax.early_stopping.strategies.base: There is not yet any data associated with trial 13 and metric val_acc. Not early stopping this trial.
[INFO 12-13 07:12:06] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:12:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc416080>")
[ERROR 12-13 07:12:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc416080>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:12:16] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc416080>").
[INFO 12-13 07:12:16] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 13 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:12:16] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 12-13 07:12:16] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:12:16] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.8999466666666667.
[INFO 12-13 07:12:16] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.965125 4 0.959341 5 0.876126 6 0.963324 7 0.954552 10 0.971331 Name: 0.8999466666666667, dtype: float64.
[INFO 12-13 07:12:16] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9713312847842852 is better than 70.0-th percentile (0.9642245918684736) across comparable trials.
[INFO 12-13 07:12:16] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:12:16] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.3999466666666667.
[INFO 12-13 07:12:16] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.949745 4 0.941618 5 0.877038 6 0.958928 7 0.944041 8 0.946620 9 0.903510 10 0.959935 11 0.944323 12 0.955522 Name: 0.3999466666666667, dtype: float64.
[INFO 12-13 07:12:16] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9555220536410515 is better than 70.0-th percentile (0.9514780309987185) across comparable trials.
[INFO 12-13 07:12:16] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:12:16] ax.early_stopping.strategies.base: There is not yet any data associated with trial 13 and metric val_acc. Not early stopping this trial.
[INFO 12-13 07:12:16] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:12:26] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7940>")
[ERROR 12-13 07:12:26] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7940>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:12:26] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95c47b7940>").
[INFO 12-13 07:12:26] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 13 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:12:26] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 12-13 07:12:26] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:12:26] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.8999466666666667.
[INFO 12-13 07:12:26] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.965125 4 0.959341 5 0.876126 6 0.963324 7 0.954552 10 0.971331 Name: 0.8999466666666667, dtype: float64.
[INFO 12-13 07:12:26] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9713312847842852 is better than 70.0-th percentile (0.9642245918684736) across comparable trials.
[INFO 12-13 07:12:26] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:12:26] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.3999466666666667.
[INFO 12-13 07:12:26] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.949745 4 0.941618 5 0.877038 6 0.958928 7 0.944041 8 0.946620 9 0.903510 10 0.959935 11 0.944323 12 0.955522 Name: 0.3999466666666667, dtype: float64.
[INFO 12-13 07:12:26] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9555220536410515 is better than 70.0-th percentile (0.9514780309987185) across comparable trials.
[INFO 12-13 07:12:26] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:12:26] ax.early_stopping.strategies.base: There is not yet any data associated with trial 13 and metric val_acc. Not early stopping this trial.
[INFO 12-13 07:12:26] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:12:36] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc417c10>")
[ERROR 12-13 07:12:36] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc417c10>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:12:36] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc417c10>").
[INFO 12-13 07:12:36] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 13 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:12:36] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 12-13 07:12:36] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:12:36] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.8999466666666667.
[INFO 12-13 07:12:36] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.965125 4 0.959341 5 0.876126 6 0.963324 7 0.954552 10 0.971331 Name: 0.8999466666666667, dtype: float64.
[INFO 12-13 07:12:36] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9713312847842852 is better than 70.0-th percentile (0.9642245918684736) across comparable trials.
[INFO 12-13 07:12:36] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:12:36] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.3999466666666667.
[INFO 12-13 07:12:36] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.949745 4 0.941618 5 0.877038 6 0.958928 7 0.944041 8 0.946620 9 0.903510 10 0.959935 11 0.944323 12 0.955522 Name: 0.3999466666666667, dtype: float64.
[INFO 12-13 07:12:36] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9555220536410515 is better than 70.0-th percentile (0.9514780309987185) across comparable trials.
[INFO 12-13 07:12:36] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:12:36] ax.early_stopping.strategies.base: There is not yet any data associated with trial 13 and metric val_acc. Not early stopping this trial.
[INFO 12-13 07:12:36] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:12:46] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 12-13 07:12:46] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:12:46] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:12:46] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.8999466666666667.
[INFO 12-13 07:12:46] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.965125 4 0.959341 5 0.876126 6 0.963324 7 0.954552 10 0.971331 Name: 0.8999466666666667, dtype: float64.
[INFO 12-13 07:12:46] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9713312847842852 is better than 70.0-th percentile (0.9642245918684736) across comparable trials.
[INFO 12-13 07:12:46] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:12:46] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.49994666666666665.
[INFO 12-13 07:12:46] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.954711 4 0.947598 5 0.876831 6 0.958718 7 0.947719 10 0.966535 12 0.959985 Name: 0.49994666666666665, dtype: float64.
[INFO 12-13 07:12:46] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9599854324652546 is better than 70.0-th percentile (0.9589718153243154) across comparable trials.
[INFO 12-13 07:12:46] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:12:46] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 12-13 07:12:46] ax.early_stopping.strategies.base: Trial 13'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 12-13 07:12:46] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:12:57] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.9999466666666667.
[INFO 12-13 07:12:57] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:12:57] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 12-13 07:12:57] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.9999466666666667.
[INFO 12-13 07:12:57] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.966979 4 0.959989 5 0.876776 6 0.966234 7 0.954066 10 0.973069 Name: 0.9999466666666667, dtype: float64.
[INFO 12-13 07:12:57] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9730685094065228 is better than 70.0-th percentile (0.9666067237142534) across comparable trials.
[INFO 12-13 07:12:57] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:12:57] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.49994666666666665.
[INFO 12-13 07:12:57] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.954711 4 0.947598 5 0.876831 6 0.958718 7 0.947719 10 0.966535 12 0.959985 Name: 0.49994666666666665, dtype: float64.
[INFO 12-13 07:12:57] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9599854324652546 is better than 70.0-th percentile (0.9589718153243154) across comparable trials.
[INFO 12-13 07:12:57] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:12:57] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 12-13 07:12:57] ax.early_stopping.strategies.base: Trial 13'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 12-13 07:12:57] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:13:07] Scheduler: Retrieved COMPLETED trials: [10].
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:13:07] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 12-13 07:13:07] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:13:07] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:13:07] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.49994666666666665.
[INFO 12-13 07:13:07] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.954711 4 0.947598 5 0.876831 6 0.958718 7 0.947719 10 0.966535 12 0.959985 Name: 0.49994666666666665, dtype: float64.
[INFO 12-13 07:13:07] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9599854324652546 is better than 70.0-th percentile (0.9589718153243154) across comparable trials.
[INFO 12-13 07:13:07] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:13:07] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 12-13 07:13:07] ax.early_stopping.strategies.base: Trial 13'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.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:13:11] Scheduler: Running trials [14]...
[WARNING 12-13 07:13:11] 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 12-13 07:13:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc414340>")
[ERROR 12-13 07:13:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc414340>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:13:11] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc414340>").
[INFO 12-13 07:13:11] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 14 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:13:11] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 12-13 07:13:11] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:13:11] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:13:11] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.49994666666666665.
[INFO 12-13 07:13:11] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.954711 4 0.947598 5 0.876831 6 0.958718 7 0.947719 10 0.966535 12 0.959985 Name: 0.49994666666666665, dtype: float64.
[INFO 12-13 07:13:11] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9599854324652546 is better than 70.0-th percentile (0.9589718153243154) across comparable trials.
[INFO 12-13 07:13:11] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:13:11] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 12-13 07:13:11] ax.early_stopping.strategies.base: Trial 13'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 12-13 07:13:11] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:13:11] 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 12-13 07:13:11] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:13:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc416e30>")
[ERROR 12-13 07:13:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc416e30>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:13:21] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc416e30>").
[INFO 12-13 07:13:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 14 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:13:21] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 12-13 07:13:21] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:13:21] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.5999466666666666.
[INFO 12-13 07:13:21] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.957868 4 0.953070 5 0.879586 6 0.956849 7 0.950083 10 0.970051 12 0.961295 Name: 0.5999466666666666, dtype: float64.
[INFO 12-13 07:13:21] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.961294995272162 is better than 70.0-th percentile (0.9585534295273673) across comparable trials.
[INFO 12-13 07:13:21] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:13:21] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 12-13 07:13:21] 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.
[INFO 12-13 07:13:21] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:13:21] 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 12-13 07:13:21] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:13:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4850>")
[ERROR 12-13 07:13:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4850>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:13:31] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc5e4850>").
[INFO 12-13 07:13:31] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 14 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:13:31] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 12-13 07:13:31] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:13:31] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.5999466666666666.
[INFO 12-13 07:13:31] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.957868 4 0.953070 5 0.879586 6 0.956849 7 0.950083 10 0.970051 12 0.961295 Name: 0.5999466666666666, dtype: float64.
[INFO 12-13 07:13:31] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.961294995272162 is better than 70.0-th percentile (0.9585534295273673) across comparable trials.
[INFO 12-13 07:13:31] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:13:31] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 12-13 07:13:31] 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.
[INFO 12-13 07:13:31] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:13:31] 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 12-13 07:13:31] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:13:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc417580>")
[ERROR 12-13 07:13:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc417580>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:13:41] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc417580>").
[INFO 12-13 07:13:41] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 14 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:13:41] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 12-13 07:13:41] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:13:42] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.5999466666666666.
[INFO 12-13 07:13:42] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.957868 4 0.953070 5 0.879586 6 0.956849 7 0.950083 10 0.970051 12 0.961295 Name: 0.5999466666666666, dtype: float64.
[INFO 12-13 07:13:42] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.961294995272162 is better than 70.0-th percentile (0.9585534295273673) across comparable trials.
[INFO 12-13 07:13:42] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:13:42] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 12-13 07:13:42] 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.
[INFO 12-13 07:13:42] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:13:42] 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 12-13 07:13:42] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 12-13 07:13:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc415e40>")
[ERROR 12-13 07:13:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc415e40>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:13:52] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="No 'scalar' data found for trial in multiplexer mul=<tensorboard.backend.event_processing.plugin_event_multiplexer.EventMultiplexer object at 0x7f95bc415e40>").
[INFO 12-13 07:13:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 14 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:13:52] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 12-13 07:13:52] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:13:52] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.5999466666666666.
[INFO 12-13 07:13:52] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.957868 4 0.953070 5 0.879586 6 0.956849 7 0.950083 10 0.970051 12 0.961295 Name: 0.5999466666666666, dtype: float64.
[INFO 12-13 07:13:52] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.961294995272162 is better than 70.0-th percentile (0.9585534295273673) across comparable trials.
[INFO 12-13 07:13:52] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:13:52] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 12-13 07:13:52] 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.
[INFO 12-13 07:13:52] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:13:52] 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 12-13 07:13:52] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:14:02] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 12-13 07:14:02] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:14:02] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:14:02] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.5999466666666666.
[INFO 12-13 07:14:02] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.957868 4 0.953070 5 0.879586 6 0.956849 7 0.950083 10 0.970051 12 0.961295 Name: 0.5999466666666666, dtype: float64.
[INFO 12-13 07:14:02] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.961294995272162 is better than 70.0-th percentile (0.9585534295273673) across comparable trials.
[INFO 12-13 07:14:02] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:14:02] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 12-13 07:14:02] 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 12-13 07:14:02] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:14:02] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 12-13 07:14:02] 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.
[INFO 12-13 07:14:02] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:14:12] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 12-13 07:14:12] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 12-13 07:14:12] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 12-13 07:14:12] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.6999466666666667.
[INFO 12-13 07:14:12] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.961791 4 0.956193 5 0.879641 6 0.959601 7 0.951957 10 0.968002 12 0.957730 Name: 0.6999466666666667, dtype: float64.
[INFO 12-13 07:14:12] ax.early_stopping.strategies.percentile: Early stopping decision for 12: True. Reason: Trial objective value 0.9577300499492372 is worse than 70.0-th percentile (0.9600386888505202) across comparable trials.
[INFO 12-13 07:14:12] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:14:12] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 12-13 07:14:12] 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 12-13 07:14:12] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:14:12] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 12-13 07:14:12] 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.
[INFO 12-13 07:14:13] Scheduler: Done submitting trials, waiting for remaining 2 running trials...
[WARNING 12-13 07:14:13] 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.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:14:13] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 12-13 07:14:13] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:14:13] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 2).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:14:23] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 12-13 07:14:23] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:14:23] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 2).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:14:33] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 12-13 07:14:33] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 12-13 07:14:33] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 12-13 07:14:33] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.949745 4 0.941618 5 0.877038 6 0.958928 7 0.944041 8 0.946620 9 0.903510 10 0.959935 11 0.944323 12 0.955522 13 0.939185 Name: 0.3999466666666667, dtype: float64.
[INFO 12-13 07:14:33] ax.early_stopping.strategies.percentile: Early stopping decision for 13: True. Reason: Trial objective value 0.9391845975603377 is worse than 70.0-th percentile (0.9497448784377187) across comparable trials.
[INFO 12-13 07:14:33] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:14:33] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.19994666666666666.
[INFO 12-13 07:14:33] ax.early_stopping.strategies.base: Trial 14'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.
[WARNING 12-13 07:14:34] 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.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:14:34] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 12-13 07:14:34] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:14:34] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:14:44] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 12-13 07:14:44] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:14:44] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:14:54] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 12-13 07:14:54] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 12-13 07:14:54] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:15:05] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 12-13 07:15:05] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:15:05] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.3999466666666667.
[INFO 12-13 07:15:05] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.949745 4 0.941618 5 0.877038 6 0.958928 7 0.944041 8 0.946620 9 0.903510 10 0.959935 11 0.944323 12 0.955522 13 0.939185 14 0.960085 Name: 0.3999466666666667, dtype: float64.
[INFO 12-13 07:15:05] ax.early_stopping.strategies.percentile: Early stopping decision for 14: False. Reason: Trial objective value 0.9600850534556534 is better than 70.0-th percentile (0.9537889010800517) across comparable trials.
[INFO 12-13 07:15:05] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:15:15] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 12-13 07:15:15] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:15:15] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.3999466666666667.
[INFO 12-13 07:15:15] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.949745 4 0.941618 5 0.877038 6 0.958928 7 0.944041 8 0.946620 9 0.903510 10 0.959935 11 0.944323 12 0.955522 13 0.939185 14 0.960085 Name: 0.3999466666666667, dtype: float64.
[INFO 12-13 07:15:15] ax.early_stopping.strategies.percentile: Early stopping decision for 14: False. Reason: Trial objective value 0.9600850534556534 is better than 70.0-th percentile (0.9537889010800517) across comparable trials.
[INFO 12-13 07:15:15] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:15:25] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 12-13 07:15:25] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:15:25] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.49994666666666665.
[INFO 12-13 07:15:25] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.954711 4 0.947598 5 0.876831 6 0.958718 7 0.947719 10 0.966535 12 0.959985 14 0.965395 Name: 0.49994666666666665, dtype: float64.
[INFO 12-13 07:15:25] ax.early_stopping.strategies.percentile: Early stopping decision for 14: False. Reason: Trial objective value 0.9653952968687138 is better than 70.0-th percentile (0.9598587303226371) across comparable trials.
[INFO 12-13 07:15:25] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:15:35] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 12-13 07:15:35] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:15:35] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.5999466666666666.
[INFO 12-13 07:15:35] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.957868 4 0.953070 5 0.879586 6 0.956849 7 0.950083 10 0.970051 12 0.961295 14 0.969107 Name: 0.5999466666666666, dtype: float64.
[INFO 12-13 07:15:35] ax.early_stopping.strategies.percentile: Early stopping decision for 14: False. Reason: Trial objective value 0.9691067826593912 is better than 70.0-th percentile (0.9609522995540627) across comparable trials.
[INFO 12-13 07:15:35] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:15:45] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 12-13 07:15:45] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:15:45] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.5999466666666666.
[INFO 12-13 07:15:45] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.957868 4 0.953070 5 0.879586 6 0.956849 7 0.950083 10 0.970051 12 0.961295 14 0.969107 Name: 0.5999466666666666, dtype: float64.
[INFO 12-13 07:15:45] ax.early_stopping.strategies.percentile: Early stopping decision for 14: False. Reason: Trial objective value 0.9691067826593912 is better than 70.0-th percentile (0.9609522995540627) across comparable trials.
[INFO 12-13 07:15:45] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:15:55] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 12-13 07:15:55] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:15:55] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.6999466666666667.
[INFO 12-13 07:15:55] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.961791 4 0.956193 5 0.879641 6 0.959601 7 0.951957 10 0.968002 12 0.957730 14 0.965633 Name: 0.6999466666666667, dtype: float64.
[INFO 12-13 07:15:55] ax.early_stopping.strategies.percentile: Early stopping decision for 14: False. Reason: Trial objective value 0.9656331805138548 is better than 70.0-th percentile (0.9615715468208158) across comparable trials.
[INFO 12-13 07:15:55] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:16:05] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 12-13 07:16:05] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:16:05] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.7999466666666667.
[INFO 12-13 07:16:05] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.964125 4 0.957856 5 0.871595 6 0.962255 7 0.953009 10 0.970518 14 0.969596 Name: 0.7999466666666667, dtype: float64.
[INFO 12-13 07:16:05] ax.early_stopping.strategies.percentile: Early stopping decision for 14: False. Reason: Trial objective value 0.9695957748702099 is better than 70.0-th percentile (0.9652190335848272) across comparable trials.
[INFO 12-13 07:16:05] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:16:15] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 12-13 07:16:15] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:16:15] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.7999466666666667.
[INFO 12-13 07:16:15] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.964125 4 0.957856 5 0.871595 6 0.962255 7 0.953009 10 0.970518 14 0.969596 Name: 0.7999466666666667, dtype: float64.
[INFO 12-13 07:16:15] ax.early_stopping.strategies.percentile: Early stopping decision for 14: False. Reason: Trial objective value 0.9695957748702099 is better than 70.0-th percentile (0.9652190335848272) across comparable trials.
[INFO 12-13 07:16:15] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:16:25] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 12-13 07:16:25] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 12-13 07:16:25] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.8999466666666667.
[INFO 12-13 07:16:25] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 3 0.965125 4 0.959341 5 0.876126 6 0.963324 7 0.954552 10 0.971331 14 0.969696 Name: 0.8999466666666667, dtype: float64.
[INFO 12-13 07:16:25] ax.early_stopping.strategies.percentile: Early stopping decision for 14: False. Reason: Trial objective value 0.9696963036778167 is better than 70.0-th percentile (0.9660392387393699) across comparable trials.
[INFO 12-13 07:16:25] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
[INFO 12-13 07:16:35] Scheduler: Retrieved COMPLETED trials: [14].
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 12-13 07:16:35] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 12-13 07:16:35] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[WARNING 12-13 07:16:35] 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 50.2 s, sys: 1.19 s, total: 51.4 s Wall time: 31min 42s
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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 | step | |
|---|---|---|---|---|---|---|
| 0 | 3_0 | val_acc | 0.921897 | NaN | 3 | 1874.0 |
| 1 | 3_0 | val_acc | 0.935981 | NaN | 3 | 3749.0 |
| 2 | 3_0 | val_acc | 0.943317 | NaN | 3 | 5624.0 |
| 3 | 3_0 | val_acc | 0.949745 | NaN | 3 | 7499.0 |
| 4 | 3_0 | val_acc | 0.954711 | NaN | 3 | 9374.0 |
| 5 | 3_0 | val_acc | 0.957868 | NaN | 3 | 11249.0 |
| 6 | 3_0 | val_acc | 0.961791 | NaN | 3 | 13124.0 |
| 7 | 3_0 | val_acc | 0.964125 | NaN | 3 | 14999.0 |
| 8 | 3_0 | val_acc | 0.965125 | NaN | 3 | 16874.0 |
| 9 | 3_0 | val_acc | 0.966979 | NaN | 3 | 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
| trial_index | arm_name | trial_status | generation_method | val_acc | hidden_size_1 | hidden_size_2 | learning_rate | dropout | |
|---|---|---|---|---|---|---|---|---|---|
| 0 | 0 | 0_0 | FAILED | Sobol | NaN | 101 | 54 | 0.007728 | 0.399891 |
| 1 | 1 | 1_0 | FAILED | Sobol | NaN | 27 | 31 | 0.000110 | 0.088354 |
| 2 | 2 | 2_0 | FAILED | Sobol | NaN | 20 | 112 | 0.003153 | 0.354146 |
| 3 | 3 | 3_0 | COMPLETED | Sobol | 0.967721 | 73 | 22 | 0.000385 | 0.165650 |
| 4 | 4 | 4_0 | COMPLETED | Sobol | 0.960249 | 47 | 77 | 0.000246 | 0.229226 |
| 5 | 5 | 5_0 | COMPLETED | Sobol | 0.877036 | 21 | 16 | 0.003584 | 0.290769 |
| 6 | 6 | 6_0 | COMPLETED | Sobol | 0.967398 | 42 | 72 | 0.000937 | 0.024794 |
| 7 | 7 | 7_0 | COMPLETED | Sobol | 0.953871 | 94 | 44 | 0.001166 | 0.463284 |
| 8 | 8 | 8_0 | EARLY_STOPPED | BoTorch | 0.946620 | 101 | 67 | 0.000151 | 0.299278 |
| 9 | 9 | 9_0 | EARLY_STOPPED | BoTorch | 0.903510 | 62 | 16 | 0.000150 | 0.500000 |
| 10 | 10 | 10_0 | COMPLETED | BoTorch | 0.973763 | 95 | 128 | 0.000553 | 0.000000 |
| 11 | 11 | 11_0 | EARLY_STOPPED | BoTorch | 0.944323 | 56 | 21 | 0.000211 | 0.000000 |
| 12 | 12 | 12_0 | EARLY_STOPPED | BoTorch | 0.957730 | 72 | 36 | 0.003728 | 0.046231 |
| 13 | 13 | 13_0 | EARLY_STOPPED | BoTorch | 0.939185 | 55 | 24 | 0.000152 | 0.000000 |
| 14 | 14 | 14_0 | COMPLETED | BoTorch | 0.972303 | 128 | 16 | 0.000617 | 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")["step"].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 22.502222222222223%.
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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}")
Encountered exception while plotting results: "['steps'] not in index"
/tmp/tmp.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.anfv3mSZwh/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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, 52.8 seconds.