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 11-23 06:41:08] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.
[INFO 11-23 06:41:08] 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 11-23 06:41:08] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=5
[INFO 11-23 06:41:08] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=5
[INFO 11-23 06:41:08] 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 11-23 06:41:08] 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 11-23 06:41:08] 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 11-23 06:41:08] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:41:08] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
/tmp/tmp.CqWkCGFbVZ/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 11-23 06:41:08] Scheduler: Running trials [0]...
/tmp/tmp.CqWkCGFbVZ/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 11-23 06:41:09] Scheduler: Running trials [1]...
/tmp/tmp.CqWkCGFbVZ/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 11-23 06:41:09] Scheduler: Running trials [2]...
/tmp/tmp.CqWkCGFbVZ/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 11-23 06:41:09] Scheduler: Running trials [3]...
/tmp/tmp.CqWkCGFbVZ/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 11-23 06:41:10] Scheduler: Running trials [4]...
[WARNING 11-23 06:41: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 11-23 06:41:11] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:41:11] Scheduler: Fetching data for trials: 0 - 4 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:41: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 0x7f63e427bdf0>")
[INFO 11-23 06:41: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 0x7f63e427ada0>")
[INFO 11-23 06:41: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 0x7f63e4278820>")
[INFO 11-23 06:41: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 0x7f63e427a1d0>")
[INFO 11-23 06:41: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 0x7f63e4278700>")
[ERROR 11-23 06:41: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 0x7f63e427bdf0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41: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 0x7f63e427ada0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41: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 0x7f63e4278820>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41: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 0x7f63e427a1d0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41: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 0x7f63e4278700>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 06:41:11] 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 0x7f63e427bdf0>").
[INFO 11-23 06:41:11] 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 11-23 06:41:11] 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 0x7f63e427ada0>").
[INFO 11-23 06:41:11] 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 11-23 06:41:11] 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 0x7f63e4278820>").
[INFO 11-23 06:41:11] 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 11-23 06:41: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 0x7f63e427a1d0>").
[INFO 11-23 06:41: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 11-23 06:41: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 0x7f63e4278700>").
[INFO 11-23 06:41: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...
[INFO 11-23 06:41:11] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 11-23 06:41:11] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:41:21] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:41:21] Scheduler: Fetching data for trials: 1 - 4 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:41:21] Scheduler: Retrieved FAILED trials: [0].
[INFO 11-23 06:41: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 0x7f63e313cb80>")
[INFO 11-23 06:41: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 0x7f63e313cb80>")
[INFO 11-23 06:41: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 0x7f63e313cb80>")
[INFO 11-23 06:41: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 0x7f63e313cb80>")
[ERROR 11-23 06:41: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 0x7f63e313cb80>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41: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 0x7f63e313cb80>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41: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 0x7f63e313cb80>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41: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 0x7f63e313cb80>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 06:41:21] 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 0x7f63e313cb80>").
[INFO 11-23 06:41:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 11-23 06:41:21] 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 0x7f63e313cb80>").
[INFO 11-23 06:41:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 11-23 06:41: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 0x7f63e313cb80>").
[INFO 11-23 06:41: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 11-23 06:41: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 0x7f63e313cb80>").
[INFO 11-23 06:41:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 11-23 06:41:21] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
/tmp/tmp.CqWkCGFbVZ/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 11-23 06:41:21] Scheduler: Running trials [5]...
[WARNING 11-23 06:41:22] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 11-23 06:41:22] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:41:22] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:41: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 0x7f63e313d480>")
[INFO 11-23 06:41: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 0x7f63e313d480>")
[INFO 11-23 06:41: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 0x7f63e313d480>")
[INFO 11-23 06:41: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 0x7f63e313d480>")
[INFO 11-23 06:41: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 0x7f63e313d480>")
[ERROR 11-23 06:41: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 0x7f63e313d480>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41: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 0x7f63e313d480>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41: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 0x7f63e313d480>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41: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 0x7f63e313d480>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41: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 0x7f63e313d480>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 06:41:22] 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 0x7f63e313d480>").
[INFO 11-23 06:41:22] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 11-23 06:41:22] 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 0x7f63e313d480>").
[INFO 11-23 06:41:22] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 11-23 06:41: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 0x7f63e313d480>").
[INFO 11-23 06:41: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 11-23 06:41: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 0x7f63e313d480>").
[INFO 11-23 06:41: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 11-23 06:41: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 0x7f63e313d480>").
[INFO 11-23 06:41: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...
[INFO 11-23 06:41:22] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 11-23 06:41:22] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:41:33] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:41:33] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:41:33] 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 0x7f63e4278e20>")
[INFO 11-23 06:41:33] 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 0x7f63e427ba60>")
[INFO 11-23 06:41:33] 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 0x7f63e427bbe0>")
[INFO 11-23 06:41:33] 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 0x7f63e427baf0>")
[INFO 11-23 06:41:33] 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 0x7f63e427b910>")
[ERROR 11-23 06:41:33] 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 0x7f63e4278e20>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41:33] 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 0x7f63e427ba60>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41:33] 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 0x7f63e427bbe0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41:33] 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 0x7f63e427baf0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41:33] 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 0x7f63e427b910>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 06:41:33] 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 0x7f63e4278e20>").
[INFO 11-23 06:41:33] 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 11-23 06:41:33] 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 0x7f63e427ba60>").
[INFO 11-23 06:41:33] 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 11-23 06:41:33] 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 0x7f63e427bbe0>").
[INFO 11-23 06:41:33] 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 11-23 06:41:33] 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 0x7f63e427baf0>").
[INFO 11-23 06:41:33] 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 11-23 06:41:33] 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 0x7f63e427b910>").
[INFO 11-23 06:41:33] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 11-23 06:41:33] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 11-23 06:41:33] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:41:43] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:41:43] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:41:43] 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 0x7f63e4279450>")
[INFO 11-23 06:41:43] 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 0x7f63e427bdf0>")
[INFO 11-23 06:41:43] 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 0x7f63e4278700>")
[INFO 11-23 06:41:43] 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 0x7f63e427afb0>")
[INFO 11-23 06:41:43] 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 0x7f63e427b910>")
[ERROR 11-23 06:41:43] 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 0x7f63e4279450>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41:43] 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 0x7f63e427bdf0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41:43] 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 0x7f63e4278700>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41:43] 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 0x7f63e427afb0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41:43] 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 0x7f63e427b910>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 06:41:43] 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 0x7f63e4279450>").
[INFO 11-23 06:41:43] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 11-23 06:41:43] 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 0x7f63e427bdf0>").
[INFO 11-23 06:41:43] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 11-23 06:41:43] 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 0x7f63e4278700>").
[INFO 11-23 06:41:43] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 11-23 06:41:43] 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 0x7f63e427afb0>").
[INFO 11-23 06:41:43] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 11-23 06:41:43] 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 0x7f63e427b910>").
[INFO 11-23 06:41:43] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 11-23 06:41:43] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 11-23 06:41:43] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:41:53] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:41:53] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:41:53] 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 0x7f63e313e800>")
[INFO 11-23 06:41:53] 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 0x7f63e427b3d0>")
[INFO 11-23 06:41:53] 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 0x7f63e427bf10>")
[INFO 11-23 06:41:53] 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 0x7f63e427b730>")
[INFO 11-23 06:41:53] 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 0x7f63e4278820>")
[ERROR 11-23 06:41:53] 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 0x7f63e313e800>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41:53] 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 0x7f63e427b3d0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41:53] 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 0x7f63e427bf10>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41:53] 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 0x7f63e427b730>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:41:53] 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 0x7f63e4278820>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 06:41:53] 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 0x7f63e313e800>").
[INFO 11-23 06:41:53] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 11-23 06:41:53] 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 0x7f63e427b3d0>").
[INFO 11-23 06:41:53] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 11-23 06:41:53] 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 0x7f63e427bf10>").
[INFO 11-23 06:41:53] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 11-23 06:41:53] 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 0x7f63e427b730>").
[INFO 11-23 06:41:53] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 11-23 06:41:53] 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 0x7f63e4278820>").
[INFO 11-23 06:41:53] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 11-23 06:41:53] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 11-23 06:41:53] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:42:03] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:42:03] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:42:03] 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 0x7f63e313cd60>")
[INFO 11-23 06:42:03] 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 0x7f63e313ece0>")
[INFO 11-23 06:42:03] 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 0x7f63e313ece0>")
[INFO 11-23 06:42:03] 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 0x7f63e313ece0>")
[INFO 11-23 06:42:03] 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 0x7f63e313ece0>")
[ERROR 11-23 06:42:03] 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 0x7f63e313cd60>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:03] 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 0x7f63e313ece0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:03] 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 0x7f63e313ece0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:03] 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 0x7f63e313ece0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:03] 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 0x7f63e313ece0>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 06:42:03] 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 0x7f63e313cd60>").
[INFO 11-23 06:42:03] 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 11-23 06:42:03] 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 0x7f63e313ece0>").
[INFO 11-23 06:42:03] 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 11-23 06:42:03] 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 0x7f63e313ece0>").
[INFO 11-23 06:42:03] 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 11-23 06:42:03] 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 0x7f63e313ece0>").
[INFO 11-23 06:42:03] 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 11-23 06:42:03] 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 0x7f63e313ece0>").
[INFO 11-23 06:42:03] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 11-23 06:42:03] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 11-23 06:42:03] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:42:13] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:42:13] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:42:13] 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 0x7f63e313df90>")
[INFO 11-23 06:42:13] 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 0x7f63e313df90>")
[INFO 11-23 06:42:13] 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 0x7f63e313df90>")
[INFO 11-23 06:42:13] 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 0x7f63e313df90>")
[INFO 11-23 06:42:13] 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 0x7f63e313df90>")
[ERROR 11-23 06:42:13] 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 0x7f63e313df90>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:13] 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 0x7f63e313df90>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:13] 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 0x7f63e313df90>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:13] 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 0x7f63e313df90>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:13] 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 0x7f63e313df90>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 06:42:13] 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 0x7f63e313df90>").
[INFO 11-23 06:42:13] 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 11-23 06:42:13] 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 0x7f63e313df90>").
[INFO 11-23 06:42:13] 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 11-23 06:42:13] 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 0x7f63e313df90>").
[INFO 11-23 06:42:13] 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 11-23 06:42:13] 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 0x7f63e313df90>").
[INFO 11-23 06:42:13] 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 11-23 06:42:13] 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 0x7f63e313df90>").
[INFO 11-23 06:42:13] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 11-23 06:42:13] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 11-23 06:42:13] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:42:23] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:42:23] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:42:23] 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 0x7f63e313ee30>")
[INFO 11-23 06:42:23] 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 0x7f63e313ee30>")
[INFO 11-23 06:42:23] 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 0x7f63e313ee30>")
[INFO 11-23 06:42:23] 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 0x7f63e313ee30>")
[INFO 11-23 06:42:23] 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 0x7f63e313ee30>")
[ERROR 11-23 06:42:23] 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 0x7f63e313ee30>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:23] 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 0x7f63e313ee30>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:23] 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 0x7f63e313ee30>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:23] 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 0x7f63e313ee30>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:23] 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 0x7f63e313ee30>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 06:42:23] 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 0x7f63e313ee30>").
[INFO 11-23 06:42:23] 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 11-23 06:42:23] 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 0x7f63e313ee30>").
[INFO 11-23 06:42:23] 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 11-23 06:42:23] 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 0x7f63e313ee30>").
[INFO 11-23 06:42:23] 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 11-23 06:42:23] 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 0x7f63e313ee30>").
[INFO 11-23 06:42:23] 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 11-23 06:42:23] 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 0x7f63e313ee30>").
[INFO 11-23 06:42:23] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 11-23 06:42:23] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 11-23 06:42:23] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:42:33] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:42:33] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:42:33] 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 0x7f63e313d240>")
[INFO 11-23 06:42:33] 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 0x7f63e313d240>")
[INFO 11-23 06:42:33] 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 0x7f63e313d240>")
[INFO 11-23 06:42:33] 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 0x7f63e313d240>")
[INFO 11-23 06:42:33] 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 0x7f63e313d240>")
[ERROR 11-23 06:42:33] 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 0x7f63e313d240>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:33] 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 0x7f63e313d240>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:33] 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 0x7f63e313d240>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:33] 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 0x7f63e313d240>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:33] 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 0x7f63e313d240>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 06:42:33] 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 0x7f63e313d240>").
[INFO 11-23 06:42:33] 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 11-23 06:42:33] 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 0x7f63e313d240>").
[INFO 11-23 06:42:33] 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 11-23 06:42:33] 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 0x7f63e313d240>").
[INFO 11-23 06:42:33] 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 11-23 06:42:33] 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 0x7f63e313d240>").
[INFO 11-23 06:42:33] 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 11-23 06:42:33] 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 0x7f63e313d240>").
[INFO 11-23 06:42:33] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 11-23 06:42:33] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 11-23 06:42:33] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:42:43] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:42:43] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:42:43] 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 0x7f63e313ecb0>")
[INFO 11-23 06:42:43] 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 0x7f63e313ecb0>")
[INFO 11-23 06:42:43] 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 0x7f63e313ecb0>")
[INFO 11-23 06:42:44] 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 0x7f63e313ecb0>")
[INFO 11-23 06:42:44] 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 0x7f63e313ecb0>")
[ERROR 11-23 06:42:44] 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 0x7f63e313ecb0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:44] 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 0x7f63e313ecb0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:44] 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 0x7f63e313ecb0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:44] 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 0x7f63e313ecb0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:44] 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 0x7f63e313ecb0>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 06:42:44] 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 0x7f63e313ecb0>").
[INFO 11-23 06:42:44] 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 11-23 06:42:44] 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 0x7f63e313ecb0>").
[INFO 11-23 06:42:44] 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 11-23 06:42:44] 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 0x7f63e313ecb0>").
[INFO 11-23 06:42:44] 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 11-23 06:42:44] 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 0x7f63e313ecb0>").
[INFO 11-23 06:42:44] 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 11-23 06:42:44] 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 0x7f63e313ecb0>").
[INFO 11-23 06:42:44] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 11-23 06:42:44] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 11-23 06:42:44] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:42:54] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:42:54] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:42:54] 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 0x7f63e313f5b0>")
[INFO 11-23 06:42:54] 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 0x7f63e313f160>")
[INFO 11-23 06:42:54] 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 0x7f63e313f160>")
[INFO 11-23 06:42:54] 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 0x7f63e313f160>")
[INFO 11-23 06:42:54] 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 0x7f63e313f160>")
[ERROR 11-23 06:42:54] 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 0x7f63e313f5b0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:54] 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 0x7f63e313f160>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:54] 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 0x7f63e313f160>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:54] 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 0x7f63e313f160>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:42:54] 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 0x7f63e313f160>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 06:42:54] 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 0x7f63e313f5b0>").
[INFO 11-23 06:42:54] 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 11-23 06:42:54] 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 0x7f63e313f160>").
[INFO 11-23 06:42:54] 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 11-23 06:42:54] 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 0x7f63e313f160>").
[INFO 11-23 06:42:54] 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 11-23 06:42:54] 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 0x7f63e313f160>").
[INFO 11-23 06:42:54] 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 11-23 06:42:54] 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 0x7f63e313f160>").
[INFO 11-23 06:42:54] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 11-23 06:42:54] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 11-23 06:42:54] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:43:04] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:43:04] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:43:04] 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 0x7f63e313e320>")
[INFO 11-23 06:43:04] 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 0x7f63e313e320>")
[INFO 11-23 06:43:04] 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 0x7f63e313e320>")
[ERROR 11-23 06:43:04] 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 0x7f63e313e320>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:43:04] 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 0x7f63e313e320>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:43:04] 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 0x7f63e313e320>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 06:43:04] 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 0x7f63e313e320>").
[INFO 11-23 06:43:04] 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 11-23 06:43:04] 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 0x7f63e313e320>").
[INFO 11-23 06:43:04] 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 11-23 06:43:04] 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 0x7f63e313e320>").
[INFO 11-23 06:43:04] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:43: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 11-23 06:43:04] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:43:14] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:43:14] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:43:14] 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 0x7f63e313f850>")
[INFO 11-23 06:43:14] 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 0x7f63e313cbe0>")
[ERROR 11-23 06:43:14] 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 0x7f63e313f850>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 06:43:14] 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 0x7f63e313cbe0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 06:43:14] 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 0x7f63e313f850>").
[INFO 11-23 06:43:14] 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 11-23 06:43:14] 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 0x7f63e313cbe0>").
[INFO 11-23 06:43:14] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:43: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 11-23 06:43:14] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:43:24] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:43:24] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:43:24] 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 0x7f63e313e2c0>")
[ERROR 11-23 06:43:24] 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 0x7f63e313e2c0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 06:43:24] 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 0x7f63e313e2c0>").
[INFO 11-23 06:43:24] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:43: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 11-23 06:43:24] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:43:34] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:43:34] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:43: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 11-23 06:43:35] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:43:45] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:43:45] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:43: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 11-23 06:43:45] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:43:55] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:43:55] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:43: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 11-23 06:43:55] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:44:05] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:44:05] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:44: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 11-23 06:44:05] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:44:15] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:44:15] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:44: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 11-23 06:44:15] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:44:26] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:44:26] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:44: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 11-23 06:44:26] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:44:36] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:44:36] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:44: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 11-23 06:44:36] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:44:46] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:44:46] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:44: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 11-23 06:44:46] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:44:56] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:44:56] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:44: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 11-23 06:44:56] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:45:06] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:45:06] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:45: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 11-23 06:45:07] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:45:17] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:45:17] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:45: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 11-23 06:45:17] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:45:27] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:45:27] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:45: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 11-23 06:45:27] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:45:37] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:45:37] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:45: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 11-23 06:45:37] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:45:47] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:45:48] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:45: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 11-23 06:45:48] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:45:58] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:45:58] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:45: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 11-23 06:45:58] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:46:08] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:46:08] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:46: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 11-23 06:46:08] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:46:18] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:46:18] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:46: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 11-23 06:46:19] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:46:29] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:46:29] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:46: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 11-23 06:46:29] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:46:39] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:46:39] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:46: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 11-23 06:46:39] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:46:49] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:46:49] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:46: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 11-23 06:46:49] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:46:59] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:46:59] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:46: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 11-23 06:46:59] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:47:10] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:47:10] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:47: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 11-23 06:47:10] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:47:20] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:47:20] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:47: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 11-23 06:47:20] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:47:30] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:47:30] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:47: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 11-23 06:47:30] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:47:40] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:47:40] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:47: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 11-23 06:47:40] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:47:50] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:47:50] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:47: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 11-23 06:47:51] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:48:01] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:48:01] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:48: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 11-23 06:48:01] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:48:11] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:48:11] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:48: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 11-23 06:48:11] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:48:21] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:48:21] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:48: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 11-23 06:48:22] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:48:32] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:48:32] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:48: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 11-23 06:48:32] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:48:42] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:48:42] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:48: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 11-23 06:48:42] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:48:52] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:48:52] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:48: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 11-23 06:48:52] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:49:02] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:49:02] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:49: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 11-23 06:49:02] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:49:12] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:49:12] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:49: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 11-23 06:49:13] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:49:23] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:49:23] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:49: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 11-23 06:49:23] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:49:33] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:49:33] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:49: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 11-23 06:49:33] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:49:43] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:49:43] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:49: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 11-23 06:49:43] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:49:53] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:49:54] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:49: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 11-23 06:49:54] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:50:04] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:50:04] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:50: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 11-23 06:50:04] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:50:14] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:50:14] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:50: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 11-23 06:50:14] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:50:24] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:50:24] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:50: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 11-23 06:50:24] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:50:34] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:50:34] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:50: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 11-23 06:50:35] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:50:45] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:50:45] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:50: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 11-23 06:50:45] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:50:55] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:50:55] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:50: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 11-23 06:50:55] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:51:05] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:51:05] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:51: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 11-23 06:51:06] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:51:16] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:51:16] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:51: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 11-23 06:51:16] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:51:26] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:51:26] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:51: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 11-23 06:51:26] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:51:36] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:51:36] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:51: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 11-23 06:51:36] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:51:46] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:51:46] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:51: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 11-23 06:51:47] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:51:57] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:51:57] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:51: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 11-23 06:51:57] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:52:07] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:52:07] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:52: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 11-23 06:52:07] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:52:17] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:52:17] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:52: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 11-23 06:52:17] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:52:27] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:52:27] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:52: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 11-23 06:52:28] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:52:38] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:52:38] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:52: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 11-23 06:52:38] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:52:48] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:52:48] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:52: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 11-23 06:52:48] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:52:58] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:52:58] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:52: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 11-23 06:52:58] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:53:08] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:53:08] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:53: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 11-23 06:53:09] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:53:19] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:53:19] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:53: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 11-23 06:53:19] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:53:29] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:53:29] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:53: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 11-23 06:53:29] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:53:39] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:53:39] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:53: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 11-23 06:53:39] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:53:49] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:53:49] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:53:50] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 11-23 06:53:50] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:54:00] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:54:00] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:54: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 11-23 06:54:00] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:54:10] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:54:10] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:54: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 11-23 06:54:10] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:54:20] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:54:20] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:54: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 11-23 06:54:20] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:54:30] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:54:30] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:54:31] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 11-23 06:54:31] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:54:41] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:54:41] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:54: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 11-23 06:54:41] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:54:51] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:54:51] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:54: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 11-23 06:54:51] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:55:01] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:55:01] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:55: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 11-23 06:55:02] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:55:12] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:55:12] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:55: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 11-23 06:55:12] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:55:22] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:55:22] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:55: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 11-23 06:55:22] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:55:32] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:55:32] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:55: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 11-23 06:55:33] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:55:43] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:55:43] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:55: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 11-23 06:55:43] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:55:53] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:55:53] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:55: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 11-23 06:55:53] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:56:03] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:56:03] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:56: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 11-23 06:56:03] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:56:13] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:56:13] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:56: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 11-23 06:56:14] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:56:24] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:56:24] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:56: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 11-23 06:56:24] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:56:34] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:56:34] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:56: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 11-23 06:56:34] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:56:44] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:56:44] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:56: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 11-23 06:56:44] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:56:54] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:56:54] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:56: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.
[WARNING 11-23 06:56:55] 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 11-23 06:56:55] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:56:55] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:56: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 11-23 06:56:55] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:57:05] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:57:05] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:57: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 11-23 06:57:05] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:57:15] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:57:15] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:57: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 11-23 06:57:16] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:57:26] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:57:26] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:57: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 11-23 06:57:26] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:57:36] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:57:36] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:57: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 11-23 06:57:36] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:57:46] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:57:46] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:57: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 11-23 06:57:46] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:57:56] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:57:56] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:57: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 11-23 06:57:57] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:58:07] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:58:07] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:58: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 11-23 06:58:07] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:58:17] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:58:17] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:58: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 11-23 06:58:17] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:58:27] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:58:27] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:58: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 11-23 06:58:27] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:58:37] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:58:37] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:58: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 11-23 06:58:38] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:58:48] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:58:48] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:58: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 11-23 06:58:48] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:58:58] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:58:58] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:58: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 11-23 06:58:58] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:59:08] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:59:08] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:59: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 11-23 06:59:08] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:59:18] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:59:18] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 06:59: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 11-23 06:59:19] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:59:29] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:59:29] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:59: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 11-23 06:59:29] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:59:39] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:59:39] Scheduler: Fetching data for trials: 1 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:59: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 11-23 06:59:39] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 5).
[INFO 11-23 06:59:49] Scheduler: Fetching data for newly completed trials: [1].
[INFO 11-23 06:59:49] Scheduler: Fetching data for trials: 2 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 06:59:49] Scheduler: Retrieved COMPLETED trials: [1].
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:59:49] 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 11-23 06:59:49] 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 11-23 06:59:49] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 06:59:49] Scheduler: Fetching data for trials: 2 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 06:59: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 11-23 06:59:50] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 4).
[INFO 11-23 07:00:00] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:00:00] Scheduler: Fetching data for trials: 2 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:00: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 11-23 07:00:00] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 4).
[INFO 11-23 07:00:10] Scheduler: Fetching data for newly completed trials: [2].
[INFO 11-23 07:00:10] Scheduler: Fetching data for trials: 3 - 5 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:00:10] Scheduler: Retrieved COMPLETED trials: [2].
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:00:10] ax.early_stopping.strategies.base: The number of completed trials (2) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[WARNING 11-23 07:00:10] 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 11-23 07:00:10] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:00:10] Scheduler: Fetching data for trials: 3 - 5 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:00:10] ax.early_stopping.strategies.base: The number of completed trials (2) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 11-23 07:00:10] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:00:20] Scheduler: Fetching data for newly completed trials: 3 - 4.
[INFO 11-23 07:00:20] Scheduler: Fetching data for trials: [5] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:00:20] Scheduler: Retrieved COMPLETED trials: 3 - 4.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:00:20] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 07:00:22] Scheduler: Running trials [6]...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 07:00:25] Scheduler: Running trials [7]...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 07:00:30] Scheduler: Running trials [8]...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:00:31] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 11-23 07:00:31] 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 11-23 07:00:31] Scheduler: Fetching data for newly completed trials: [5].
[INFO 11-23 07:00:31] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:00:31] Scheduler: Retrieved COMPLETED trials: [5].
[INFO 11-23 07:00: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 0x7f63e1fe9330>")
[INFO 11-23 07:00: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 0x7f63e1feb760>")
[INFO 11-23 07:00: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 0x7f63e1feb4c0>")
[ERROR 11-23 07:00: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 0x7f63e1fe9330>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 07:00: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 0x7f63e1feb760>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 07:00: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 0x7f63e1feb4c0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:00:31] 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 0x7f63e1fe9330>").
[INFO 11-23 07:00:31] 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 11-23 07:00: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 0x7f63e1feb760>").
[INFO 11-23 07:00: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 11-23 07:00: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 0x7f63e1feb4c0>").
[INFO 11-23 07:00: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...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:00:31] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 11-23 07:00:31] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:00:32] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 11-23 07:00:32] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:00:32] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:00: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 0x7f63e1fc83d0>")
[INFO 11-23 07:00: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 0x7f63e1fc83d0>")
[INFO 11-23 07:00: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 0x7f63e1fc83d0>")
[ERROR 11-23 07:00: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 0x7f63e1fc83d0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 07:00: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 0x7f63e1fc83d0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 07:00: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 0x7f63e1fc83d0>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 07:00:32] 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 0x7f63e1fc83d0>").
[INFO 11-23 07:00:32] 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 11-23 07:00: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 0x7f63e1fc83d0>").
[INFO 11-23 07:00: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 11-23 07:00: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 0x7f63e1fc83d0>").
[INFO 11-23 07:00: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...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:00:32] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 11-23 07:00:32] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:00:32] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:00:42] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:00:42] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:00: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 0x7f63e427afb0>")
[INFO 11-23 07:00: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 0x7f63e427afb0>")
[INFO 11-23 07:00: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 0x7f63e427afb0>")
[ERROR 11-23 07:00: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 0x7f63e427afb0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 07:00: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 0x7f63e427afb0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 07:00: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 0x7f63e427afb0>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 07:00:42] 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 0x7f63e427afb0>").
[INFO 11-23 07:00:42] 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 11-23 07:00: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 0x7f63e427afb0>").
[INFO 11-23 07:00: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 11-23 07:00: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 0x7f63e427afb0>").
[INFO 11-23 07:00: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...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:00:42] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 11-23 07:00:42] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:00:42] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:00:52] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:00:52] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:00: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 0x7f63e31c57e0>")
[INFO 11-23 07:00: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 0x7f63e31c57e0>")
[INFO 11-23 07:00: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 0x7f63e31c57e0>")
[ERROR 11-23 07:00: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 0x7f63e31c57e0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 07:00: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 0x7f63e31c57e0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 07:00: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 0x7f63e31c57e0>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 07:00:52] 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 0x7f63e31c57e0>").
[INFO 11-23 07:00:52] 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 11-23 07:00: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 0x7f63e31c57e0>").
[INFO 11-23 07:00: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 11-23 07:00: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 0x7f63e31c57e0>").
[INFO 11-23 07:00: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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:00:52] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 11-23 07:00:52] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:00:52] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:01:02] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:01:02] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:01: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 0x7f63e31c4f10>")
[INFO 11-23 07:01: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 0x7f63e31c4f10>")
[INFO 11-23 07:01: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 0x7f63e31c4f10>")
[ERROR 11-23 07:01: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 0x7f63e31c4f10>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 07:01: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 0x7f63e31c4f10>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 07:01: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 0x7f63e31c4f10>"). Ignoring for now -- will retry query on next call to fetch.
[WARNING 11-23 07:01:02] 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 0x7f63e31c4f10>").
[INFO 11-23 07:01:02] 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 11-23 07:01: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 0x7f63e31c4f10>").
[INFO 11-23 07:01: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 11-23 07:01: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 0x7f63e31c4f10>").
[INFO 11-23 07:01: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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:01:02] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 11-23 07:01:02] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:01:02] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:01:12] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:01:12] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:01: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 0x7f63e1fb2f80>")
[ERROR 11-23 07:01: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 0x7f63e1fb2f80>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:01:12] 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 0x7f63e1fb2f80>").
[INFO 11-23 07:01:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 8 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:01:13] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 11-23 07:01:13] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:01:13] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:01:23] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:01:23] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:01:23] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 11-23 07:01:23] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:01:23] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:01:33] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:01:33] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:01:33] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 11-23 07:01:33] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:01:33] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:01:43] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:01:43] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:01:43] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 11-23 07:01:43] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:01:43] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:01:53] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:01:53] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:01:53] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 11-23 07:01:53] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:01:53] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:02:03] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:02:03] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:02:03] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 11-23 07:02:03] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:02:03] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:02:13] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:02:13] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:02:13] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 11-23 07:02:13] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:02:13] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:02:23] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:02:23] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:02:23] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 11-23 07:02:23] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:02:23] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:02:33] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:02:33] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:02:34] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 11-23 07:02:34] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:02:34] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:02:44] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:02:44] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:02:44] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 11-23 07:02:44] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:02:44] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:02:54] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:02:54] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:02:54] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 11-23 07:02:54] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:02:54] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:03:04] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:03:04] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:03:04] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 11-23 07:03:04] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:03:04] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:03:14] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:03:14] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:03:14] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 11-23 07:03:14] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 11-23 07:03:14] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:03:24] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:03:24] Scheduler: Fetching data for trials: 6 - 8 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:03:24] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 11-23 07:03:24] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 11-23 07:03:24] ax.early_stopping.strategies.base: Last progression of Trial 8 is 0.29994666666666664.
[INFO 11-23 07:03:24] 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 11-23 07:03:24] ax.early_stopping.strategies.percentile: Considering trial 6 for early stopping.
[INFO 11-23 07:03:24] ax.early_stopping.strategies.base: Last progression of Trial 6 is 0.3999466666666667.
[INFO 11-23 07:03:24] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:03:24] ax.early_stopping.strategies.percentile: Early stopping decision for 6: True. Reason: Trial objective value 0.9123482463395066 is worse than 70.0-th percentile (0.9405524671371347) across comparable trials.
[INFO 11-23 07:03:24] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:03:24] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.3999466666666667.
[INFO 11-23 07:03:24] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:03:24] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9441649758169803 is better than 70.0-th percentile (0.9405524671371347) across comparable trials.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 07:03:33] Scheduler: Running trials [9]...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:03:34] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 11-23 07:03: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.
[INFO 11-23 07:03:34] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:03:34] Scheduler: Fetching data for trials: 7 - 9 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:03:34] 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 0x7f63e1fdc070>")
[ERROR 11-23 07:03:34] 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 0x7f63e1fdc070>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:03:34] 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 0x7f63e1fdc070>").
[INFO 11-23 07:03:34] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 9 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:03:34] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 11-23 07:03:34] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 11-23 07:03:34] ax.early_stopping.strategies.base: Last progression of Trial 8 is 0.29994666666666664.
[INFO 11-23 07:03:34] 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 11-23 07:03:34] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:03:34] ax.early_stopping.strategies.base: There is not yet any data associated with trial 9 and metric val_acc. Not early stopping this trial.
[INFO 11-23 07:03:34] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:03:34] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.3999466666666667.
[INFO 11-23 07:03:34] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:03:34] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9441649758169803 is better than 70.0-th percentile (0.9405524671371347) across comparable trials.
[INFO 11-23 07:03:34] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:03:44] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:03:44] Scheduler: Fetching data for trials: 7 - 9 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:03:44] 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 0x7f63e31c6920>")
[ERROR 11-23 07:03:44] 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 0x7f63e31c6920>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:03:44] 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 0x7f63e31c6920>").
[INFO 11-23 07:03:44] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 9 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:03:44] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 11-23 07:03:44] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 11-23 07:03:44] ax.early_stopping.strategies.base: Last progression of Trial 8 is 0.3999466666666667.
[INFO 11-23 07:03:44] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 8 0.885021 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:03:44] ax.early_stopping.strategies.percentile: Early stopping decision for 8: True. Reason: Trial objective value 0.8850212144146998 is worse than 70.0-th percentile (0.9395444519120484) across comparable trials.
[INFO 11-23 07:03:44] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:03:44] ax.early_stopping.strategies.base: There is not yet any data associated with trial 9 and metric val_acc. Not early stopping this trial.
[INFO 11-23 07:03:44] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:03:44] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.3999466666666667.
[INFO 11-23 07:03:44] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 8 0.885021 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:03:44] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9441649758169803 is better than 70.0-th percentile (0.9395444519120484) across comparable trials.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 07:03:48] Scheduler: Running trials [10]...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:03:49] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 11-23 07:03:49] 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 11-23 07:03:49] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:03:49] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:03: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 0x7f63e1fe1a20>")
[INFO 11-23 07:03: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 0x7f63e1fe3670>")
[ERROR 11-23 07:03: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 0x7f63e1fe1a20>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 07:03: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 0x7f63e1fe3670>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:03:49] 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 0x7f63e1fe1a20>").
[INFO 11-23 07:03:49] 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 11-23 07:03:49] 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 0x7f63e1fe3670>").
[INFO 11-23 07:03:49] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:03:49] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 11-23 07:03:49] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:03:49] ax.early_stopping.strategies.base: There is not yet any data associated with trial 9 and metric val_acc. Not early stopping this trial.
[INFO 11-23 07:03:49] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:03:49] ax.early_stopping.strategies.base: There is not yet any data associated with trial 10 and metric val_acc. Not early stopping this trial.
[INFO 11-23 07:03:49] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:03:49] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.3999466666666667.
[INFO 11-23 07:03:49] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 8 0.885021 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:03:49] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9441649758169803 is better than 70.0-th percentile (0.9395444519120484) across comparable trials.
[INFO 11-23 07:03:49] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:03:59] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:03:59] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:03:59] 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 0x7f63e31c7820>")
[INFO 11-23 07:03:59] 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 0x7f63e31c4cd0>")
[ERROR 11-23 07:03:59] 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 0x7f63e31c7820>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 07:03:59] 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 0x7f63e31c4cd0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:03:59] 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 0x7f63e31c7820>").
[INFO 11-23 07:03:59] 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 11-23 07:03:59] 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 0x7f63e31c4cd0>").
[INFO 11-23 07:03:59] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:03:59] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 11-23 07:03:59] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:03:59] ax.early_stopping.strategies.base: There is not yet any data associated with trial 9 and metric val_acc. Not early stopping this trial.
[INFO 11-23 07:03:59] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:03:59] ax.early_stopping.strategies.base: There is not yet any data associated with trial 10 and metric val_acc. Not early stopping this trial.
[INFO 11-23 07:03:59] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:03:59] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.49994666666666665.
[INFO 11-23 07:03:59] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.783298 2 0.942551 3 0.919086 4 0.959752 5 0.945700 7 0.950636 Name: 0.49994666666666665, dtype: float64.
[INFO 11-23 07:03:59] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9506363311979403 is better than 70.0-th percentile (0.9481682348725406) across comparable trials.
[INFO 11-23 07:03:59] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:04:09] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:04:09] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:04:09] 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 0x7f63e4278df0>")
[INFO 11-23 07:04:09] 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 0x7f63e1fb3ac0>")
[ERROR 11-23 07:04:09] 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 0x7f63e4278df0>"). Ignoring for now -- will retry query on next call to fetch.
[ERROR 11-23 07:04:09] 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 0x7f63e1fb3ac0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:04:09] 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 0x7f63e4278df0>").
[INFO 11-23 07:04:09] 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 11-23 07:04:09] 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 0x7f63e1fb3ac0>").
[INFO 11-23 07:04:09] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:04:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 11-23 07:04:09] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:04:09] ax.early_stopping.strategies.base: There is not yet any data associated with trial 9 and metric val_acc. Not early stopping this trial.
[INFO 11-23 07:04:09] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:04:09] ax.early_stopping.strategies.base: There is not yet any data associated with trial 10 and metric val_acc. Not early stopping this trial.
[INFO 11-23 07:04:09] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:04:09] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.49994666666666665.
[INFO 11-23 07:04:09] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.783298 2 0.942551 3 0.919086 4 0.959752 5 0.945700 7 0.950636 Name: 0.49994666666666665, dtype: float64.
[INFO 11-23 07:04:09] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9506363311979403 is better than 70.0-th percentile (0.9481682348725406) across comparable trials.
[INFO 11-23 07:04:09] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:04:19] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:04:19] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:04:19] 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 0x7f63e31c7820>")
[ERROR 11-23 07:04:19] 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 0x7f63e31c7820>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:04:19] 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 0x7f63e31c7820>").
[INFO 11-23 07:04:19] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:04:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 11-23 07:04:19] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:04:19] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:04:19] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.09994666666666667.
[INFO 11-23 07:04:19] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:04:19] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:04:19] ax.early_stopping.strategies.base: There is not yet any data associated with trial 10 and metric val_acc. Not early stopping this trial.
[INFO 11-23 07:04:19] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:04:19] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.49994666666666665.
[INFO 11-23 07:04:19] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.783298 2 0.942551 3 0.919086 4 0.959752 5 0.945700 7 0.950636 Name: 0.49994666666666665, dtype: float64.
[INFO 11-23 07:04:19] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9506363311979403 is better than 70.0-th percentile (0.9481682348725406) across comparable trials.
[INFO 11-23 07:04:19] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:04:29] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:04:29] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:04:29] 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 0x7f63e1fe1a20>")
[ERROR 11-23 07:04:29] 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 0x7f63e1fe1a20>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:04:29] 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 0x7f63e1fe1a20>").
[INFO 11-23 07:04:29] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:04:29] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 11-23 07:04:30] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:04:30] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:04:30] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.09994666666666667.
[INFO 11-23 07:04:30] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:04:30] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:04:30] ax.early_stopping.strategies.base: There is not yet any data associated with trial 10 and metric val_acc. Not early stopping this trial.
[INFO 11-23 07:04:30] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:04:30] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.49994666666666665.
[INFO 11-23 07:04:30] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.783298 2 0.942551 3 0.919086 4 0.959752 5 0.945700 7 0.950636 Name: 0.49994666666666665, dtype: float64.
[INFO 11-23 07:04:30] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9506363311979403 is better than 70.0-th percentile (0.9481682348725406) across comparable trials.
[INFO 11-23 07:04:30] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:04:40] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:04:40] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:04:40] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 11-23 07:04:40] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:04:40] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:04:40] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:04:40] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.09994666666666667.
[INFO 11-23 07:04:40] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:04:40] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:04:40] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.09994666666666667.
[INFO 11-23 07:04:40] ax.early_stopping.strategies.base: Trial 10'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 11-23 07:04:40] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:04:40] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.5999466666666666.
[INFO 11-23 07:04:40] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.756424 2 0.945875 3 0.919265 4 0.960899 5 0.950396 7 0.955362 Name: 0.5999466666666666, dtype: float64.
[INFO 11-23 07:04:40] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9553624632180668 is better than 70.0-th percentile (0.9528791513462759) across comparable trials.
[INFO 11-23 07:04:40] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:04:50] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:04:50] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:04:50] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 11-23 07:04:50] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:04:50] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:04:50] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:04:50] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.09994666666666667.
[INFO 11-23 07:04:50] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:04:50] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:04:50] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.09994666666666667.
[INFO 11-23 07:04:50] ax.early_stopping.strategies.base: Trial 10'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 11-23 07:04:50] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:04:50] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.5999466666666666.
[INFO 11-23 07:04:50] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.756424 2 0.945875 3 0.919265 4 0.960899 5 0.950396 7 0.955362 Name: 0.5999466666666666, dtype: float64.
[INFO 11-23 07:04:50] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9553624632180668 is better than 70.0-th percentile (0.9528791513462759) across comparable trials.
[INFO 11-23 07:04:50] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:05:00] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:05:00] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:05:00] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 11-23 07:05:00] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:05:00] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:05:00] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:05:00] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.09994666666666667.
[INFO 11-23 07:05:00] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:05:00] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:05:00] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.09994666666666667.
[INFO 11-23 07:05:00] ax.early_stopping.strategies.base: Trial 10'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 11-23 07:05:00] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:05:00] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.5999466666666666.
[INFO 11-23 07:05:00] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.756424 2 0.945875 3 0.919265 4 0.960899 5 0.950396 7 0.955362 Name: 0.5999466666666666, dtype: float64.
[INFO 11-23 07:05:00] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9553624632180668 is better than 70.0-th percentile (0.9528791513462759) across comparable trials.
[INFO 11-23 07:05:00] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:05:10] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:05:10] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:05:10] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 11-23 07:05:10] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:05:10] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:05:10] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.19994666666666666.
[INFO 11-23 07:05:10] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:05:10] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:05:10] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.09994666666666667.
[INFO 11-23 07:05:10] ax.early_stopping.strategies.base: Trial 10'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 11-23 07:05:10] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:05:10] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.5999466666666666.
[INFO 11-23 07:05:10] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.756424 2 0.945875 3 0.919265 4 0.960899 5 0.950396 7 0.955362 Name: 0.5999466666666666, dtype: float64.
[INFO 11-23 07:05:10] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9553624632180668 is better than 70.0-th percentile (0.9528791513462759) across comparable trials.
[INFO 11-23 07:05:10] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:05:20] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:05:20] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:05:21] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 11-23 07:05:21] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:05:21] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:05:21] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.19994666666666666.
[INFO 11-23 07:05:21] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:05:21] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:05:21] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.09994666666666667.
[INFO 11-23 07:05:21] ax.early_stopping.strategies.base: Trial 10'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 11-23 07:05:21] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:05:21] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.6999466666666667.
[INFO 11-23 07:05:21] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.736960 2 0.946211 3 0.922893 4 0.959453 5 0.952845 7 0.959613 Name: 0.6999466666666667, dtype: float64.
[INFO 11-23 07:05:21] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.959612810261878 is better than 70.0-th percentile (0.9561486751720343) across comparable trials.
[INFO 11-23 07:05:21] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:05:31] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:05:31] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:05:31] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 11-23 07:05:31] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:05:31] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.19994666666666666.
[INFO 11-23 07:05:31] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:05:31] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:05:31] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.19994666666666666.
[INFO 11-23 07:05:31] ax.early_stopping.strategies.base: Trial 10's most recent progression (0.19994666666666666) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 11-23 07:05:31] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:05:31] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.6999466666666667.
[INFO 11-23 07:05:31] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.736960 2 0.946211 3 0.922893 4 0.959453 5 0.952845 7 0.959613 Name: 0.6999466666666667, dtype: float64.
[INFO 11-23 07:05:31] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.959612810261878 is better than 70.0-th percentile (0.9561486751720343) across comparable trials.
[INFO 11-23 07:05:31] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:05:41] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:05:41] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:05:41] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 11-23 07:05:41] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:05:41] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.19994666666666666.
[INFO 11-23 07:05:41] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:05:41] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:05:41] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.19994666666666666.
[INFO 11-23 07:05:41] ax.early_stopping.strategies.base: Trial 10's most recent progression (0.19994666666666666) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 11-23 07:05:41] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:05:41] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.6999466666666667.
[INFO 11-23 07:05:41] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.736960 2 0.946211 3 0.922893 4 0.959453 5 0.952845 7 0.959613 Name: 0.6999466666666667, dtype: float64.
[INFO 11-23 07:05:41] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.959612810261878 is better than 70.0-th percentile (0.9561486751720343) across comparable trials.
[INFO 11-23 07:05:41] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:05:51] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:05:51] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:05:51] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 11-23 07:05:51] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:05:51] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.19994666666666666.
[INFO 11-23 07:05:51] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:05:51] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:05:51] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.19994666666666666.
[INFO 11-23 07:05:51] ax.early_stopping.strategies.base: Trial 10's most recent progression (0.19994666666666666) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 11-23 07:05:51] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:05:51] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.6999466666666667.
[INFO 11-23 07:05:51] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.736960 2 0.946211 3 0.922893 4 0.959453 5 0.952845 7 0.959613 Name: 0.6999466666666667, dtype: float64.
[INFO 11-23 07:05:51] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.959612810261878 is better than 70.0-th percentile (0.9561486751720343) across comparable trials.
[INFO 11-23 07:05:51] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:06:01] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:06:01] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:06:01] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 11-23 07:06:01] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:06:01] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.29994666666666664.
[INFO 11-23 07:06:01] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:06:01] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:06:01] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.19994666666666666.
[INFO 11-23 07:06:01] ax.early_stopping.strategies.base: Trial 10's most recent progression (0.19994666666666666) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 11-23 07:06:01] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:06:01] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.7999466666666667.
[INFO 11-23 07:06:01] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.729005 2 0.947624 3 0.925085 4 0.962829 5 0.954617 7 0.963040 Name: 0.7999466666666667, dtype: float64.
[INFO 11-23 07:06:01] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9630399011919194 is better than 70.0-th percentile (0.9587231962531011) across comparable trials.
[INFO 11-23 07:06:01] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:06:11] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:06:11] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:06:11] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 11-23 07:06:11] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:06:11] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.29994666666666664.
[INFO 11-23 07:06:11] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:06:11] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:06:11] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.29994666666666664.
[INFO 11-23 07:06:11] ax.early_stopping.strategies.base: Trial 10'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 11-23 07:06:11] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:06:11] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.7999466666666667.
[INFO 11-23 07:06:11] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.729005 2 0.947624 3 0.925085 4 0.962829 5 0.954617 7 0.963040 Name: 0.7999466666666667, dtype: float64.
[INFO 11-23 07:06:11] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9630399011919194 is better than 70.0-th percentile (0.9587231962531011) across comparable trials.
[INFO 11-23 07:06:11] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:06:21] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:06:21] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:06:22] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 11-23 07:06:22] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:06:22] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.29994666666666664.
[INFO 11-23 07:06:22] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:06:22] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:06:22] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.29994666666666664.
[INFO 11-23 07:06:22] ax.early_stopping.strategies.base: Trial 10'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 11-23 07:06:22] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:06:22] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.7999466666666667.
[INFO 11-23 07:06:22] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.729005 2 0.947624 3 0.925085 4 0.962829 5 0.954617 7 0.963040 Name: 0.7999466666666667, dtype: float64.
[INFO 11-23 07:06:22] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9630399011919194 is better than 70.0-th percentile (0.9587231962531011) across comparable trials.
[INFO 11-23 07:06:22] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:06:32] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:06:32] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:06:32] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 11-23 07:06:32] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:06:32] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.29994666666666664.
[INFO 11-23 07:06:32] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:06:32] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:06:32] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.29994666666666664.
[INFO 11-23 07:06:32] ax.early_stopping.strategies.base: Trial 10'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 11-23 07:06:32] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:06:32] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.7999466666666667.
[INFO 11-23 07:06:32] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.729005 2 0.947624 3 0.925085 4 0.962829 5 0.954617 7 0.963040 Name: 0.7999466666666667, dtype: float64.
[INFO 11-23 07:06:32] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9630399011919194 is better than 70.0-th percentile (0.9587231962531011) across comparable trials.
[INFO 11-23 07:06:32] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:06:42] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:06:42] Scheduler: Fetching data for trials: [7, 9, 10] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:06:42] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 11-23 07:06:42] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:06:42] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.29994666666666664.
[INFO 11-23 07:06:42] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:06:42] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 11-23 07:06:42] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 11-23 07:06:42] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 8 0.885021 10 0.915654 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:06:42] ax.early_stopping.strategies.percentile: Early stopping decision for 10: True. Reason: Trial objective value 0.9156542062172162 is worse than 70.0-th percentile (0.9392297877466738) across comparable trials.
[INFO 11-23 07:06:42] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:06:42] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.8999466666666667.
[INFO 11-23 07:06:42] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.707648 2 0.950528 3 0.926240 4 0.963361 5 0.955863 7 0.965411 Name: 0.8999466666666667, dtype: float64.
[INFO 11-23 07:06:42] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9654107214536652 is better than 70.0-th percentile (0.9596118430739353) across comparable trials.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 07:06:48] Scheduler: Running trials [11]...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:06:49] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 11-23 07:06:49] 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 11-23 07:06:49] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:06:49] Scheduler: Fetching data for trials: [7, 9, 11] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:06: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 0x7f63e1fe9570>")
[ERROR 11-23 07:06: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 0x7f63e1fe9570>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:06:49] 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 0x7f63e1fe9570>").
[INFO 11-23 07:06:49] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:06:49] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 11-23 07:06:49] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:06:49] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.29994666666666664.
[INFO 11-23 07:06:49] ax.early_stopping.strategies.base: Trial 9'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 11-23 07:06:49] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:06:49] 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 11-23 07:06:49] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:06:49] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.8999466666666667.
[INFO 11-23 07:06:49] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.707648 2 0.950528 3 0.926240 4 0.963361 5 0.955863 7 0.965411 Name: 0.8999466666666667, dtype: float64.
[INFO 11-23 07:06:49] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9654107214536652 is better than 70.0-th percentile (0.9596118430739353) across comparable trials.
[INFO 11-23 07:06:49] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:06:59] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:06:59] Scheduler: Fetching data for trials: [7, 9, 11] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:06:59] 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 0x7f63e1fe3c10>")
[ERROR 11-23 07:06:59] 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 0x7f63e1fe3c10>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:06:59] 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 0x7f63e1fe3c10>").
[INFO 11-23 07:06:59] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:06:59] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 11-23 07:06:59] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:06:59] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 11-23 07:06:59] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 8 0.885021 9 0.964522 10 0.915654 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:06:59] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9645216171377398 is better than 70.0-th percentile (0.9410040307221154) across comparable trials.
[INFO 11-23 07:06:59] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:06:59] 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 11-23 07:06:59] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:06:59] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.8999466666666667.
[INFO 11-23 07:06:59] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.707648 2 0.950528 3 0.926240 4 0.963361 5 0.955863 7 0.965411 Name: 0.8999466666666667, dtype: float64.
[INFO 11-23 07:06:59] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9654107214536652 is better than 70.0-th percentile (0.9596118430739353) across comparable trials.
[INFO 11-23 07:06:59] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:07:09] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:07:09] Scheduler: Fetching data for trials: [7, 9, 11] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:07:09] 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 0x7f63e31c5210>")
[ERROR 11-23 07:07:09] 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 0x7f63e31c5210>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:07:09] 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 0x7f63e31c5210>").
[INFO 11-23 07:07:09] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:07:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 11-23 07:07:09] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:07:09] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 11-23 07:07:09] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 8 0.885021 9 0.964522 10 0.915654 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:07:09] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9645216171377398 is better than 70.0-th percentile (0.9410040307221154) across comparable trials.
[INFO 11-23 07:07:09] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:07:09] ax.early_stopping.strategies.base: There is not yet any data associated with trial 11 and metric val_acc. Not early stopping this trial.
[INFO 11-23 07:07:09] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:07:09] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.8999466666666667.
[INFO 11-23 07:07:09] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.707648 2 0.950528 3 0.926240 4 0.963361 5 0.955863 7 0.965411 Name: 0.8999466666666667, dtype: float64.
[INFO 11-23 07:07:09] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9654107214536652 is better than 70.0-th percentile (0.9596118430739353) across comparable trials.
[INFO 11-23 07:07:09] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:07:19] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:07:19] Scheduler: Fetching data for trials: [7, 9, 11] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:07:19] 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 0x7f63e1fe3d30>")
[ERROR 11-23 07:07:19] 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 0x7f63e1fe3d30>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:07:19] 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 0x7f63e1fe3d30>").
[INFO 11-23 07:07:19] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:07:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 11-23 07:07:19] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:07:19] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 11-23 07:07:19] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 8 0.885021 9 0.964522 10 0.915654 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:07:19] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9645216171377398 is better than 70.0-th percentile (0.9410040307221154) across comparable trials.
[INFO 11-23 07:07:19] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:07:19] 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 11-23 07:07:19] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:07:19] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.8999466666666667.
[INFO 11-23 07:07:19] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.707648 2 0.950528 3 0.926240 4 0.963361 5 0.955863 7 0.965411 Name: 0.8999466666666667, dtype: float64.
[INFO 11-23 07:07:19] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9654107214536652 is better than 70.0-th percentile (0.9596118430739353) across comparable trials.
[INFO 11-23 07:07:19] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:07:29] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:07:29] Scheduler: Fetching data for trials: [7, 9, 11] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:07:29] 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 0x7f63e1fe0100>")
[ERROR 11-23 07:07:29] 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 0x7f63e1fe0100>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:07:29] 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 0x7f63e1fe0100>").
[INFO 11-23 07:07:29] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:07:29] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.9999466666666667.
[INFO 11-23 07:07:30] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:07:30] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 11-23 07:07:30] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.783298 2 0.942551 3 0.919086 4 0.959752 5 0.945700 7 0.950636 9 0.967093 Name: 0.49994666666666665, dtype: float64.
[INFO 11-23 07:07:30] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9670933137578253 is better than 70.0-th percentile (0.9524594443498828) across comparable trials.
[INFO 11-23 07:07:30] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:07:30] 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 11-23 07:07:30] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 11-23 07:07:30] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.9999466666666667.
[INFO 11-23 07:07:30] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.711108 2 0.950918 3 0.927983 4 0.964396 5 0.957529 7 0.966988 Name: 0.9999466666666667, dtype: float64.
[INFO 11-23 07:07:30] ax.early_stopping.strategies.percentile: Early stopping decision for 7: False. Reason: Trial objective value 0.9669884119343779 is better than 70.0-th percentile (0.9609623100000828) across comparable trials.
[INFO 11-23 07:07:30] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:07:40] Scheduler: Fetching data for newly completed trials: [7].
[INFO 11-23 07:07:40] Scheduler: Fetching data for trials: [9, 11] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:07:40] Scheduler: Retrieved COMPLETED trials: [7].
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:07:40] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 11-23 07:07:40] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:07:40] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:07:40] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 11-23 07:07:40] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.783298 2 0.942551 3 0.919086 4 0.959752 5 0.945700 7 0.950636 9 0.967093 Name: 0.49994666666666665, dtype: float64.
[INFO 11-23 07:07:40] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9670933137578253 is better than 70.0-th percentile (0.9524594443498828) across comparable trials.
[INFO 11-23 07:07:40] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:07:40] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.09994666666666667.
[INFO 11-23 07:07:40] 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.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 07:07:46] Scheduler: Running trials [12]...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:07:47] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 11-23 07:07:47] 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 11-23 07:07:47] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:07:47] Scheduler: Fetching data for trials: [9, 11, 12] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:07:47] 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 0x7f63e1feb2b0>")
[ERROR 11-23 07:07:47] 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 0x7f63e1feb2b0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:07:47] 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 0x7f63e1feb2b0>").
[INFO 11-23 07:07:47] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:07:47] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 11-23 07:07:48] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:07:48] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:07:48] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 11-23 07:07:48] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.783298 2 0.942551 3 0.919086 4 0.959752 5 0.945700 7 0.950636 9 0.967093 Name: 0.49994666666666665, dtype: float64.
[INFO 11-23 07:07:48] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9670933137578253 is better than 70.0-th percentile (0.9524594443498828) across comparable trials.
[INFO 11-23 07:07:48] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:07:48] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.09994666666666667.
[INFO 11-23 07:07:48] 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 11-23 07:07:48] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:07:48] 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 11-23 07:07:48] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:07:58] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:07:58] Scheduler: Fetching data for trials: [9, 11, 12] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:07: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 0x7f63e1fe81f0>")
[ERROR 11-23 07:07: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 0x7f63e1fe81f0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:07: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 0x7f63e1fe81f0>").
[INFO 11-23 07:07: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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:07:58] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 11-23 07:07:58] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:07:58] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:07:58] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 11-23 07:07:58] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.783298 2 0.942551 3 0.919086 4 0.959752 5 0.945700 7 0.950636 9 0.967093 Name: 0.49994666666666665, dtype: float64.
[INFO 11-23 07:07:58] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9670933137578253 is better than 70.0-th percentile (0.9524594443498828) across comparable trials.
[INFO 11-23 07:07:58] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:07:58] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.09994666666666667.
[INFO 11-23 07:07:58] 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 11-23 07:07:58] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:07: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 11-23 07:07:58] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:08:08] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:08:08] Scheduler: Fetching data for trials: [9, 11, 12] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:08: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 0x7f63e1fea230>")
[ERROR 11-23 07:08: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 0x7f63e1fea230>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:08: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 0x7f63e1fea230>").
[INFO 11-23 07:08: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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:08:08] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 11-23 07:08:08] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:08:08] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:08:08] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 11-23 07:08:08] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.756424 2 0.945875 3 0.919265 4 0.960899 5 0.950396 7 0.955362 9 0.962539 Name: 0.5999466666666666, dtype: float64.
[INFO 11-23 07:08:08] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9625391367774767 is better than 70.0-th percentile (0.9564697287251362) across comparable trials.
[INFO 11-23 07:08:08] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:08:08] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.09994666666666667.
[INFO 11-23 07:08:08] 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 11-23 07:08:08] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:08: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 11-23 07:08:08] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:08:18] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:08:18] Scheduler: Fetching data for trials: [9, 11, 12] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:08: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 0x7f63e1feb2e0>")
[ERROR 11-23 07:08: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 0x7f63e1feb2e0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:08: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 0x7f63e1feb2e0>").
[INFO 11-23 07:08: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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:08:18] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 11-23 07:08:18] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:08:18] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 11-23 07:08:18] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.756424 2 0.945875 3 0.919265 4 0.960899 5 0.950396 7 0.955362 9 0.962539 Name: 0.5999466666666666, dtype: float64.
[INFO 11-23 07:08:18] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9625391367774767 is better than 70.0-th percentile (0.9564697287251362) across comparable trials.
[INFO 11-23 07:08:18] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:08:18] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.19994666666666666.
[INFO 11-23 07:08:18] 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 11-23 07:08:18] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:08: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 11-23 07:08:18] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:08:28] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:08:28] Scheduler: Fetching data for trials: [9, 11, 12] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:08: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 0x7f63e1e6b280>")
[ERROR 11-23 07:08: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 0x7f63e1e6b280>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:08: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 0x7f63e1e6b280>").
[INFO 11-23 07:08: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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:08:28] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 11-23 07:08:28] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:08:28] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 11-23 07:08:28] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.756424 2 0.945875 3 0.919265 4 0.960899 5 0.950396 7 0.955362 9 0.962539 Name: 0.5999466666666666, dtype: float64.
[INFO 11-23 07:08:28] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9625391367774767 is better than 70.0-th percentile (0.9564697287251362) across comparable trials.
[INFO 11-23 07:08:28] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:08:28] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.19994666666666666.
[INFO 11-23 07:08:28] 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 11-23 07:08:28] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:08: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 11-23 07:08:28] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:08:38] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:08:38] Scheduler: Fetching data for trials: [9, 11, 12] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:08:38] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 11-23 07:08:38] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:08:38] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:08:38] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 11-23 07:08:38] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.756424 2 0.945875 3 0.919265 4 0.960899 5 0.950396 7 0.955362 9 0.962539 Name: 0.5999466666666666, dtype: float64.
[INFO 11-23 07:08:38] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9625391367774767 is better than 70.0-th percentile (0.9564697287251362) across comparable trials.
[INFO 11-23 07:08:38] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:08:38] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.19994666666666666.
[INFO 11-23 07:08:38] 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 11-23 07:08:38] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:08:38] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 11-23 07:08:38] 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 11-23 07:08:38] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:08:48] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:08:48] Scheduler: Fetching data for trials: [9, 11, 12] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:08:49] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 11-23 07:08:49] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:08:49] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:08:49] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 11-23 07:08:49] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.736960 2 0.946211 3 0.922893 4 0.959453 5 0.952845 7 0.959613 9 0.968459 Name: 0.6999466666666667, dtype: float64.
[INFO 11-23 07:08:49] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9684590296294305 is better than 70.0-th percentile (0.9594846306894782) across comparable trials.
[INFO 11-23 07:08:49] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:08:49] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.19994666666666666.
[INFO 11-23 07:08:49] 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 11-23 07:08:49] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:08:49] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 11-23 07:08:49] 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 11-23 07:08:49] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:08:59] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:08:59] Scheduler: Fetching data for trials: [9, 11, 12] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:08:59] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 11-23 07:08:59] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:08:59] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:08:59] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 11-23 07:08:59] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.736960 2 0.946211 3 0.922893 4 0.959453 5 0.952845 7 0.959613 9 0.968459 Name: 0.6999466666666667, dtype: float64.
[INFO 11-23 07:08:59] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9684590296294305 is better than 70.0-th percentile (0.9594846306894782) across comparable trials.
[INFO 11-23 07:08:59] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:08:59] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 11-23 07:08:59] 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 11-23 07:08:59] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:08:59] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 11-23 07:08: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 11-23 07:08:59] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:09:09] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:09:09] Scheduler: Fetching data for trials: [9, 11, 12] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:09:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 11-23 07:09:09] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:09:09] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:09:09] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 11-23 07:09:09] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.736960 2 0.946211 3 0.922893 4 0.959453 5 0.952845 7 0.959613 9 0.968459 Name: 0.6999466666666667, dtype: float64.
[INFO 11-23 07:09:09] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9684590296294305 is better than 70.0-th percentile (0.9594846306894782) across comparable trials.
[INFO 11-23 07:09:09] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:09:09] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 11-23 07:09:09] 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 11-23 07:09:09] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:09:09] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 11-23 07:09: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 11-23 07:09:09] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:09:19] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:09:19] Scheduler: Fetching data for trials: [9, 11, 12] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:09:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 11-23 07:09:19] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:09:19] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:09:19] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 11-23 07:09:19] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.736960 2 0.946211 3 0.922893 4 0.959453 5 0.952845 7 0.959613 9 0.968459 Name: 0.6999466666666667, dtype: float64.
[INFO 11-23 07:09:19] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9684590296294305 is better than 70.0-th percentile (0.9594846306894782) across comparable trials.
[INFO 11-23 07:09:19] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:09:19] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 11-23 07:09:19] 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 11-23 07:09:19] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:09:19] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 11-23 07:09: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 11-23 07:09:19] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:09:29] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:09:29] Scheduler: Fetching data for trials: [9, 11, 12] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:09:29] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 11-23 07:09:29] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:09:29] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 11-23 07:09:29] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.736960 2 0.946211 3 0.922893 4 0.959453 5 0.952845 7 0.959613 9 0.968459 Name: 0.6999466666666667, dtype: float64.
[INFO 11-23 07:09:29] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9684590296294305 is better than 70.0-th percentile (0.9594846306894782) across comparable trials.
[INFO 11-23 07:09:29] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:09:29] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 11-23 07:09:29] 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 11-23 07:09:29] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:09:29] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 11-23 07:09:29] 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 11-23 07:09:29] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:09:39] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:09:39] Scheduler: Fetching data for trials: [9, 11, 12] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:09:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 11-23 07:09:40] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:09:40] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 11-23 07:09:40] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.729005 2 0.947624 3 0.925085 4 0.962829 5 0.954617 7 0.963040 9 0.969537 Name: 0.7999466666666667, dtype: float64.
[INFO 11-23 07:09:40] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9695371141768873 is better than 70.0-th percentile (0.9628711864159725) across comparable trials.
[INFO 11-23 07:09:40] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:09:40] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 11-23 07:09:40] 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 11-23 07:09:40] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:09:40] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 11-23 07:09: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 11-23 07:09:40] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:09:50] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:09:50] Scheduler: Fetching data for trials: [9, 11, 12] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:09:50] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 11-23 07:09:50] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:09:50] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 11-23 07:09:50] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.729005 2 0.947624 3 0.925085 4 0.962829 5 0.954617 7 0.963040 9 0.969537 Name: 0.7999466666666667, dtype: float64.
[INFO 11-23 07:09:50] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9695371141768873 is better than 70.0-th percentile (0.9628711864159725) across comparable trials.
[INFO 11-23 07:09:50] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 11-23 07:09:50] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 11-23 07:09:50] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 8 0.885021 9 0.964522 10 0.915654 11 0.921003 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:09:50] ax.early_stopping.strategies.percentile: Early stopping decision for 11: True. Reason: Trial objective value 0.9210027670625396 is worse than 70.0-th percentile (0.9396493399671733) across comparable trials.
[INFO 11-23 07:09:50] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:09:50] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 11-23 07:09: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.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 07:09:53] Scheduler: Running trials [13]...
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:09:54] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[WARNING 11-23 07:09:54] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 11-23 07:09:54] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:09:54] Scheduler: Fetching data for trials: [9, 12, 13] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:09:54] 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 0x7f63e1fe80a0>")
[ERROR 11-23 07:09:54] 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 0x7f63e1fe80a0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:09:54] 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 0x7f63e1fe80a0>").
[INFO 11-23 07:09:54] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:09:54] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 11-23 07:09:54] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:09:54] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 11-23 07:09:54] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.729005 2 0.947624 3 0.925085 4 0.962829 5 0.954617 7 0.963040 9 0.969537 Name: 0.7999466666666667, dtype: float64.
[INFO 11-23 07:09:54] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9695371141768873 is better than 70.0-th percentile (0.9628711864159725) across comparable trials.
[INFO 11-23 07:09:54] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:09:54] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 11-23 07:09:54] 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 11-23 07:09:54] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:09:54] 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 11-23 07:09:54] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:10:04] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:10:04] Scheduler: Fetching data for trials: [9, 12, 13] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:10:04] 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 0x7f63e1fe8940>")
[ERROR 11-23 07:10:04] 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 0x7f63e1fe8940>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:10:04] 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 0x7f63e1fe8940>").
[INFO 11-23 07:10:04] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:10:04] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 11-23 07:10:04] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:10:04] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 11-23 07:10:04] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.729005 2 0.947624 3 0.925085 4 0.962829 5 0.954617 7 0.963040 9 0.969537 Name: 0.7999466666666667, dtype: float64.
[INFO 11-23 07:10:04] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9695371141768873 is better than 70.0-th percentile (0.9628711864159725) across comparable trials.
[INFO 11-23 07:10:04] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:10:04] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 11-23 07:10:04] 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 11-23 07:10:04] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:10:04] 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 11-23 07:10:04] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:10:14] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:10:14] Scheduler: Fetching data for trials: [9, 12, 13] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:10:14] 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 0x7f63e1fea9b0>")
[ERROR 11-23 07:10:14] 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 0x7f63e1fea9b0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:10:14] 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 0x7f63e1fea9b0>").
[INFO 11-23 07:10:14] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:10:14] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 11-23 07:10:14] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:10:14] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 11-23 07:10:14] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.707648 2 0.950528 3 0.926240 4 0.963361 5 0.955863 7 0.965411 9 0.970447 Name: 0.8999466666666667, dtype: float64.
[INFO 11-23 07:10:14] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9704470298097249 is better than 70.0-th percentile (0.9637706032721984) across comparable trials.
[INFO 11-23 07:10:14] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:10:14] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 11-23 07:10:14] 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 11-23 07:10:14] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:10:14] 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 11-23 07:10:14] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:10:24] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:10:24] Scheduler: Fetching data for trials: [9, 12, 13] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:10:25] 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 0x7f63e1fe8430>")
[ERROR 11-23 07:10:25] 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 0x7f63e1fe8430>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:10:25] 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 0x7f63e1fe8430>").
[INFO 11-23 07:10:25] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:10:25] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 11-23 07:10:25] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:10:25] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 11-23 07:10:25] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.707648 2 0.950528 3 0.926240 4 0.963361 5 0.955863 7 0.965411 9 0.970447 Name: 0.8999466666666667, dtype: float64.
[INFO 11-23 07:10:25] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9704470298097249 is better than 70.0-th percentile (0.9637706032721984) across comparable trials.
[INFO 11-23 07:10:25] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:10:25] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 11-23 07:10:25] 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 11-23 07:10:25] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:10:25] 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 11-23 07:10:25] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:10:35] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:10:35] Scheduler: Fetching data for trials: [9, 12, 13] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:10: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 0x7f63e1febfd0>")
[ERROR 11-23 07:10: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 0x7f63e1febfd0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:10:35] 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 0x7f63e1febfd0>").
[INFO 11-23 07:10:35] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:10:35] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 11-23 07:10:35] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:10:35] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 11-23 07:10:35] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.707648 2 0.950528 3 0.926240 4 0.963361 5 0.955863 7 0.965411 9 0.970447 Name: 0.8999466666666667, dtype: float64.
[INFO 11-23 07:10:35] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9704470298097249 is better than 70.0-th percentile (0.9637706032721984) across comparable trials.
[INFO 11-23 07:10:35] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:10:35] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 11-23 07:10:35] 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 11-23 07:10:35] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:10:35] 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 11-23 07:10:35] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:10:45] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:10:45] Scheduler: Fetching data for trials: [9, 12, 13] because some metrics on experiment are available while trials are running.
[INFO 11-23 07:10: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 0x7f63e1fe8190>")
[ERROR 11-23 07:10: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 0x7f63e1fe8190>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:10: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 0x7f63e1fe8190>").
[INFO 11-23 07:10: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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:10:45] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 11-23 07:10:45] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:10:45] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 11-23 07:10:45] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.707648 2 0.950528 3 0.926240 4 0.963361 5 0.955863 7 0.965411 9 0.970447 Name: 0.8999466666666667, dtype: float64.
[INFO 11-23 07:10:45] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9704470298097249 is better than 70.0-th percentile (0.9637706032721984) across comparable trials.
[INFO 11-23 07:10:45] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:10:45] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 11-23 07:10: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 11-23 07:10:45] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:10: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 11-23 07:10:45] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:10:55] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:10:55] Scheduler: Fetching data for trials: [9, 12, 13] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:10:55] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.9999466666666667.
[INFO 11-23 07:10:55] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:10:55] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 11-23 07:10:55] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.9999466666666667.
[INFO 11-23 07:10:55] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.711108 2 0.950918 3 0.927983 4 0.964396 5 0.957529 7 0.966988 9 0.971338 Name: 0.9999466666666667, dtype: float64.
[INFO 11-23 07:10:55] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9713377083044444 is better than 70.0-th percentile (0.9649141100584033) across comparable trials.
[INFO 11-23 07:10:55] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:10:55] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.3999466666666667.
[INFO 11-23 07:10:55] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 8 0.885021 9 0.964522 10 0.915654 11 0.921003 12 0.951368 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:10:55] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9513683580412653 is better than 70.0-th percentile (0.9428102850620382) across comparable trials.
[INFO 11-23 07:10:55] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:10:55] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 11-23 07:10:55] 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 11-23 07:10:55] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:11:05] Scheduler: Fetching data for newly completed trials: [9].
[INFO 11-23 07:11:05] Scheduler: Fetching data for trials: 12 - 13 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:11:05] Scheduler: Retrieved COMPLETED trials: [9].
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:11:05] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 11-23 07:11:05] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:11:05] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:11:05] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.3999466666666667.
[INFO 11-23 07:11:05] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 8 0.885021 9 0.964522 10 0.915654 11 0.921003 12 0.951368 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:11:05] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9513683580412653 is better than 70.0-th percentile (0.9428102850620382) across comparable trials.
[INFO 11-23 07:11:05] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:11:05] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 11-23 07:11:05] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 11-23 07:11:08] Scheduler: Running trials [14]...
[WARNING 11-23 07:11:08] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 11-23 07:11:08] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:11:08] Scheduler: Fetching data for trials: 12 - 14 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:11:09] 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 0x7f63e1e68070>")
[ERROR 11-23 07:11:09] 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 0x7f63e1e68070>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:11:09] 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 0x7f63e1e68070>").
[INFO 11-23 07:11:09] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:11:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 11-23 07:11:09] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:11:09] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:11:09] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.3999466666666667.
[INFO 11-23 07:11:09] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 8 0.885021 9 0.964522 10 0.915654 11 0.921003 12 0.951368 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:11:09] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9513683580412653 is better than 70.0-th percentile (0.9428102850620382) across comparable trials.
[INFO 11-23 07:11:09] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:11:09] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 11-23 07:11:09] 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 11-23 07:11:09] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:11:09] 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 11-23 07:11:09] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:11:19] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:11:19] Scheduler: Fetching data for trials: 12 - 14 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:11:19] 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 0x7f63e1fea530>")
[ERROR 11-23 07:11:19] 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 0x7f63e1fea530>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:11:19] 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 0x7f63e1fea530>").
[INFO 11-23 07:11:19] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:11:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 11-23 07:11:19] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:11:19] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:11:19] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.3999466666666667.
[INFO 11-23 07:11:19] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 8 0.885021 9 0.964522 10 0.915654 11 0.921003 12 0.951368 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:11:19] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9513683580412653 is better than 70.0-th percentile (0.9428102850620382) across comparable trials.
[INFO 11-23 07:11:19] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:11:19] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 11-23 07:11:19] 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 11-23 07:11:19] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:11:19] 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 11-23 07:11:19] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:11:29] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:11:29] Scheduler: Fetching data for trials: 12 - 14 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:11:29] 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 0x7f63e1fe95a0>")
[ERROR 11-23 07:11:29] 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 0x7f63e1fe95a0>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:11:29] 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 0x7f63e1fe95a0>").
[INFO 11-23 07:11:29] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:11:29] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 11-23 07:11:29] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:11:29] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.49994666666666665.
[INFO 11-23 07:11:29] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.783298 2 0.942551 3 0.919086 4 0.959752 5 0.945700 7 0.950636 9 0.967093 12 0.956914 Name: 0.49994666666666665, dtype: float64.
[INFO 11-23 07:11:29] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9569136048265157 is better than 70.0-th percentile (0.9562858774636581) across comparable trials.
[INFO 11-23 07:11:29] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:11:29] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 11-23 07:11:29] 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 11-23 07:11:29] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:11:29] 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 11-23 07:11:29] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:11:39] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:11:39] Scheduler: Fetching data for trials: 12 - 14 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:11:39] 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 0x7f63e1fe9360>")
[ERROR 11-23 07:11:39] 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 0x7f63e1fe9360>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:11:39] 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 0x7f63e1fe9360>").
[INFO 11-23 07:11:39] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:11:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 11-23 07:11:39] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:11:39] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.49994666666666665.
[INFO 11-23 07:11:39] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.783298 2 0.942551 3 0.919086 4 0.959752 5 0.945700 7 0.950636 9 0.967093 12 0.956914 Name: 0.49994666666666665, dtype: float64.
[INFO 11-23 07:11:39] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9569136048265157 is better than 70.0-th percentile (0.9562858774636581) across comparable trials.
[INFO 11-23 07:11:39] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:11:39] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 11-23 07:11:39] 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 11-23 07:11:39] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:11:39] 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 11-23 07:11:39] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:11:49] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:11:49] Scheduler: Fetching data for trials: 12 - 14 because some metrics on experiment are available while trials are running.
[INFO 11-23 07:11: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 0x7f63e1feb790>")
[ERROR 11-23 07:11: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 0x7f63e1feb790>"). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 11-23 07:11:49] 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 0x7f63e1feb790>").
[INFO 11-23 07:11:49] 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:11:49] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 11-23 07:11:49] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:11:49] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.49994666666666665.
[INFO 11-23 07:11:49] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.783298 2 0.942551 3 0.919086 4 0.959752 5 0.945700 7 0.950636 9 0.967093 12 0.956914 Name: 0.49994666666666665, dtype: float64.
[INFO 11-23 07:11:49] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9569136048265157 is better than 70.0-th percentile (0.9562858774636581) across comparable trials.
[INFO 11-23 07:11:49] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:11:49] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 11-23 07:11:49] 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 11-23 07:11:49] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:11:49] 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 11-23 07:11:49] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:11:59] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:11:59] Scheduler: Fetching data for trials: 12 - 14 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:12:00] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 11-23 07:12:00] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:12:00] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:12:00] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.49994666666666665.
[INFO 11-23 07:12:00] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.783298 2 0.942551 3 0.919086 4 0.959752 5 0.945700 7 0.950636 9 0.967093 12 0.956914 Name: 0.49994666666666665, dtype: float64.
[INFO 11-23 07:12:00] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9569136048265157 is better than 70.0-th percentile (0.9562858774636581) across comparable trials.
[INFO 11-23 07:12:00] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:12:00] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 11-23 07:12:00] 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 11-23 07:12:00] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:12:00] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 11-23 07:12:00] 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 11-23 07:12:00] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:12:10] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:12:10] Scheduler: Fetching data for trials: 12 - 14 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:12:10] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 11-23 07:12:10] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:12:10] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:12:10] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.5999466666666666.
[INFO 11-23 07:12:10] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.756424 2 0.945875 3 0.919265 4 0.960899 5 0.950396 7 0.955362 9 0.962539 12 0.960631 Name: 0.5999466666666666, dtype: float64.
[INFO 11-23 07:12:10] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9606313453787941 is better than 70.0-th percentile (0.9601044571627214) across comparable trials.
[INFO 11-23 07:12:10] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:12:10] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 11-23 07:12:10] 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 11-23 07:12:10] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:12:10] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 11-23 07:12:10] 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 11-23 07:12:10] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:12:20] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:12:20] Scheduler: Fetching data for trials: 12 - 14 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:12:20] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 11-23 07:12:20] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:12:20] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:12:20] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.5999466666666666.
[INFO 11-23 07:12:20] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.756424 2 0.945875 3 0.919265 4 0.960899 5 0.950396 7 0.955362 9 0.962539 12 0.960631 Name: 0.5999466666666666, dtype: float64.
[INFO 11-23 07:12:20] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9606313453787941 is better than 70.0-th percentile (0.9601044571627214) across comparable trials.
[INFO 11-23 07:12:20] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:12:20] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 11-23 07:12:20] 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 11-23 07:12:20] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:12:20] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 11-23 07:12:20] 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 11-23 07:12:20] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:12:30] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:12:30] Scheduler: Fetching data for trials: 12 - 14 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:12:30] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 11-23 07:12:30] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 11-23 07:12:30] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:12:30] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.5999466666666666.
[INFO 11-23 07:12:30] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.756424 2 0.945875 3 0.919265 4 0.960899 5 0.950396 7 0.955362 9 0.962539 12 0.960631 Name: 0.5999466666666666, dtype: float64.
[INFO 11-23 07:12:30] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9606313453787941 is better than 70.0-th percentile (0.9601044571627214) across comparable trials.
[INFO 11-23 07:12:30] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:12:30] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 11-23 07:12:30] 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 11-23 07:12:30] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:12:30] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 11-23 07:12:30] 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 11-23 07:12:30] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:12:40] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:12:40] Scheduler: Fetching data for trials: 12 - 14 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:12:40] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 11-23 07:12:40] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:12:40] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.5999466666666666.
[INFO 11-23 07:12:40] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.756424 2 0.945875 3 0.919265 4 0.960899 5 0.950396 7 0.955362 9 0.962539 12 0.960631 Name: 0.5999466666666666, dtype: float64.
[INFO 11-23 07:12:40] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9606313453787941 is better than 70.0-th percentile (0.9601044571627214) across comparable trials.
[INFO 11-23 07:12:40] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:12:40] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 11-23 07:12:40] 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 11-23 07:12:40] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:12:40] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.19994666666666666.
[INFO 11-23 07:12:40] 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.
[INFO 11-23 07:12:40] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:12:50] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:12:50] Scheduler: Fetching data for trials: 12 - 14 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:12:51] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 11-23 07:12:51] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:12:51] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.5999466666666666.
[INFO 11-23 07:12:51] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.756424 2 0.945875 3 0.919265 4 0.960899 5 0.950396 7 0.955362 9 0.962539 12 0.960631 Name: 0.5999466666666666, dtype: float64.
[INFO 11-23 07:12:51] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9606313453787941 is better than 70.0-th percentile (0.9601044571627214) across comparable trials.
[INFO 11-23 07:12:51] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:12:51] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 11-23 07:12:51] 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 11-23 07:12:51] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:12:51] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.19994666666666666.
[INFO 11-23 07:12:51] 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.
[INFO 11-23 07:12:51] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 3).
[INFO 11-23 07:13:01] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:13:01] Scheduler: Fetching data for trials: 12 - 14 because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:13:01] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 11-23 07:13:01] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:13:01] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.6999466666666667.
[INFO 11-23 07:13:01] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.736960 2 0.946211 3 0.922893 4 0.959453 5 0.952845 7 0.959613 9 0.968459 12 0.964602 Name: 0.6999466666666667, dtype: float64.
[INFO 11-23 07:13:01] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9646017055240218 is better than 70.0-th percentile (0.959596787815328) across comparable trials.
[INFO 11-23 07:13:01] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 11-23 07:13:01] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 11-23 07:13:01] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 8 0.885021 9 0.964522 10 0.915654 11 0.921003 12 0.951368 13 0.914827 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:13:01] ax.early_stopping.strategies.percentile: Early stopping decision for 13: True. Reason: Trial objective value 0.9148266142225031 is worse than 70.0-th percentile (0.9414555943070961) across comparable trials.
[INFO 11-23 07:13:01] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:13:01] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.19994666666666666.
[INFO 11-23 07:13:01] 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.
[INFO 11-23 07:13:02] Scheduler: Done submitting trials, waiting for remaining 2 running trials...
[WARNING 11-23 07:13:02] 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 11-23 07:13:02] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:13:02] Scheduler: Fetching data for trials: [12, 14] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:13:02] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 11-23 07:13:02] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:13:02] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.6999466666666667.
[INFO 11-23 07:13:02] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.736960 2 0.946211 3 0.922893 4 0.959453 5 0.952845 7 0.959613 9 0.968459 12 0.964602 Name: 0.6999466666666667, dtype: float64.
[INFO 11-23 07:13:02] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9646017055240218 is better than 70.0-th percentile (0.959596787815328) across comparable trials.
[INFO 11-23 07:13:02] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:13:02] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.19994666666666666.
[INFO 11-23 07:13:02] 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.
[INFO 11-23 07:13:02] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 2).
[INFO 11-23 07:13:12] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:13:12] Scheduler: Fetching data for trials: [12, 14] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:13:12] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 11-23 07:13:12] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:13:12] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.6999466666666667.
[INFO 11-23 07:13:12] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.736960 2 0.946211 3 0.922893 4 0.959453 5 0.952845 7 0.959613 9 0.968459 12 0.964602 Name: 0.6999466666666667, dtype: float64.
[INFO 11-23 07:13:12] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9646017055240218 is better than 70.0-th percentile (0.959596787815328) across comparable trials.
[INFO 11-23 07:13:12] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:13:12] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.29994666666666664.
[INFO 11-23 07:13:12] ax.early_stopping.strategies.base: Trial 14'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 11-23 07:13:12] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 2).
[INFO 11-23 07:13:22] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:13:22] Scheduler: Fetching data for trials: [12, 14] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:13:22] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 11-23 07:13:22] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:13:22] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.7999466666666667.
[INFO 11-23 07:13:22] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.729005 2 0.947624 3 0.925085 4 0.962829 5 0.954617 7 0.963040 9 0.969537 12 0.967687 Name: 0.7999466666666667, dtype: float64.
[INFO 11-23 07:13:22] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9676872606906772 is better than 70.0-th percentile (0.963018811844926) across comparable trials.
[INFO 11-23 07:13:22] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:13:22] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.29994666666666664.
[INFO 11-23 07:13:22] ax.early_stopping.strategies.base: Trial 14'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 11-23 07:13:22] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 2).
[INFO 11-23 07:13:32] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:13:32] Scheduler: Fetching data for trials: [12, 14] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:13:32] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 11-23 07:13:32] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:13:32] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.7999466666666667.
[INFO 11-23 07:13:32] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.729005 2 0.947624 3 0.925085 4 0.962829 5 0.954617 7 0.963040 9 0.969537 12 0.967687 Name: 0.7999466666666667, dtype: float64.
[INFO 11-23 07:13:32] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9676872606906772 is better than 70.0-th percentile (0.963018811844926) across comparable trials.
[INFO 11-23 07:13:32] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 11-23 07:13:32] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.3999466666666667.
[INFO 11-23 07:13:32] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.777578 2 0.938600 3 0.923061 4 0.956436 5 0.939649 6 0.912348 7 0.944165 8 0.885021 9 0.964522 10 0.915654 11 0.921003 12 0.951368 13 0.914827 14 0.937712 Name: 0.3999466666666667, dtype: float64.
[INFO 11-23 07:13:32] ax.early_stopping.strategies.percentile: Early stopping decision for 14: True. Reason: Trial objective value 0.9377122906041263 is worse than 70.0-th percentile (0.9401009035521539) across comparable trials.
[WARNING 11-23 07:13:33] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
[INFO 11-23 07:13:33] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:13:33] Scheduler: Fetching data for trials: [12] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:13:33] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 11-23 07:13:33] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:13:33] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.7999466666666667.
[INFO 11-23 07:13:33] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.729005 2 0.947624 3 0.925085 4 0.962829 5 0.954617 7 0.963040 9 0.969537 12 0.967687 Name: 0.7999466666666667, dtype: float64.
[INFO 11-23 07:13:33] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9676872606906772 is better than 70.0-th percentile (0.963018811844926) across comparable trials.
[INFO 11-23 07:13:33] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
[INFO 11-23 07:13:43] Scheduler: No newly completed trials; not fetching data for any.
[INFO 11-23 07:13:43] Scheduler: Fetching data for trials: [12] because some metrics on experiment are available while trials are running.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:13:43] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 11-23 07:13:43] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 11-23 07:13:43] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.8999466666666667.
[INFO 11-23 07:13:43] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.707648 2 0.950528 3 0.926240 4 0.963361 5 0.955863 7 0.965411 9 0.970447 12 0.970011 Name: 0.8999466666666667, dtype: float64.
[INFO 11-23 07:13:43] ax.early_stopping.strategies.percentile: Early stopping decision for 12: False. Reason: Trial objective value 0.9700113713007498 is better than 70.0-th percentile (0.9652057066809819) across comparable trials.
[INFO 11-23 07:13:43] Scheduler: Waiting for completed trials (for 10 sec, currently running trials: 1).
[INFO 11-23 07:13:53] Scheduler: Fetching data for newly completed trials: [12].
[INFO 11-23 07:13:53] Scheduler: Retrieved COMPLETED trials: [12].
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 11-23 07:13:53] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 11-23 07:13:53] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[WARNING 11-23 07:13:53] Scheduler: Both `init_seconds_between_polls` and `early_stopping_strategy supplied. `init_seconds_between_polls=1` will be overrridden by `early_stopping_strategy.seconds_between_polls=10` and polling will take place at a constant rate.
CPU times: user 1min 5s, sys: 1.07 s, total: 1min 6s Wall time: 32min 45s
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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 | 1_0 | val_acc | 0.799837 | NaN | 1 | 1874.0 |
1 | 1_0 | val_acc | 0.795421 | NaN | 1 | 3749.0 |
2 | 1_0 | val_acc | 0.783206 | NaN | 1 | 5624.0 |
3 | 1_0 | val_acc | 0.777578 | NaN | 1 | 7499.0 |
4 | 1_0 | val_acc | 0.783298 | NaN | 1 | 9374.0 |
5 | 1_0 | val_acc | 0.756424 | NaN | 1 | 11249.0 |
6 | 1_0 | val_acc | 0.736960 | NaN | 1 | 13124.0 |
7 | 1_0 | val_acc | 0.729005 | NaN | 1 | 14999.0 |
8 | 1_0 | val_acc | 0.707648 | NaN | 1 | 16874.0 |
9 | 1_0 | val_acc | 0.711108 | NaN | 1 | 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 | 70 | 73 | 0.000159 | 0.110208 |
1 | 1 | 1_0 | COMPLETED | Sobol | 0.712492 | 17 | 26 | 0.002523 | 0.491709 |
2 | 2 | 2_0 | COMPLETED | Sobol | 0.951074 | 30 | 103 | 0.000492 | 0.242211 |
3 | 3 | 3_0 | COMPLETED | Sobol | 0.928680 | 111 | 20 | 0.007841 | 0.374382 |
4 | 4 | 4_0 | COMPLETED | Sobol | 0.964809 | 79 | 77 | 0.001636 | 0.267664 |
5 | 5 | 5_0 | COMPLETED | Sobol | 0.958195 | 43 | 25 | 0.000244 | 0.145808 |
6 | 6 | 6_0 | EARLY_STOPPED | BoTorch | 0.912348 | 65 | 16 | 0.010000 | 0.244339 |
7 | 7 | 7_0 | COMPLETED | BoTorch | 0.967619 | 128 | 128 | 0.000100 | 0.316397 |
8 | 8 | 8_0 | EARLY_STOPPED | BoTorch | 0.885021 | 37 | 128 | 0.010000 | 0.194901 |
9 | 9 | 9_0 | COMPLETED | BoTorch | 0.971694 | 128 | 81 | 0.001336 | 0.174749 |
10 | 10 | 10_0 | EARLY_STOPPED | BoTorch | 0.915654 | 64 | 40 | 0.010000 | 0.171633 |
11 | 11 | 11_0 | EARLY_STOPPED | BoTorch | 0.921003 | 67 | 45 | 0.010000 | 0.171766 |
12 | 12 | 12_0 | COMPLETED | BoTorch | 0.971072 | 128 | 128 | 0.000100 | 0.184820 |
13 | 13 | 13_0 | EARLY_STOPPED | BoTorch | 0.914827 | 128 | 128 | 0.010000 | 0.076628 |
14 | 14 | 14_0 | EARLY_STOPPED | BoTorch | 0.937712 | 128 | 38 | 0.000100 | 0.220883 |
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 25.716571428571434%.
/tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.CqWkCGFbVZ/Ax-main/ax/core/map_data.py:195: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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: 32 minutes, 56.91 seconds.