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,
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 01-31 06:46:45] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.
[INFO 01-31 06:46:45] 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 01-31 06:46:45] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=5
[INFO 01-31 06:46:45] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=5
[INFO 01-31 06:46:45] 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 01-31 06:46:45] 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 01-31 06:46:45] 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 01-31 06:46:45] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
/tmp/tmp.8SPGnWMU26/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 01-31 06:46:45] Scheduler: Running trials [0]...
/tmp/tmp.8SPGnWMU26/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 01-31 06:46:46] Scheduler: Running trials [1]...
/tmp/tmp.8SPGnWMU26/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 01-31 06:46:47] Scheduler: Running trials [2]...
/tmp/tmp.8SPGnWMU26/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 01-31 06:46:48] Scheduler: Running trials [3]...
/tmp/tmp.8SPGnWMU26/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 01-31 06:46:49] Scheduler: Running trials [4]...
[INFO 01-31 06:46:50] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:50] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:50] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:50] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:50] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:46:50] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:50] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:50] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:50] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:50] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:46:50] Scheduler: Failed to fetch val_acc for trial 0, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:50] 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 01-31 06:46:50] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:50] 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 01-31 06:46:50] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:50] 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 01-31 06:46:50] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:50] 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 01-31 06:46:50] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:50] 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 01-31 06:46:50] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:46:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:46:51] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:51] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:51] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:51] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:51] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:46:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:46:51] Scheduler: Failed to fetch val_acc for trial 0, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:51] 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 01-31 06:46:51] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:51] 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 01-31 06:46:51] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:51] 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 01-31 06:46:51] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:51] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:46:51] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:51] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:46:51] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:46:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:46:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:46:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:46:52] Scheduler: Failed to fetch val_acc for trial 0, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:46:52] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:46:52] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:46:52] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:46:52] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:46:52] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:46:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:46:53] Scheduler: Retrieved FAILED trials: [0].
[INFO 01-31 06:46:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:46:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:46:53] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46: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 01-31 06:46:53] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46: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 01-31 06:46:53] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46: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 01-31 06:46:53] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:53] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:46:54] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
/tmp/tmp.8SPGnWMU26/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 01-31 06:46:54] Scheduler: Running trials [5]...
[INFO 01-31 06:46:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:46:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:46:55] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:55] 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 01-31 06:46:55] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:55] 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 01-31 06:46:55] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:55] 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 01-31 06:46:55] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:55] 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 01-31 06:46:55] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:55] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:46:55] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:46:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:46:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:46:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:46:56] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:56] 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 01-31 06:46:56] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:56] 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 01-31 06:46:56] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:56] 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 01-31 06:46:56] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:56] 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 01-31 06:46:56] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:56] 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 01-31 06:46:56] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:46:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:46:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:46:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:46:57] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:57] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:46:57] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:57] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:46:57] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:57] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:46:57] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:57] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:46:57] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:57] 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 01-31 06:46:57] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:46:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:46:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:46:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:46:58] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:58] 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 01-31 06:46:58] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:58] 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 01-31 06:46:58] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:58] 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 01-31 06:46:58] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:58] 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 01-31 06:46:58] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:58] 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 01-31 06:46:58] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:46:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:46:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:46:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:46:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:46:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:46:59] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:59] 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 01-31 06:46:59] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:59] 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 01-31 06:46:59] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:59] 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 01-31 06:46:59] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:59] 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 01-31 06:46:59] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:46:59] 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 01-31 06:46:59] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:46:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:00] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:00] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:00] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:00] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:00] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:00] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:00] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:00] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:00] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:00] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:00] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:00] 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 01-31 06:47:00] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:00] 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 01-31 06:47:00] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:00] 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 01-31 06:47:00] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:00] 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 01-31 06:47:00] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:00] 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 01-31 06:47:00] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:01] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:01] 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 01-31 06:47:01] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:01] 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 01-31 06:47:01] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:01] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:01] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:01] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:01] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:01] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:01] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:02] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:02] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:02] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:02] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:02] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:02] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:02] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:02] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:02] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:02] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:02] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:03] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:03] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:03] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:03] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:03] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:03] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:03] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:03] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:03] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:03] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:03] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:03] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:03] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:03] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:03] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:03] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:04] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:04] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:04] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:04] 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 01-31 06:47:04] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:04] 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 01-31 06:47:04] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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...
[INFO 01-31 06:47:05] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:06] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:06] 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 01-31 06:47:06] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:06] 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 01-31 06:47:06] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:06] 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 01-31 06:47:06] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:06] 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 01-31 06:47:06] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:06] 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 01-31 06:47:06] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:07] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:07] 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 01-31 06:47:07] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:07] 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 01-31 06:47:07] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:07] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:07] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:07] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:07] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:07] 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 01-31 06:47:07] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:08] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:08] 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 01-31 06:47:08] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:08] 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 01-31 06:47:08] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:08] 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 01-31 06:47:08] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:08] 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 01-31 06:47:08] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:08] 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 01-31 06:47:08] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:09] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:09] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:09] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:09] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:09] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:09] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:09] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:09] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:09] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:09] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:09] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:09] 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 01-31 06:47:09] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:09] 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 01-31 06:47:09] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:09] 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 01-31 06:47:09] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:09] 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 01-31 06:47:09] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:09] 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 01-31 06:47:09] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:10] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:10] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:10] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:10] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:10] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:10] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:10] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:10] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:10] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:10] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:10] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:10] 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 01-31 06:47:10] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:10] 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 01-31 06:47:10] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:10] 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 01-31 06:47:10] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:10] 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 01-31 06:47:10] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:10] 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 01-31 06:47:10] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:11] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:11] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:11] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:11] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:11] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:11] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:11] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:11] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:12] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:12] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:12] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:12] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:12] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:12] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:13] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:13] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:13] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:13] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:13] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:13] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:13] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:13] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:13] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:13] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:13] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:13] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:13] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:13] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:13] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:13] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:14] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:14] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:14] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:14] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:14] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:14] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:14] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:14] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:14] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:14] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:14] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:14] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:14] 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 01-31 06:47:14] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:14] 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 01-31 06:47:14] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:14] 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 01-31 06:47:14] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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...
[INFO 01-31 06:47:14] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:15] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:15] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:15] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:15] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:15] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:15] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:15] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:15] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:15] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:15] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:15] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:15] 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 01-31 06:47:15] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:15] 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 01-31 06:47:15] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:15] 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 01-31 06:47:15] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:15] 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 01-31 06:47:15] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:15] 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 01-31 06:47:15] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:16] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:16] 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 01-31 06:47:16] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:16] 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 01-31 06:47:16] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:16] 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 01-31 06:47:16] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:16] 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 01-31 06:47:16] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:16] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:16] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:18] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:18] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:18] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:18] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:18] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:18] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:18] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:18] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:18] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:18] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:18] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:18] 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 01-31 06:47:18] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:18] 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 01-31 06:47:18] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:18] 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 01-31 06:47:18] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:18] 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 01-31 06:47:18] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:18] 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 01-31 06:47:18] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:19] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:19] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:19] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:19] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:19] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:19] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:19] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:19] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:19] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:19] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:19] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:19] 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 01-31 06:47:19] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:19] 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 01-31 06:47:19] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:19] 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 01-31 06:47:19] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:19] 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 01-31 06:47:19] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:19] 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 01-31 06:47:19] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:20] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:20] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:20] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:20] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:20] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:20] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:20] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:20] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:20] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:20] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:20] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:20] 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 01-31 06:47:20] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:20] 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 01-31 06:47:20] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:20] 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 01-31 06:47:20] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:20] 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 01-31 06:47:20] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:20] 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 01-31 06:47:20] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:21] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:21] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:21] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:21] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:21] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:21] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:22] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:22] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:22] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:22] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:22] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:22] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:23] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:23] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:23] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:23] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:23] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:23] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:23] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:23] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:23] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:23] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:23] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:23] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:23] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:23] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:23] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:23] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:24] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:24] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:24] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:24] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:24] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:24] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:24] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:24] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:24] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:24] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:24] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:24] 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 01-31 06:47:24] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:24] 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 01-31 06:47:24] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:24] 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 01-31 06:47:24] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:24] 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 01-31 06:47:24] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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...
[INFO 01-31 06:47:24] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:25] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:25] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:25] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:25] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:25] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:25] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:25] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:25] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:25] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:25] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:25] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:25] 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 01-31 06:47:25] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:25] 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 01-31 06:47:25] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:25] 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 01-31 06:47:25] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:25] 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 01-31 06:47:25] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:25] 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 01-31 06:47:25] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:26] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:26] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:26] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:26] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:26] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:26] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:26] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:26] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:26] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:26] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:26] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:26] 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 01-31 06:47:26] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:26] 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 01-31 06:47:26] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:26] 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 01-31 06:47:26] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:26] 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 01-31 06:47:26] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:26] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:26] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:27] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:27] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:27] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:27] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:27] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:27] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:27] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:27] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:27] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:27] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:27] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:27] 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 01-31 06:47:27] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:27] 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 01-31 06:47:27] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:27] 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 01-31 06:47:27] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:27] 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 01-31 06:47:27] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:27] 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 01-31 06:47:27] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:28] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:29] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:29] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:29] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:29] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:29] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:29] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:29] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:29] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:29] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:29] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:29] 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 01-31 06:47:29] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:29] 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 01-31 06:47:29] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:29] 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 01-31 06:47:29] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:29] 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 01-31 06:47:29] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:29] 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 01-31 06:47:29] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:30] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:30] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:30] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:30] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:30] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:30] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:30] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:30] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:30] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:30] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:30] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:30] 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 01-31 06:47:30] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:30] 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 01-31 06:47:30] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:30] 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 01-31 06:47:30] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:30] 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 01-31 06:47:30] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:30] 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 01-31 06:47:30] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:31] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:31] 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 01-31 06:47:31] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:31] 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 01-31 06:47:31] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:31] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:31] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:31] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:31] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:31] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:31] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:32] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:32] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:32] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:32] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:32] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:32] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:33] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:33] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:33] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:33] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:33] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:33] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:33] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:33] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:33] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:33] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:33] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:33] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:33] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:33] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:33] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:33] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:34] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:34] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:34] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:34] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:34] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:34] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:34] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:34] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:34] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:34] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:34] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:34] 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 01-31 06:47:34] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:34] 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 01-31 06:47:34] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:34] 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 01-31 06:47:34] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:34] 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 01-31 06:47:34] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:34] 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 01-31 06:47:34] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:35] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:35] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:35] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:35] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:35] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:35] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:35] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:35] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:35] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:35] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:35] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:35] 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 01-31 06:47:35] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:35] 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 01-31 06:47:35] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:35] 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 01-31 06:47:35] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:35] 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 01-31 06:47:35] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:35] 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 01-31 06:47:35] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:36] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:36] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:36] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:36] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:36] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:36] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:36] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:36] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:36] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:36] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:36] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:36] 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 01-31 06:47:36] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:36] 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 01-31 06:47:36] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:36] 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 01-31 06:47:36] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:36] 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 01-31 06:47:36] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:36] 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 01-31 06:47:36] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:37] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:37] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:37] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:37] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:37] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:37] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:37] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:37] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:37] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:37] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:37] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:37] 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 01-31 06:47:37] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:37] 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 01-31 06:47:37] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:37] 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 01-31 06:47:37] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:37] 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 01-31 06:47:37] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:37] 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 01-31 06:47:37] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:38] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:38] 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 01-31 06:47:38] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:38] 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 01-31 06:47:38] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:38] 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 01-31 06:47:38] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:38] 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 01-31 06:47:38] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:38] 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 01-31 06:47:38] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:39] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:40] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:40] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:40] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:40] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:40] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:40] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:40] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:40] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:40] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:40] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:40] 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 01-31 06:47:40] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:40] 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 01-31 06:47:40] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:40] 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 01-31 06:47:40] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:40] 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 01-31 06:47:40] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:40] 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 01-31 06:47:40] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:41] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:41] 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 01-31 06:47:41] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:41] 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 01-31 06:47:41] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:41] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:41] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:41] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:41] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:41] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:41] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:42] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:42] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:42] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:42] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:42] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:42] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:42] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:42] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:42] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:42] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:42] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:43] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:43] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:43] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:43] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:43] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:43] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:43] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:43] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:43] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:43] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:43] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:43] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:43] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:43] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:43] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:43] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:44] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:44] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:44] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:44] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:44] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:44] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:44] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:44] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:44] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:44] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:44] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:44] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:44] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:44] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:44] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:44] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:45] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:45] 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 01-31 06:47:45] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:45] 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 01-31 06:47:45] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:45] 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 01-31 06:47:45] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:45] 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 01-31 06:47:45] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:45] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:45] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:46] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:46] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:46] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:46] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:46] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:46] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:46] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:46] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:46] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:46] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:46] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:46] 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 01-31 06:47:46] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:46] 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 01-31 06:47:46] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:46] 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 01-31 06:47:46] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:46] 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 01-31 06:47:46] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:46] 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 01-31 06:47:46] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:47] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:47] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:47] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:47] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:47] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:47] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:47] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:47] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:47] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:47] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:47] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:47] 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 01-31 06:47:47] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:47] 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 01-31 06:47:47] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:47] 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 01-31 06:47:47] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:47] 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 01-31 06:47:47] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:47] 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 01-31 06:47:47] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:48] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:48] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:48] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:48] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:48] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:48] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:48] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:48] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:48] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:48] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:48] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:48] 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 01-31 06:47:48] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:48] 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 01-31 06:47:48] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:48] 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 01-31 06:47:48] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:48] 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 01-31 06:47:48] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:48] 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 01-31 06:47:48] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:49] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:49] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:49] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:49] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:49] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:49] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:49] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:49] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:49] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:49] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:49] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:49] 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 01-31 06:47:49] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:49] 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 01-31 06:47:49] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:49] 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 01-31 06:47:49] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:49] 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 01-31 06:47:49] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:49] 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 01-31 06:47:49] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:50] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:50] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:50] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:50] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:50] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:50] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:51] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:51] 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 01-31 06:47:51] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:51] 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 01-31 06:47:51] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:51] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:51] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:51] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:51] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:51] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:51] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:52] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:52] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:52] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:52] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:52] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:52] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:52] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:53] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:53] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:53] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:53] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:53] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:53] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:54] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:54] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:54] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:54] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:54] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:54] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:54] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:54] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:54] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:54] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:54] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:54] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:54] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:54] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:54] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47: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 01-31 06:47:54] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:55] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:55] 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 01-31 06:47:55] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:55] 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 01-31 06:47:55] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:55] 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 01-31 06:47:55] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:55] 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 01-31 06:47:55] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:55] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:47:55] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:56] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:56] 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 01-31 06:47:56] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:56] 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 01-31 06:47:56] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:56] 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 01-31 06:47:56] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:56] 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 01-31 06:47:56] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:56] 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 01-31 06:47:56] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:57] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:57] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 1 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:57] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:57] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:57] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:57] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:57] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:57] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:47:57] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:57] 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 01-31 06:47:57] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:58] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:58] 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 01-31 06:47:58] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:58] 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 01-31 06:47:58] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:58] 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 01-31 06:47:58] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:58] 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 01-31 06:47:58] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:58] 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 01-31 06:47:58] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:47:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:47:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:47:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:47:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:47:59] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:59] 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 01-31 06:47:59] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:59] 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 01-31 06:47:59] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:59] 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 01-31 06:47:59] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:59] 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 01-31 06:47:59] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:47:59] 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 01-31 06:47:59] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:47:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:00] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:00] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:00] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:00] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:00] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:00] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:00] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:00] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:00] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:00] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:48:00] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:00] 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 01-31 06:48:00] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:00] 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 01-31 06:48:00] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:00] 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 01-31 06:48:00] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:00] 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 01-31 06:48:00] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:00] 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 01-31 06:48:00] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:48:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:48:01] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:01] 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 01-31 06:48:01] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:01] 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 01-31 06:48:01] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:01] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:48:01] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:01] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:48:01] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:01] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:48:02] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:48:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:03] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:03] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:03] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:03] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:03] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:03] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:03] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:03] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:03] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:03] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:48:03] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48: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 01-31 06:48:03] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48: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 01-31 06:48:03] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48: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 01-31 06:48:03] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48: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 01-31 06:48:03] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48: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 01-31 06:48:03] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:48:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:48:04] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48: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 01-31 06:48:04] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48: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 01-31 06:48:04] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:04] 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 01-31 06:48:04] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:04] 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 01-31 06:48:04] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48: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...
[INFO 01-31 06:48:04] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:48:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 06:48:05] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:05] 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 01-31 06:48:05] Scheduler: Failed to fetch val_acc for trial 2, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:05] 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 01-31 06:48:05] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:05] 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 01-31 06:48:05] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:05] 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 01-31 06:48:05] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:05] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
[INFO 01-31 06:48:05] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
[INFO 01-31 06:48:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 06:48:06] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:06] 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 01-31 06:48:06] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:06] 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 01-31 06:48:06] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:06] 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 01-31 06:48:06] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:06] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 06:48:07] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:07] 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 01-31 06:48:07] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:07] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:48:07] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:07] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:48:07] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:07] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 06:48:08] Scheduler: Failed to fetch val_acc for trial 1, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:08] 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 01-31 06:48:08] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:08] 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 01-31 06:48:08] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:08] 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 01-31 06:48:08] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:08] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:09] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:09] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:09] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:09] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:09] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:09] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 06:48:09] Scheduler: Failed to fetch val_acc for trial 3, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:09] 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 01-31 06:48:09] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:09] 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 01-31 06:48:09] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:09] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 06:48:11] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:11] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:48:11] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:11] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:48:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 06:48:12] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 06:48:12] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:13] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:13] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:13] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:13] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 06:48:13] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48: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 01-31 06:48:13] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48: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...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:14] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 06:48:14] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:14] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 06:48:14] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 06:48:14] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:14] 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 01-31 06:48:14] Scheduler: Failed to fetch val_acc for trial 5, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48:14] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:48:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:15] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:15] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 06:48:15] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:15] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 06:48:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 06:48:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 06:48:17] Scheduler: Failed to fetch val_acc for trial 4, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 06:48:17] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48:21] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:48:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48:24] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:48:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48:25] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:48:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:48:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48:34] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:48:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:48:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48:45] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:48:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:48:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48:55] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:48:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:48: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 01-31 06:48:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:49:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:49:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49:21] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:49:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:49:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49:26] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:49:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:49:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49:36] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:49:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:49:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49:46] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:49:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:49:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49:57] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:49:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:49: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 01-31 06:49:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:50:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50:07] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:50:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:50:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50:17] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:50:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50:21] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:50:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:50:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50:25] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:50:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:50:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50:38] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:50:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:50:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50:48] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:50:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50:58] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:50:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:50: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 01-31 06:50:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:51:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51:08] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:51:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:51:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51:19] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:51:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51:21] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:51:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:51:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51:29] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:51:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51:39] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:51:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:51:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51:49] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:51:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:51: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 01-31 06:51:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52:00] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:52:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:52:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52:10] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:52:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:52:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52:20] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:52:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52:21] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:52:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52:25] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:52:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:52:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52:30] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:52:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52:41] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:52:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:52:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52:51] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:52:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:52: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 01-31 06:52:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53:01] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:53:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:53:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53:12] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:53:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:53:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53:21] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:53:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53:22] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:53:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53:25] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:53:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53:32] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:53:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53:42] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:53:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:53:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53:53] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:53:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:53: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 01-31 06:53:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:54:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54:03] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:54:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:54:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54:13] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:54:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:54:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54:21] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:54:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54:23] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:54:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54:25] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:54:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:54:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:54:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54:44] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:54:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:54:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54:54] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:54:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:54: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 01-31 06:54:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:55:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55:04] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:55:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:55:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55:15] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:55:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:55:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55:25] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:55:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:55:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55:35] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:55:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:55:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55:46] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:55:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55:56] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:55:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:55: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 01-31 06:55:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56:06] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:56:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:56:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56:16] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:56:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56:21] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:56:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:56:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56:25] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:56:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56:27] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:56:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56:37] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:56:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56:48] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:56:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:56:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56: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 01-31 06:56:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:56:58] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:56:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:57:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57:08] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:57:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:57:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57:18] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:57:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57:21] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:57:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:57:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57:29] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:57:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57:39] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:57:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:57:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57:49] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:57:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:57:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57: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 01-31 06:57:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:57:59] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:57:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:58:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:58:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58:21] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:58:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:58:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:58:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:58:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58:51] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:58:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:58:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:58: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 01-31 06:58:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:59:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59:11] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:59:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:59:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59:21] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:59:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59:25] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:59:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59:32] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:59:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 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 01-31 06:59:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59:42] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:59:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59:52] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 06:59:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 06:59: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 01-31 06:59:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00: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 01-31 07:00:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:02] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
[INFO 01-31 07:00:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00: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 01-31 07:00:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00: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 01-31 07:00:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00: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 01-31 07:00:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00: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 01-31 07:00:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00: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 01-31 07:00:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00: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 01-31 07:00:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
[INFO 01-31 07:00:10] Scheduler: Retrieved COMPLETED trials: [1].
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:11] 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.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:11] 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 01-31 07:00:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 4).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:12] 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 01-31 07:00:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 4).
[INFO 01-31 07:00:13] Scheduler: Retrieved COMPLETED trials: [5].
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:13] 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.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:13] 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 01-31 07:00:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:14] 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 01-31 07:00:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:16] 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 01-31 07:00:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:17] 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 01-31 07:00:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:18] 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 01-31 07:00:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:19] Scheduler: Retrieved COMPLETED trials: [2].
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:19] ax.early_stopping.strategies.base: The number of completed trials (3) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 01-31 07:00:24] Scheduler: Running trials [6]...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 01-31 07:00:29] Scheduler: Running trials [7]...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 01-31 07:00:34] Scheduler: Running trials [8]...
[INFO 01-31 07:00:35] Scheduler: Retrieved COMPLETED trials: 3 - 4.
[INFO 01-31 07:00:35] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:35] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:35] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:35] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:35] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:35] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:00:35] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:35] 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 01-31 07:00:35] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:35] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:00:35] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:35] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:35] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:35] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 01-31 07:00:36] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:36] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:36] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:36] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:36] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:36] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:36] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:36] 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 01-31 07:00:36] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:36] 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 01-31 07:00:36] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:36] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:36] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:36] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:37] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:37] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:37] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:37] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:37] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:37] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:37] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:37] 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 01-31 07:00:37] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:37] 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 01-31 07:00:37] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:37] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:37] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:37] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:38] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:38] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 8 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:00:38] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:38] 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 01-31 07:00:38] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:38] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:38] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:38] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:39] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:39] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:39] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:39] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:39] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:39] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:39] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:39] 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 01-31 07:00:39] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:39] 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 01-31 07:00:39] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:39] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:39] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:40] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:40] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:40] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:40] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:40] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:40] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:40] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:40] 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 01-31 07:00:40] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:40] 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 01-31 07:00:40] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:40] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:40] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:40] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:41] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:41] 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 01-31 07:00:41] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:41] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:00:41] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:41] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:41] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:41] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:42] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 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 01-31 07:00:42] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 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 01-31 07:00:42] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:42] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:42] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:43] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:43] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:43] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:43] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:43] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:43] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:43] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:43] 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 01-31 07:00:43] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:43] 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 01-31 07:00:43] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:43] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:43] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:43] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:44] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:44] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:44] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:44] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:44] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:44] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:44] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:44] 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 01-31 07:00:44] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:44] 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 01-31 07:00:44] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:44] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:44] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:44] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:45] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:45] 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 01-31 07:00:45] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:45] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:00:45] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:45] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:46] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:46] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:47] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:47] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:47] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:47] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:47] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:47] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:47] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:47] 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 01-31 07:00:47] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:47] 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 01-31 07:00:47] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:47] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:47] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:47] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:48] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:48] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:48] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:48] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:48] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:48] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:48] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:48] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 8 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:00:48] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:48] 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 01-31 07:00:48] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:48] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:48] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:48] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:49] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:49] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:49] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:49] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:49] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:49] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:49] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:49] 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 01-31 07:00:49] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:49] 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 01-31 07:00:49] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:49] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:49] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:49] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:50] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:50] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:50] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:50] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:50] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:50] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:50] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:50] 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 01-31 07:00:50] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:50] 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 01-31 07:00:50] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:50] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:50] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:50] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:51] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:51] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:51] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:51] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:51] 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 01-31 07:00:51] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:51] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:00:51] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:51] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:51] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:51] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:52] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 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 01-31 07:00:52] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 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 01-31 07:00:52] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:52] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:52] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:53] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:53] 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 01-31 07:00:53] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:53] 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 01-31 07:00:53] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:53] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:53] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:53] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:54] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:54] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:54] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:54] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:54] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:54] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:54] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:54] 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 01-31 07:00:54] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:54] 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 01-31 07:00:54] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:54] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:54] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:54] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:55] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:55] 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 01-31 07:00:55] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:55] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:00:55] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:55] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:55] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:55] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:56] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:56] 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 01-31 07:00:56] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:56] 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 01-31 07:00:56] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:56] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:56] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:56] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:57] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:57] 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 01-31 07:00:57] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:57] 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 01-31 07:00:57] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:57] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:57] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:57] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:58] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:58] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 8 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:00:58] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:58] 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 01-31 07:00:58] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:58] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:58] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:58] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:00:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:00:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:00:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:00:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:00:59] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:59] 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 01-31 07:00:59] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:59] 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 01-31 07:00:59] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:00:59] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:00:59] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:00:59] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:00:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:01:00] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:01:00] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:01:00] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:01:00] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:01:00] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:01:00] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:01:00] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:00] 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 01-31 07:01:00] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:00] 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 01-31 07:01:00] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:00] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:00] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:01:00] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:01:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:01:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:01:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:01:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:01:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:01:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:01:01] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 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 01-31 07:01:02] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 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 01-31 07:01:02] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:02] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:01:02] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:01:03] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:01:03] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:01:03] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:01:03] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:01:03] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:01:03] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:01:03] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:03] 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 01-31 07:01:03] Scheduler: Failed to fetch val_acc for trial 6, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:03] 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 01-31 07:01:03] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:03] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:03] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:01:03] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:01:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:01:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:01:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:01:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:01:04] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:04] 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 01-31 07:01:04] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:04] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:04] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:04] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:01:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:01:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:01:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:01:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:01:05] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:05] 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 01-31 07:01:05] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:05] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:05] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:05] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:01:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:01:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:01:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:01:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:01:06] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:06] 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 01-31 07:01:06] Scheduler: Failed to fetch val_acc for trial 7, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:06] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 7 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:06] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:06] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:01:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:01:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:01:07] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:07] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:07] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:07] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:01:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:01:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:01:08] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:08] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 8 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:08] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:08] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:01:09] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:01:09] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:01:09] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:09] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:09] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:01:10] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:01:10] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:01:10] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:10] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:10] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:10] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:01:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:01:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:01:11] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:11] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:11] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:11] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:01:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:01:13] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:01:13] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:13] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:13] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:13] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:01:14] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:01:14] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:01:14] Scheduler: Failed to fetch val_acc for trial 8, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:01:14] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:14] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:14] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:15] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:15] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:16] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:16] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:17] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:17] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:18] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:18] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:19] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:20] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:20] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:21] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:21] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:23] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:23] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:24] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:24] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:25] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:25] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:26] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:26] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:27] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:27] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:28] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:28] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:29] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:29] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:30] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:30] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:31] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:31] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:33] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:33] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:34] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:34] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 01-31 07:01:35] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:01:35] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:36] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:36] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:37] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:37] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:38] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:38] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:39] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:41] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:41] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:42] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:42] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:43] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:43] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:44] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:44] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:45] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:45] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:46] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:46] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:47] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:47] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:48] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:48] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:50] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:50] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:51] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:51] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:52] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:52] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:53] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:53] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:54] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:54] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:55] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:55] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:56] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:56] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:57] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:57] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:01:58] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:01:58] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:01:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:00] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:02:00] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:01] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:02:01] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:02] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:02:02] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:03] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:02:03] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:04] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:02:04] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:05] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:02:05] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:06] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:02:06] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:07] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:02:07] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:08] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:02:08] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:10] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:02:10] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:11] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:11] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:12] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:12] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:13] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:13] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:14] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:14] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:15] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:15] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:16] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:16] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:17] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:17] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:18] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:18] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:20] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:20] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:21] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:21] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:22] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:22] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:23] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:23] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:24] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:24] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:25] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:25] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:26] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:26] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:27] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:27] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:28] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:28] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:30] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:30] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:31] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:31] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:32] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:32] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:33] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:33] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:34] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:34] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:35] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:35] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:36] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:36] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:37] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:37] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:39] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:40] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:40] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:41] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:41] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:42] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:42] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:43] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:43] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:44] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:44] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:45] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:45] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:46] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:46] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:47] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:02:47] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:02:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:49] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:02:49] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 01-31 07:02:49] ax.early_stopping.strategies.base: Last progression of Trial 8 is 0.29994666666666664.
[INFO 01-31 07:02:49] 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 01-31 07:02:49] ax.early_stopping.strategies.percentile: Considering trial 6 for early stopping.
[INFO 01-31 07:02:49] ax.early_stopping.strategies.base: Last progression of Trial 6 is 0.3999466666666667.
[INFO 01-31 07:02:49] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:02:49] ax.early_stopping.strategies.percentile: Early stopping decision for 6: True. Reason: Trial objective value 0.9313920140266418 is worse than 70.0-th percentile (0.9535973966121674) across comparable trials.
[INFO 01-31 07:02:49] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 01-31 07:02:49] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.29994666666666664.
[INFO 01-31 07:02:49] ax.early_stopping.strategies.base: Trial 7's most recent progression (0.29994666666666664) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 01-31 07:02:51] Scheduler: Running trials [9]...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:52] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[INFO 01-31 07:02:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:02:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:02:52] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:02:52] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:53] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:02:53] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 01-31 07:02:53] ax.early_stopping.strategies.base: Last progression of Trial 8 is 0.29994666666666664.
[INFO 01-31 07:02:53] 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 01-31 07:02:53] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:02:53] ax.early_stopping.strategies.base: There is not yet any data associated with trial 9 and metric val_acc. Not early stopping this trial.
[INFO 01-31 07:02:53] ax.early_stopping.strategies.percentile: Considering trial 7 for early stopping.
[INFO 01-31 07:02:53] ax.early_stopping.strategies.base: Last progression of Trial 7 is 0.3999466666666667.
[INFO 01-31 07:02:53] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:02:53] ax.early_stopping.strategies.percentile: Early stopping decision for 7: True. Reason: Trial objective value 0.9483842849731445 is worse than 70.0-th percentile (0.951170003414154) across comparable trials.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 01-31 07:02:55] Scheduler: Running trials [10]...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:56] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[INFO 01-31 07:02:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:02:56] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:02:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:02:56] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:02:56] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:02:56] 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 01-31 07:02:56] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:02:56] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:02:56] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:02:56] ax.early_stopping.strategies.percentile: Considering trial 8 for early stopping.
[INFO 01-31 07:02:56] ax.early_stopping.strategies.base: Last progression of Trial 8 is 0.3999466666666667.
[INFO 01-31 07:02:56] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:02:56] ax.early_stopping.strategies.percentile: Early stopping decision for 8: True. Reason: Trial objective value 0.9448539018630981 is worse than 70.0-th percentile (0.9480340480804443) across comparable trials.
[INFO 01-31 07:02:56] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:02:56] 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 01-31 07:02:56] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 01-31 07:02:56] ax.early_stopping.strategies.base: There is not yet any data associated with trial 10 and metric val_acc. Not early stopping this trial.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 01-31 07:03:00] Scheduler: Running trials [11]...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:01] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[INFO 01-31 07:03:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:01] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:01] 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 01-31 07:03:01] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:01] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:01] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:01] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:01] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:01] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:02] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:02] 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 01-31 07:03:03] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:03] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:03] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:03] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:03] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:03] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:04] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:04] 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 01-31 07:03:04] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:04] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:04] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:04] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:04] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:04] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:05] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:05] 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 01-31 07:03:05] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:05] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:05] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:05] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:05] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:05] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:06] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:06] 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 01-31 07:03:06] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:06] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:06] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:06] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:06] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:06] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:07] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:07] 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 01-31 07:03:07] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:07] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:07] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:07] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:07] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:07] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:08] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:08] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 9 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:08] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:08] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:08] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:08] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 11 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:08] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:08] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:09] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:09] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:09] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:09] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:09] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:09] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:09] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03: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 01-31 07:03:09] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03: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...
[WARNING 01-31 07:03:09] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:09] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:10] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:10] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:10] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:10] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:10] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:10] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:10] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:10] 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 01-31 07:03:10] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:10] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:10] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:10] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:10] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:10] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:11] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:11] 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 01-31 07:03:11] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:11] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:11] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:11] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:11] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:11] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:12] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:12] 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 01-31 07:03:12] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:12] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:12] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:12] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:12] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:13] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:13] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:13] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:13] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:13] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:13] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:13] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:13] 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 01-31 07:03:13] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:13] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:13] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:13] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:13] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:13] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:14] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:14] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:14] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:14] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:14] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:14] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:14] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:14] 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 01-31 07:03:14] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:14] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:14] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:14] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:14] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:14] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:15] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:15] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:15] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:15] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:15] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:15] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:15] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:15] 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 01-31 07:03:15] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:15] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:15] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:15] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:15] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:15] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:16] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:16] 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 01-31 07:03:16] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:16] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:16] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:16] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:16] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:16] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:17] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:17] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:17] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:17] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:17] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:17] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:18] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:18] 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 01-31 07:03:18] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:18] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:18] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:18] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 11 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:18] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:18] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:19] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:19] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:19] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:19] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:19] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:19] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:19] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:19] 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 01-31 07:03:19] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03: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...
[WARNING 01-31 07:03:19] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:19] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:20] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:20] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:20] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:20] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:20] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:20] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:20] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:20] 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 01-31 07:03:20] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:20] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:20] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:20] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:20] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:20] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:21] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:21] 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 01-31 07:03:21] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:21] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:21] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:21] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:21] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:22] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:22] 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 01-31 07:03:22] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:22] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:22] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:22] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:22] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:22] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:23] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:23] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:23] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:23] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:23] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:23] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:23] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:23] 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 01-31 07:03:23] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:23] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:23] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:23] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:23] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:23] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:24] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:24] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:24] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:24] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:24] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:24] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:24] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:24] 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 01-31 07:03:24] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:24] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:24] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:24] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:24] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:24] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:25] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:25] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:25] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:25] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:25] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:25] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:25] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:25] 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 01-31 07:03:25] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:25] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:25] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:25] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:25] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:25] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:26] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:26] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:26] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:26] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:26] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:26] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:26] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:26] 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 01-31 07:03:26] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:26] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:26] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:26] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:26] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:26] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:27] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:27] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:27] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:27] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:27] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:27] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:27] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:27] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 9 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:27] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:27] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:27] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:27] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:27] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:27] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:28] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:28] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:28] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:28] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:28] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:28] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:28] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:28] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 9 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:28] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:28] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:28] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:28] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:28] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:28] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:29] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:29] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:29] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:29] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:29] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:29] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:29] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:29] 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 01-31 07:03:29] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03: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...
[WARNING 01-31 07:03:29] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:29] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:29] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:30] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:30] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:30] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:30] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:30] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:30] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[WARNING 01-31 07:03:30] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:30] 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 01-31 07:03:30] Scheduler: Failed to fetch val_acc for trial 10, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:30] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 10 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:03:30] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:30] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:30] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.
[INFO 01-31 07:03:30] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:03:31] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:31] 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 01-31 07:03:31] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:31] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:32] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:32] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:33] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:33] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:33] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:33] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:03:33] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:33] 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 01-31 07:03:33] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:33] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:33] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:33] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:34] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:03:34] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:34] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:03:34] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:03:34] Scheduler: Failed to fetch val_acc for trial 9, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 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...
[WARNING 01-31 07:03:34] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:34] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:34] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:34] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:35] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:35] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:03:35] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:35] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 11 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:35] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:35] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:36] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:36] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:03:36] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:36] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:36] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:36] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:37] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:37] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:03:37] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:37] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:37] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:37] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:03:38] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:38] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:38] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:38] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:39] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:39] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:03:39] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:39] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:39] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:40] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:40] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:03:40] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:40] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:40] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:40] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:03:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:03:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:03:41] Scheduler: Failed to fetch val_acc for trial 11, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:03:41] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:41] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:41] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:43] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:43] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:44] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:44] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:45] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:45] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:46] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:46] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:47] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:47] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:48] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:48] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:49] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:49] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:50] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:50] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:51] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:51] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:52] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:52] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:54] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:54] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:55] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:55] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:56] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:56] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:57] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:57] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:58] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:58] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:03:59] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:03:59] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:03:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:00] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:04:00] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:01] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:04:01] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:02] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:04:02] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:04] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:04:04] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:05] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:05] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:06] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:06] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:07] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:07] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:08] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:08] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:09] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:10] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:10] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:11] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:11] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:12] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:12] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:14] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:14] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:15] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:15] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:16] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:16] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:17] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:17] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:18] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:18] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:19] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:20] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:20] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:21] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:21] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:23] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:23] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:24] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:24] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:25] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:25] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:26] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:26] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:27] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:27] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:28] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:28] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:29] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:29] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:30] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:30] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:32] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:32] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:33] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:33] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:34] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:34] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:35] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:35] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:36] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:36] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:37] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:37] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:38] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:38] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:04:39] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:40] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:40] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:42] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:42] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:43] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:43] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:44] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:44] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:45] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:45] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:46] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:46] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:47] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:47] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:48] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:48] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:49] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:49] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:50] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:50] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:52] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:52] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:53] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:53] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:54] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:54] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:55] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:55] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:56] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:56] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:57] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:57] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:58] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:58] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:04:59] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:04:59] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:04:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:01] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:05:01] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:05:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:02] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:05:02] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:05:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:03] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:05:03] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:05:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:04] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:05:04] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:05:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:05] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:05:05] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:05:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:06] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:05:06] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:05:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:07] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:05:07] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:05:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:08] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:05:08] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:05:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:05:09] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:05:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:11] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:05:11] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:05:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:12] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:05:12] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:05:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:13] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:05:13] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:05:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:14] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:14] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:14] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.29994666666666664.
[INFO 01-31 07:05:14] 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 01-31 07:05:14] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 01-31 07:05:14] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 01-31 07:05:14] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 10 0.953996 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:14] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9539955258369446 is better than 70.0-th percentile (0.9517510294914245) across comparable trials.
[INFO 01-31 07:05:14] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:14] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 01-31 07:05:14] 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 01-31 07:05:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:15] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:15] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:15] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.29994666666666664.
[INFO 01-31 07:05:15] 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 01-31 07:05:15] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 01-31 07:05:15] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 01-31 07:05:15] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 10 0.953996 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:15] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9539955258369446 is better than 70.0-th percentile (0.9517510294914245) across comparable trials.
[INFO 01-31 07:05:15] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:15] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 01-31 07:05:15] 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 01-31 07:05:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:16] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:16] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:16] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.29994666666666664.
[INFO 01-31 07:05:16] 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 01-31 07:05:16] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 01-31 07:05:16] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 01-31 07:05:16] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 10 0.953996 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:16] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9539955258369446 is better than 70.0-th percentile (0.9517510294914245) across comparable trials.
[INFO 01-31 07:05:16] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:16] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 01-31 07:05:16] 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 01-31 07:05:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:17] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:17] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:17] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.29994666666666664.
[INFO 01-31 07:05:17] 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 01-31 07:05:17] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 01-31 07:05:17] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 01-31 07:05:17] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 10 0.953996 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:17] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9539955258369446 is better than 70.0-th percentile (0.9517510294914245) across comparable trials.
[INFO 01-31 07:05:18] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:18] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 01-31 07:05:18] 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 01-31 07:05:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:19] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:19] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.29994666666666664.
[INFO 01-31 07:05:19] 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 01-31 07:05:19] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 01-31 07:05:19] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 01-31 07:05:19] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 10 0.953996 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:19] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9539955258369446 is better than 70.0-th percentile (0.9517510294914245) across comparable trials.
[INFO 01-31 07:05:19] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:19] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 01-31 07:05: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 01-31 07:05:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:20] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:20] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:20] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.29994666666666664.
[INFO 01-31 07:05:20] 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 01-31 07:05:20] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 01-31 07:05:20] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 01-31 07:05:20] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 10 0.953996 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:20] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9539955258369446 is better than 70.0-th percentile (0.9517510294914245) across comparable trials.
[INFO 01-31 07:05:20] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:20] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 01-31 07:05:20] 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 01-31 07:05:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:21] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:21] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:21] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.29994666666666664.
[INFO 01-31 07:05:21] 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 01-31 07:05:21] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 01-31 07:05:21] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 01-31 07:05:21] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 10 0.953996 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:21] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9539955258369446 is better than 70.0-th percentile (0.9517510294914245) across comparable trials.
[INFO 01-31 07:05:21] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:21] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 01-31 07:05:21] ax.early_stopping.strategies.base: Trial 11's most recent progression (0.29994666666666664) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 01-31 07:05:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:22] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:22] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:22] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.29994666666666664.
[INFO 01-31 07:05: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 01-31 07:05:22] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 01-31 07:05:22] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 01-31 07:05:22] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 10 0.953996 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:22] ax.early_stopping.strategies.percentile: Early stopping decision for 10: False. Reason: Trial objective value 0.9539955258369446 is better than 70.0-th percentile (0.9517510294914245) across comparable trials.
[INFO 01-31 07:05:22] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:22] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 01-31 07:05:22] 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 01-31 07:05:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:23] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:23] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:23] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:23] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:23] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9564907312393188) across comparable trials.
[INFO 01-31 07:05:23] ax.early_stopping.strategies.percentile: Considering trial 10 for early stopping.
[INFO 01-31 07:05:23] ax.early_stopping.strategies.base: Last progression of Trial 10 is 0.3999466666666667.
[INFO 01-31 07:05:23] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:23] ax.early_stopping.strategies.percentile: Early stopping decision for 10: True. Reason: Trial objective value 0.9539955258369446 is worse than 70.0-th percentile (0.9564907312393188) across comparable trials.
[INFO 01-31 07:05:23] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:23] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.29994666666666664.
[INFO 01-31 07:05:23] 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.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 01-31 07:05:27] Scheduler: Running trials [12]...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:28] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[INFO 01-31 07:05:28] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:28] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:28] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:28] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:28] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:28] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:28] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:28] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:28] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:28] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:28] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:28] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:28] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05: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 01-31 07:05:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:30] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:30] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:30] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:30] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:30] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:30] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:30] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:30] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:30] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:30] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:30] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:30] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:30] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:30] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:30] 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 01-31 07:05:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:31] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:31] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:31] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:31] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:31] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:31] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:31] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:31] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:31] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:31] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:31] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:31] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:31] 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 01-31 07:05:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:32] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:32] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:32] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:32] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:32] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:32] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:32] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:32] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:32] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:32] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:32] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:32] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:32] 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 01-31 07:05:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:33] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:33] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:33] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:33] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:33] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:33] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:33] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:33] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:33] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:33] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:33] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:33] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:33] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:33] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:33] 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 01-31 07:05:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:34] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:34] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:34] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:34] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:34] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:34] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:34] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:34] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:34] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:34] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:34] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:34] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:34] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:34] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:34] 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 01-31 07:05:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:35] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:35] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:35] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:35] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:35] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:35] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:35] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:35] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:35] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:35] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:36] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:36] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:36] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:36] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:36] 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 01-31 07:05:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:37] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:37] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:37] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:37] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:37] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:37] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:37] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:37] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:37] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:37] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:37] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:37] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:37] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:37] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:37] 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 01-31 07:05:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:38] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:38] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 12 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:38] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:38] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:38] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:38] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:38] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:38] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:38] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:38] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:38] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:38] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:38] 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 01-31 07:05:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:39] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:39] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:39] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:39] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:39] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:39] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:39] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:39] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:39] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:39] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:39] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:39] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:39] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:39] ax.early_stopping.strategies.base: There is not yet any data associated with trial 12 and metric val_acc. Not early stopping this trial.
[INFO 01-31 07:05:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:40] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:40] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:40] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:40] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:40] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:40] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:40] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:40] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:40] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:40] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:40] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:40] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:40] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:40] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:40] 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 01-31 07:05:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:41] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:41] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:41] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:41] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:41] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:41] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:41] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:41] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:41] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:41] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:41] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:41] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:41] 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 01-31 07:05:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:42] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:42] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:42] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:42] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:42] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:43] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:43] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:43] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:43] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:43] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:43] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:43] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:43] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:43] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:43] 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 01-31 07:05:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:44] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:44] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:44] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:44] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:44] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:44] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:44] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:44] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:44] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:44] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:44] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:44] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:44] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:44] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:44] 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 01-31 07:05:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:45] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:45] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:45] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:45] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:45] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:45] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:45] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:45] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:45] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:45] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:45] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:45] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:45] 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 01-31 07:05:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:46] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:46] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:46] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:46] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:46] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:46] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:46] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:46] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:46] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:46] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:46] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:46] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:46] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:46] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:46] 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 01-31 07:05:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:47] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:47] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:47] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:47] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:47] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:47] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:47] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:47] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:47] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:47] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:47] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:47] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:47] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:47] 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 01-31 07:05:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:48] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:48] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:48] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:48] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:48] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:48] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:48] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:48] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:48] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:48] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:48] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:48] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:48] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:48] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05: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 01-31 07:05:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:49] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:49] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:49] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:49] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 12 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:50] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:50] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:50] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:50] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:50] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:50] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:50] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:50] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:50] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:50] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:50] 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 01-31 07:05:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:51] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:51] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:51] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:51] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:51] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:51] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:51] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:51] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:51] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:51] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:51] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:51] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:51] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:51] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:51] 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 01-31 07:05:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:52] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:52] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:52] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:52] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:52] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:52] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:52] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:52] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:52] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:52] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:52] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:52] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:52] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:52] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:52] 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 01-31 07:05:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:53] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:53] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:53] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:53] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:53] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:53] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:53] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:53] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:53] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:53] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:53] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:53] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:53] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:53] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:53] 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 01-31 07:05:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:54] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:54] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:54] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:54] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:54] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:54] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:54] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:54] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:54] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:54] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:54] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:54] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:54] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:54] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:54] 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 01-31 07:05:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:55] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:55] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:55] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:55] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:55] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:55] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:55] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:55] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:55] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:55] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:55] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:55] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:55] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:55] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:55] 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 01-31 07:05:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:57] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:57] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:57] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:57] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:57] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:05:57] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:57] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.3999466666666667.
[INFO 01-31 07:05:57] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:57] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9669142365455627 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:57] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:57] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:57] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:57] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:57] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:57] 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 01-31 07:05:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:58] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:58] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:58] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:58] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:05:58] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:58] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:05:58] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:05:58] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9660218060016632) across comparable trials.
[INFO 01-31 07:05:58] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:58] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.3999466666666667.
[INFO 01-31 07:05:58] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:05:58] ax.early_stopping.strategies.percentile: Early stopping decision for 11: False. Reason: Trial objective value 0.9598299860954285 is better than 70.0-th percentile (0.9598299860954285) across comparable trials.
[INFO 01-31 07:05:58] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05: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 01-31 07:05:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:05:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:05:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:05:59] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:05:59] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:05:59] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:05:59] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:05:59] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:05:59] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:05:59] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:05:59] ax.early_stopping.strategies.percentile: Considering trial 11 for early stopping.
[INFO 01-31 07:05:59] ax.early_stopping.strategies.base: Last progression of Trial 11 is 0.49994666666666665.
[INFO 01-31 07:05:59] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:05:59] ax.early_stopping.strategies.percentile: Early stopping decision for 11: True. Reason: Trial objective value 0.9612253904342651 is worse than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:05:59] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:05:59] ax.early_stopping.strategies.base: There is not yet any data associated with trial 12 and metric val_acc. Not early stopping this trial.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 01-31 07:06:03] Scheduler: Running trials [13]...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:04] Scheduler: Generated all trials that can be generated currently. Max parallelism currently reached.
[INFO 01-31 07:06:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:06:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:06:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:04] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:04] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 12 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:06:04] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:04] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:04] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:04] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:04] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:04] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:04] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:04] 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 01-31 07:06:04] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06: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 01-31 07:06:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:06:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:06:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:05] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:05] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 12 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:06:05] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:05] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:05] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:05] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:05] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:05] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:05] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:05] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:05] 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 01-31 07:06:05] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:05] 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 01-31 07:06:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:06:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:06:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:06] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:06] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 12 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:06:06] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:06] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 13 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:06] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:06] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:06] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:06] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:06] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:06] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:06] 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 01-31 07:06:06] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:06] ax.early_stopping.strategies.base: There is not yet any data associated with trial 13 and metric val_acc. Not early stopping this trial.
[INFO 01-31 07:06:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:06:07] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:06:07] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:07] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:07] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 12 is still RUNNING continuing the experiment and retrying on next poll...
[WARNING 01-31 07:06:07] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:07] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:07] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:07] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:07] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:07] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:07] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:07] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:07] 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 01-31 07:06:07] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:07] 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 01-31 07:06:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[INFO 01-31 07:06:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
[ERROR 01-31 07:06:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:08] Scheduler: Failed to fetch val_acc for trial 12, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06: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...
[WARNING 01-31 07:06:08] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:08] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:08] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:08] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:08] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:08] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:08] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:08] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06: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 01-31 07:06:08] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:08] 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 01-31 07:06:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:09] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:09] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:09] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:09] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:09] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:09] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:09] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:09] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:09] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:09] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:10] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:10] 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 01-31 07:06:10] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:10] 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 01-31 07:06:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:11] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:11] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:11] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:11] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:11] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:11] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:11] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:11] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:11] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:11] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:11] 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 01-31 07:06:11] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:11] 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 01-31 07:06:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:12] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:12] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:12] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:12] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:12] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:12] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:12] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:12] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:12] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:12] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:12] 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 01-31 07:06:12] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:12] 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 01-31 07:06:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:13] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:13] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:13] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:13] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:13] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:13] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:13] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:13] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:13] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:13] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:13] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:13] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:13] 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 01-31 07:06:13] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:13] 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 01-31 07:06:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:14] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:14] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:14] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:14] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:14] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:14] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:14] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:14] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:14] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:14] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:14] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:14] 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 01-31 07:06:14] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06: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 01-31 07:06:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:15] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:15] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:15] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:15] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:15] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:15] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:15] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:15] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:15] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:15] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:15] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:15] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:15] 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 01-31 07:06:15] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:15] 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 01-31 07:06:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:16] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:16] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 13 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:17] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:17] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:17] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:17] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:17] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:17] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:17] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:17] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:17] 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 01-31 07:06:17] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:17] 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 01-31 07:06:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:18] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:18] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:18] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:18] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:18] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:18] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:18] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:18] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:18] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:18] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:18] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:18] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:18] 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 01-31 07:06:18] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:18] 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 01-31 07:06:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:19] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:19] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:19] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:19] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:19] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:19] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:19] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:19] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:19] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:19] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:19] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06: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 01-31 07:06:19] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:19] 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 01-31 07:06:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:20] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:20] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:20] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:20] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:20] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:20] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:20] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:20] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:20] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:20] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:20] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:20] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:20] 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 01-31 07:06:20] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:20] 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 01-31 07:06:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:21] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:21] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:21] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:21] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:21] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:21] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:21] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:21] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:21] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:21] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:21] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:21] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:21] 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 01-31 07:06:21] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:21] 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 01-31 07:06:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:22] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:22] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:22] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:22] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:22] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:22] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:22] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:22] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:22] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:22] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:22] 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 01-31 07:06:23] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:23] 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 01-31 07:06:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:24] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:24] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:24] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:24] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:24] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:24] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:24] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:24] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:24] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:24] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:24] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:24] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:24] 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 01-31 07:06:24] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:24] 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 01-31 07:06:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:25] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:25] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:25] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:25] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:25] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:25] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:25] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:25] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:25] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:25] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:25] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:25] 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 01-31 07:06:25] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06: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 01-31 07:06:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:26] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:26] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:26] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:26] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 13 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:26] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:26] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:26] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:26] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:26] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:26] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:26] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:26] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:26] 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 01-31 07:06:26] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:26] ax.early_stopping.strategies.base: There is not yet any data associated with trial 13 and metric val_acc. Not early stopping this trial.
[INFO 01-31 07:06:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:27] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:27] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:27] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:27] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:27] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:27] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:27] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:27] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:27] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:27] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:27] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:27] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:27] 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 01-31 07:06:27] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:27] 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 01-31 07:06:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:28] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:28] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:28] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:28] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:28] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:28] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:28] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:28] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:28] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:28] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:28] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:28] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:28] 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 01-31 07:06:28] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:28] 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 01-31 07:06:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:29] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:29] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:30] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:30] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:30] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:30] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:30] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:30] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:30] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:30] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:30] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:30] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:30] ax.early_stopping.strategies.base: Trial 12's most recent progression (0.09994666666666667) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 01-31 07:06:30] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:30] 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 01-31 07:06:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:31] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:31] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:31] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:31] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:31] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:31] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:31] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:31] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:31] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:31] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:31] 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 01-31 07:06:31] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:31] 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 01-31 07:06:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:32] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:32] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:32] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:06:32] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:32] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:32] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.49994666666666665.
[INFO 01-31 07:06:32] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:06:32] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.968433678150177 is better than 70.0-th percentile (0.9655004382133484) across comparable trials.
[INFO 01-31 07:06:32] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:32] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:32] 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 01-31 07:06:32] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:32] 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 01-31 07:06:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:33] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:33] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:33] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:33] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:33] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:33] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:33] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:33] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:33] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:33] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:33] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:33] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:33] 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 01-31 07:06:33] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:33] 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 01-31 07:06:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:34] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:34] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:34] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:34] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:34] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:34] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:34] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:34] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:34] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:34] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:34] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:34] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:34] 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 01-31 07:06:34] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:34] 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 01-31 07:06:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:35] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:35] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:35] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:36] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:36] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:36] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:36] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:36] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:36] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:36] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:36] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:36] 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 01-31 07:06:36] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:36] ax.early_stopping.strategies.base: There is not yet any data associated with trial 13 and metric val_acc. Not early stopping this trial.
[INFO 01-31 07:06:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:37] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:37] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:37] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:37] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:37] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:37] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:37] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:37] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:37] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:37] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:37] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:37] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:37] 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 01-31 07:06:37] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:37] 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 01-31 07:06:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:38] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:38] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:38] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:38] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:38] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:38] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:38] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:38] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:38] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:38] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:38] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:38] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06: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 01-31 07:06:38] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:38] 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 01-31 07:06:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:39] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:39] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:39] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:39] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:39] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:39] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:39] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:39] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:39] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:39] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:39] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:39] 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 01-31 07:06:39] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:39] 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 01-31 07:06:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:40] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:40] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:40] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:40] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:40] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:40] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:40] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:40] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:40] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:40] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:40] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:40] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:40] 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 01-31 07:06:40] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:40] 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 01-31 07:06:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:41] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:41] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:41] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:41] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:41] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:42] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:42] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:42] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:42] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:42] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:42] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:42] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:42] 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 01-31 07:06:42] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:42] 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 01-31 07:06:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:43] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:43] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:43] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:43] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:43] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:43] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:43] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:43] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:43] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:43] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:43] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:43] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.09994666666666667.
[INFO 01-31 07:06:43] 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 01-31 07:06:43] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:43] 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 01-31 07:06:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:44] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:44] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:44] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:44] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:44] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:44] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:44] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:44] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:44] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:44] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:44] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:06:44] 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 01-31 07:06:44] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:44] 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 01-31 07:06:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:45] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:45] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:45] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:45] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:45] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:45] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:45] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:45] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:45] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:45] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:06:45] 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 01-31 07:06:45] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06: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 01-31 07:06:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:46] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:46] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:46] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:46] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:46] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:46] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:46] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:46] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:46] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:46] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:46] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:06:46] 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 01-31 07:06:46] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:46] 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 01-31 07:06:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:06:47] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:06:47] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:06:47] Scheduler: Failed to fetch val_acc for trial 13, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:06:47] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:47] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:47] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:47] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:47] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:47] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:47] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:47] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:06:47] 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 01-31 07:06:47] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:47] 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 01-31 07:06:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:49] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:49] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:49] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:49] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:49] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:49] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:49] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:49] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:06:49] 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 01-31 07:06:49] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:49] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:06:49] 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 01-31 07:06:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:50] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:50] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:50] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:50] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:50] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:50] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:50] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:50] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:06:50] ax.early_stopping.strategies.base: Trial 12's most recent progression (0.19994666666666666) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 01-31 07:06:50] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:50] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:06:50] 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 01-31 07:06:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:51] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:51] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:51] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:51] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:51] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:51] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:51] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:51] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:06:51] 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 01-31 07:06:51] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:51] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:06:51] 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 01-31 07:06:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:52] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:52] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:52] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:52] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:52] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:52] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:52] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:52] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:06:52] 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 01-31 07:06:52] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:52] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:06:52] 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 01-31 07:06:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:53] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:53] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:53] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:53] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:53] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:53] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:53] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:53] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:06:53] 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 01-31 07:06:53] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:53] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:06:53] 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 01-31 07:06:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:55] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:55] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:55] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:55] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:55] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:55] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:55] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:55] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:06:55] 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 01-31 07:06:55] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:55] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:06: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 01-31 07:06:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:56] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:56] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:56] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:56] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:56] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:56] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:56] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:56] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:06:56] 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 01-31 07:06:56] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:56] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:06:56] 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 01-31 07:06:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:57] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:57] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:57] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:57] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:57] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:57] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:57] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:57] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:06:57] 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 01-31 07:06:57] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:57] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:06:57] ax.early_stopping.strategies.base: Trial 13's most recent progression (0.09994666666666667) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 01-31 07:06:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:58] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:58] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:58] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:58] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:58] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:58] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:58] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:58] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:06:58] 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 01-31 07:06:58] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:58] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:06:58] 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 01-31 07:06:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:06:59] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:06:59] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:06:59] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:06:59] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:06:59] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:06:59] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:06:59] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:06:59] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:06:59] 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 01-31 07:06:59] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:06:59] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:06:59] 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 01-31 07:06:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:00] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:07:01] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:01] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:01] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:07:01] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:07:01] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:07:01] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:01] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:01] 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 01-31 07:07:01] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:01] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:01] 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 01-31 07:07:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:02] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:07:02] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:02] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:02] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:07:02] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:07:02] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:07:02] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:02] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:02] 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 01-31 07:07:02] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:02] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:02] 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 01-31 07:07:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:03] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:07:03] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:03] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:03] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:07:03] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:07:03] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:07:03] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:03] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:03] 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 01-31 07:07:03] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:03] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:03] 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 01-31 07:07:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:04] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:07:04] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:04] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:04] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:07:04] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:07:04] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:07:04] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:04] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:04] 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 01-31 07:07:04] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:04] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:04] 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 01-31 07:07:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:05] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:07:05] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:05] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:05] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:07:05] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:07:05] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:07:05] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:05] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:05] 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 01-31 07:07:05] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:05] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07: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.
[INFO 01-31 07:07:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:06] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.5999466666666666.
[INFO 01-31 07:07:06] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:06] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:06] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.5999466666666666.
[INFO 01-31 07:07:06] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925350 2 0.946792 3 0.967623 4 0.967932 5 0.904825 9 0.972810 Name: 0.5999466666666666, dtype: float64.
[INFO 01-31 07:07:06] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9728099703788757 is better than 70.0-th percentile (0.9677771329879761) across comparable trials.
[INFO 01-31 07:07:06] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:06] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:06] 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 01-31 07:07:06] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:06] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:06] 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 01-31 07:07:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:08] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:08] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:08] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:08] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:08] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:08] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:08] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:08] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:08] 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 01-31 07:07:08] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:08] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:08] 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 01-31 07:07:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:09] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:09] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:09] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:09] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:09] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:09] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:09] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:09] 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 01-31 07:07:09] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:09] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07: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 01-31 07:07:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:10] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:10] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:10] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:10] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:10] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:10] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:10] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:10] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:10] ax.early_stopping.strategies.base: Trial 12's most recent progression (0.19994666666666666) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 01-31 07:07:10] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:10] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:10] 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 01-31 07:07:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:11] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:11] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:11] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:11] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:11] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:11] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:11] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:11] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:11] 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 01-31 07:07:11] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:11] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:11] ax.early_stopping.strategies.base: Trial 13's most recent progression (0.09994666666666667) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 01-31 07:07:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:12] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:12] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:12] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:12] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:12] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:12] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:12] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:12] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:12] 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 01-31 07:07:12] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:12] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:12] 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 01-31 07:07:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:14] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:14] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:14] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:14] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:14] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:14] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:14] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:14] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:14] 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 01-31 07:07:14] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:14] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:14] 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 01-31 07:07:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:15] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:15] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:15] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:15] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:15] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:15] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:15] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:15] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:15] 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 01-31 07:07:15] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:15] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:15] 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 01-31 07:07:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:16] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:16] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:16] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:16] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:16] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:16] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:16] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:16] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:16] 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 01-31 07:07:16] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:16] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:16] 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 01-31 07:07:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:17] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:17] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:17] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:17] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:17] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:17] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:17] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:17] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:17] 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 01-31 07:07:17] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:17] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:17] 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 01-31 07:07:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:18] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:18] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:18] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:18] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:18] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:18] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:18] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:18] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.19994666666666666.
[INFO 01-31 07:07:18] 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 01-31 07:07:18] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:18] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:18] 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 01-31 07:07:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:20] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:20] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:20] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:20] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:20] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:20] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:20] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:20] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:20] 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 01-31 07:07:20] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:20] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:20] 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 01-31 07:07:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:21] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:21] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:21] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:21] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:21] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:21] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:21] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:21] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:21] 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 01-31 07:07:21] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:21] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:21] 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 01-31 07:07:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:22] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:22] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:07:22] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:22] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:22] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:22] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:22] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:22] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:22] 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 01-31 07:07:22] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:22] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.09994666666666667.
[INFO 01-31 07:07:22] 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 01-31 07:07:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:23] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:23] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:23] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:23] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:23] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:23] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:23] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:23] 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 01-31 07:07:23] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:23] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:23] 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 01-31 07:07:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:24] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:24] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:24] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:24] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:24] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:24] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:24] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:24] 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 01-31 07:07:24] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:24] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:24] 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 01-31 07:07:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:26] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:26] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:26] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:26] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:26] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:26] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:26] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:26] 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 01-31 07:07:26] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:26] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:26] 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 01-31 07:07:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:27] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:27] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:27] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:27] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:27] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:27] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:27] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:27] 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 01-31 07:07:27] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:27] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:27] 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 01-31 07:07:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:28] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:28] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:28] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:28] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:28] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:28] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:28] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:28] 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 01-31 07:07:28] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:28] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:28] 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 01-31 07:07:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:29] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:29] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:29] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:29] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:29] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:29] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:29] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:29] 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 01-31 07:07:29] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:29] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07: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 01-31 07:07:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:30] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:30] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:30] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:30] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:30] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:30] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:30] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:30] 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 01-31 07:07:30] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:30] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:30] 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 01-31 07:07:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:32] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:32] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:32] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:32] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:32] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:32] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:32] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:32] 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 01-31 07:07:32] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:32] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:32] 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 01-31 07:07:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:33] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:33] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:33] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:33] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:33] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:33] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:33] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:33] 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 01-31 07:07:33] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:33] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:33] 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 01-31 07:07:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:34] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:34] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:34] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:34] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:34] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:34] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:34] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:34] 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 01-31 07:07:34] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:34] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:34] 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 01-31 07:07:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:35] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:35] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:35] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:35] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:35] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:35] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:35] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07: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 01-31 07:07:35] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:35] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:35] 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 01-31 07:07:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:36] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:36] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:36] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:36] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:36] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:36] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:36] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:36] 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 01-31 07:07:36] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:36] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:36] 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 01-31 07:07:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:37] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:38] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:38] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:38] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:38] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:38] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:38] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:38] 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 01-31 07:07:38] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:38] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:38] 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 01-31 07:07:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:39] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:39] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:39] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:39] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:39] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:39] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:39] 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 01-31 07:07:39] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:39] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07: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 01-31 07:07:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:40] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:40] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:40] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:40] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:40] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:40] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:40] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:40] 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 01-31 07:07:40] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:40] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:40] 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 01-31 07:07:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:41] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:41] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:41] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:41] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:41] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:41] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:41] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:41] ax.early_stopping.strategies.base: Trial 12's most recent progression (0.29994666666666664) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 01-31 07:07:41] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:41] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:41] 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 01-31 07:07:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:42] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:42] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:42] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:42] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:42] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:42] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:42] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:42] 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 01-31 07:07:42] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:42] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:42] ax.early_stopping.strategies.base: Trial 13's most recent progression (0.19994666666666666) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 01-31 07:07:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:44] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:44] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:44] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:44] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:44] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:44] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:44] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:44] 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 01-31 07:07:44] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:44] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:44] 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 01-31 07:07:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:45] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:45] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:45] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:45] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:45] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:45] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:45] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07: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 01-31 07:07:45] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:45] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:45] 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 01-31 07:07:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:46] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.6999466666666667.
[INFO 01-31 07:07:46] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:46] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.6999466666666667.
[INFO 01-31 07:07:46] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928060 2 0.949693 3 0.970138 4 0.972352 5 0.909688 9 0.971659 Name: 0.6999466666666667, dtype: float64.
[INFO 01-31 07:07:46] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9716590046882629 is better than 70.0-th percentile (0.9708983600139618) across comparable trials.
[INFO 01-31 07:07:46] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:46] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:46] 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 01-31 07:07:46] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:46] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:46] 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 01-31 07:07:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:47] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:07:47] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:47] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:07:47] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:07:47] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:07:47] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:47] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:47] 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 01-31 07:07:47] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:47] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:47] 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 01-31 07:07:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:48] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:07:48] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:48] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:07:48] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:07:48] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:07:48] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:48] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:48] 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 01-31 07:07:48] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:48] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:48] 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 01-31 07:07:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:50] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:07:50] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:50] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:07:50] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:07:50] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:07:50] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:50] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:50] 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 01-31 07:07:50] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:50] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:50] 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 01-31 07:07:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:51] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:07:51] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:51] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:07:51] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:07:51] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:07:51] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:51] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:51] 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 01-31 07:07:51] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:51] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:51] 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 01-31 07:07:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:52] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:07:52] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:52] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:07:52] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:07:52] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:07:52] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:52] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:52] 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 01-31 07:07:52] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:52] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:52] ax.early_stopping.strategies.base: Trial 13's most recent progression (0.19994666666666666) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 01-31 07:07:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:53] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:07:53] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:53] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:07:53] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:07:53] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:07:53] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:53] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:53] 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 01-31 07:07:53] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:53] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:53] 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 01-31 07:07:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:54] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:07:54] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:54] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:07:54] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:07:54] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:07:54] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:54] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.29994666666666664.
[INFO 01-31 07:07:54] 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 01-31 07:07:54] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:54] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:54] 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 01-31 07:07:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:55] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:07:56] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:07:56] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:07:56] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:07:56] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:07:56] ax.early_stopping.strategies.percentile: Considering trial 12 for early stopping.
[INFO 01-31 07:07:56] ax.early_stopping.strategies.base: Last progression of Trial 12 is 0.3999466666666667.
[INFO 01-31 07:07:56] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:07:56] ax.early_stopping.strategies.percentile: Early stopping decision for 12: True. Reason: Trial objective value 0.9521227478981018 is worse than 70.0-th percentile (0.9580796480178833) across comparable trials.
[INFO 01-31 07:07:56] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:07:56] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.19994666666666666.
[INFO 01-31 07:07:56] ax.early_stopping.strategies.base: Trial 13's most recent progression (0.19994666666666666) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat(
[INFO 01-31 07:07:58] Scheduler: Running trials [14]...
[INFO 01-31 07:07:59] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:07:59] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:07:59] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:07:59] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:07:59] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:00] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:00] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:00] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:00] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:00] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:00] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:00] 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 01-31 07:08:00] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:00] 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 01-31 07:08:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:01] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:01] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:01] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:01] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:01] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:01] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:01] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:01] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:01] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:01] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:01] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:01] 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 01-31 07:08:01] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:01] 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 01-31 07:08:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:02] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:02] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:02] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:02] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:02] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:02] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:02] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:02] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:02] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:02] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:02] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:02] ax.early_stopping.strategies.base: Trial 13's most recent progression (0.29994666666666664) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 01-31 07:08:02] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:02] 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 01-31 07:08:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:03] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:03] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:03] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:03] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:03] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:03] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:03] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:03] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:03] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:03] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:03] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:03] 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 01-31 07:08:03] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:03] 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 01-31 07:08:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:04] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:04] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:04] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:04] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:04] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:04] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:04] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:04] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:04] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:04] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:04] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:04] 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 01-31 07:08:04] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:04] 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 01-31 07:08:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:05] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:05] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:05] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:05] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:05] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:05] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:05] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:05] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:05] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:05] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:05] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:05] 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 01-31 07:08:05] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:05] 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 01-31 07:08:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:06] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:06] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:06] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:06] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:06] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:06] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:06] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:06] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:06] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:06] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:07] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:07] 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 01-31 07:08:07] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:07] 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 01-31 07:08:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:08] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:08] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:08] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:08] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:08] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:08] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:08] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:08] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:08] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:08] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:08] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:08] 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 01-31 07:08:08] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:08] 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 01-31 07:08:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:09] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:09] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:09] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:09] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:09] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:09] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:09] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:09] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:09] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:09] 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 01-31 07:08:09] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08: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 01-31 07:08:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:10] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:10] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:10] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:10] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:10] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:10] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:10] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:10] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:10] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:10] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:10] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08: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 01-31 07:08:10] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:10] 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 01-31 07:08:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:11] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:11] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:11] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:11] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 14 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:11] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:11] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:11] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:11] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:11] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:11] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:11] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:11] 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 01-31 07:08:11] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:11] ax.early_stopping.strategies.base: There is not yet any data associated with trial 14 and metric val_acc. Not early stopping this trial.
[INFO 01-31 07:08:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:12] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:12] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:12] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:12] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:12] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:12] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:12] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:12] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:12] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:12] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:12] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:12] ax.early_stopping.strategies.base: Trial 13's most recent progression (0.29994666666666664) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 01-31 07:08:12] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:12] 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 01-31 07:08:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:13] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:13] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:13] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:13] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:13] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:14] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:14] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:14] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:14] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:14] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:14] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:14] 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 01-31 07:08:14] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:14] 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 01-31 07:08:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:15] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:15] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:15] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:15] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:15] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:15] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:15] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:15] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:15] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:15] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:15] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:15] 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 01-31 07:08:15] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:15] 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 01-31 07:08:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:16] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:16] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:16] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:16] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:16] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:16] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:16] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:16] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:16] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:16] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:16] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:16] 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 01-31 07:08:16] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:16] 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 01-31 07:08:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:17] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:17] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:17] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:17] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:17] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:17] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:17] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:17] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:17] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:17] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:17] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:17] 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 01-31 07:08:17] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:17] 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 01-31 07:08:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:18] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:18] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:18] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:18] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:18] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:18] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:18] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:18] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:18] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:18] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:18] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:18] 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 01-31 07:08:18] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:18] 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 01-31 07:08:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:19] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:19] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:19] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:19] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:19] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:19] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:19] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:19] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:19] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:19] 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 01-31 07:08:19] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08: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 01-31 07:08:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:20] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:20] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:20] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:20] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:21] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:21] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:21] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:21] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:21] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:21] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:21] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:21] 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 01-31 07:08:21] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:21] ax.early_stopping.strategies.base: There is not yet any data associated with trial 14 and metric val_acc. Not early stopping this trial.
[INFO 01-31 07:08:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:22] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:22] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:22] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:22] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:22] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:22] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:22] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:22] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:22] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:22] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:22] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:22] 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 01-31 07:08:22] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:22] 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 01-31 07:08:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:23] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:23] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:23] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:23] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:23] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.7999466666666667.
[INFO 01-31 07:08:23] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:23] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.7999466666666667.
[INFO 01-31 07:08:23] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.928566 2 0.956369 3 0.970065 4 0.973631 5 0.891303 9 0.974672 Name: 0.7999466666666667, dtype: float64.
[INFO 01-31 07:08:23] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9746716618537903 is better than 70.0-th percentile (0.9718479514122009) across comparable trials.
[INFO 01-31 07:08:23] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:23] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:23] 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 01-31 07:08:23] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:23] 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 01-31 07:08:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:24] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:24] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:24] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:24] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:24] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:24] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:24] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:24] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:24] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:24] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:24] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:24] 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 01-31 07:08:24] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:24] 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 01-31 07:08:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:25] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:25] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:25] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:25] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:25] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:25] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:25] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:25] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:25] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:25] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:25] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:25] 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 01-31 07:08:25] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:25] 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 01-31 07:08:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:26] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:26] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:26] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:26] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:26] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:26] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:26] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:26] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:26] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:26] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:26] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:27] 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 01-31 07:08:27] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:27] 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 01-31 07:08:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:28] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:28] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:28] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:28] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:28] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:28] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:28] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:28] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:28] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:28] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:28] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:28] 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 01-31 07:08:28] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:28] 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 01-31 07:08:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:29] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:29] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:29] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08: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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:29] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:29] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:29] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:29] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:29] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:29] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:29] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:29] 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 01-31 07:08:29] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08: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 01-31 07:08:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:30] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:30] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:30] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:30] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:30] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:30] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:30] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:30] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:30] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:30] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:30] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08: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 01-31 07:08:30] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:30] 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 01-31 07:08:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:31] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:31] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:31] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:31] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 14 is still RUNNING continuing the experiment and retrying on next poll...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:31] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:31] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:31] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:31] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:31] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:31] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:31] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.29994666666666664.
[INFO 01-31 07:08:31] 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 01-31 07:08:31] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:31] ax.early_stopping.strategies.base: There is not yet any data associated with trial 14 and metric val_acc. Not early stopping this trial.
[INFO 01-31 07:08:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:32] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:32] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:32] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:32] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:32] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:32] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:32] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:32] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:32] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:32] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:32] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:32] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:32] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:32] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:32] ax.early_stopping.strategies.base: There is not yet any data associated with trial 14 and metric val_acc. Not early stopping this trial.
[INFO 01-31 07:08:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:33] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:33] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:33] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:33] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:34] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:34] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:34] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:34] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:34] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:34] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:34] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:34] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:34] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:34] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:34] 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 01-31 07:08:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:35] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:35] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:35] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:35] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:35] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:35] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:35] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:35] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:35] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:35] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:35] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:35] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:35] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:35] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:35] 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 01-31 07:08:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:36] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:36] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:36] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:36] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:36] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:36] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:36] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:36] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:36] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:36] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:36] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:36] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:36] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:36] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:36] 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 01-31 07:08:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:08:37] ax.core.metric: MetricFetchE INFO: Initialized MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.")
[ERROR 01-31 07:08:37] ax.core.experiment: Discovered Metric fetching Err while attaching data MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available."). Ignoring for now -- will retry query on next call to fetch.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 01-31 07:08:37] Scheduler: Failed to fetch val_acc for trial 14, found MetricFetchE(message="Tensorboard multiplexer is empty. This can happen if TB data is not populated at the time of fetch. Check the corresponding logs to confirm that Tensorboard data is available.").
[INFO 01-31 07:08:37] 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:37] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:37] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:37] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:37] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:37] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:37] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:37] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:37] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:37] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:37] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:37] 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 01-31 07:08:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:38] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 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 01-31 07:08:38] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:38] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:38] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:38] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:38] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:38] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:38] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:38] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:38] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:38] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:38] 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 01-31 07:08:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:40] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:40] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:40] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:40] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:40] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:40] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:40] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:40] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:40] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:40] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:40] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:40] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:40] 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 01-31 07:08:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:41] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:41] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:41] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:41] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:41] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:41] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:41] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:41] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:41] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:41] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:41] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:41] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:41] 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 01-31 07:08:41] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:42] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:42] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:42] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:42] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:42] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:42] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:42] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:42] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:42] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:42] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:42] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:42] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:42] 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 01-31 07:08:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:43] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:43] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:43] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:43] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:43] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:43] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:43] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:43] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:43] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:43] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:43] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:43] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:43] 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 01-31 07:08:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:44] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:44] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:44] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:44] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:44] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:44] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:44] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:44] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:44] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:44] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:44] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:44] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:44] 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 01-31 07:08:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:45] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:46] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:46] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:46] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:46] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:46] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:46] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:46] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:46] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:46] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:46] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:46] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:46] 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 01-31 07:08:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:47] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:47] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:47] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:47] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:47] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:47] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:47] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:47] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:47] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:47] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:47] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:47] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:47] 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 01-31 07:08:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:48] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:48] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:48] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:48] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:48] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:48] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:48] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:48] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:48] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:48] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:48] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:48] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:48] 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 01-31 07:08:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:49] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 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 01-31 07:08:49] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:49] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:49] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:49] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:49] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:49] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:49] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:49] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:49] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:49] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:49] 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 01-31 07:08:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:50] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:50] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:50] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:50] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:50] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:50] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:50] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:50] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:50] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:50] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:50] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:50] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:50] 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 01-31 07:08:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:52] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:52] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:52] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:52] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:52] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:52] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:52] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:52] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:52] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:52] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:52] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:52] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:52] 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 01-31 07:08:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:53] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:53] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:53] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:53] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:53] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:53] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:53] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:53] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:53] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:53] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:53] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:53] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:53] ax.early_stopping.strategies.base: Trial 14's most recent progression (0.09994666666666667) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 01-31 07:08:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:54] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:54] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:54] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:54] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:54] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:54] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:54] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:54] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:54] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:54] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:54] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:54] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:54] 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 01-31 07:08:54] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:55] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:55] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:55] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:55] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:55] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:55] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:55] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:55] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:55] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:55] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:55] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:55] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:55] 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 01-31 07:08:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:56] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:56] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:56] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:56] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:56] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:56] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:56] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:56] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:56] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:56] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:56] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:56] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:56] 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 01-31 07:08:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:57] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:08:58] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:08:58] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:58] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:58] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:58] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:58] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:58] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:58] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:58] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:58] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:58] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:58] 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 01-31 07:08:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:08:59] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 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 01-31 07:08:59] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:08:59] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:08:59] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:08:59] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:08:59] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:08:59] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:08:59] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:08:59] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:08:59] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:08:59] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:08:59] 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 01-31 07:08:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:00] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.8999466666666667.
[INFO 01-31 07:09:00] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:09:00] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:09:00] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.8999466666666667.
[INFO 01-31 07:09:00] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.931483 2 0.952730 3 0.971475 4 0.973524 5 0.915527 9 0.978043 Name: 0.8999466666666667, dtype: float64.
[INFO 01-31 07:09:00] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9780429601669312 is better than 70.0-th percentile (0.9724996089935303) across comparable trials.
[INFO 01-31 07:09:00] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:09:00] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:09:00] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:09:00] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:09:00] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:09:00] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:09: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 01-31 07:09:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:01] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.9999466666666667.
[INFO 01-31 07:09:01] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:09:01] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:09:01] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.9999466666666667.
[INFO 01-31 07:09:01] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.930878 2 0.954824 3 0.972838 4 0.973387 5 0.908972 9 0.977914 Name: 0.9999466666666667, dtype: float64.
[INFO 01-31 07:09:01] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9779136776924133 is better than 70.0-th percentile (0.9731123149394989) across comparable trials.
[INFO 01-31 07:09:01] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:09:01] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:09:01] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:09:01] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:09:01] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:09:01] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:09:01] 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 01-31 07:09:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:02] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.9999466666666667.
[INFO 01-31 07:09:02] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:09:02] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:09:02] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.9999466666666667.
[INFO 01-31 07:09:02] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.930878 2 0.954824 3 0.972838 4 0.973387 5 0.908972 9 0.977914 Name: 0.9999466666666667, dtype: float64.
[INFO 01-31 07:09:02] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9779136776924133 is better than 70.0-th percentile (0.9731123149394989) across comparable trials.
[INFO 01-31 07:09:02] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:09:02] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:09:02] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:09:02] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:09:02] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:09:02] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:09:02] ax.early_stopping.strategies.base: Trial 14's most recent progression (0.09994666666666667) that is available for metric val_acc falls out of the min/max_progression range (0.3, None). Not early stopping this trial.
[INFO 01-31 07:09:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:03] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.9999466666666667.
[INFO 01-31 07:09:04] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:09:04] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:09:04] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.9999466666666667.
[INFO 01-31 07:09:04] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.930878 2 0.954824 3 0.972838 4 0.973387 5 0.908972 9 0.977914 Name: 0.9999466666666667, dtype: float64.
[INFO 01-31 07:09:04] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9779136776924133 is better than 70.0-th percentile (0.9731123149394989) across comparable trials.
[INFO 01-31 07:09:04] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:09:04] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:09:04] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:09:04] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:09:04] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:09:04] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:09:04] 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 01-31 07:09:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:05] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.9999466666666667.
[INFO 01-31 07:09:05] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:09:05] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:09:05] ax.early_stopping.strategies.base: Last progression of Trial 9 is 0.9999466666666667.
[INFO 01-31 07:09:05] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.930878 2 0.954824 3 0.972838 4 0.973387 5 0.908972 9 0.977914 Name: 0.9999466666666667, dtype: float64.
[INFO 01-31 07:09:05] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9779136776924133 is better than 70.0-th percentile (0.9731123149394989) across comparable trials.
[INFO 01-31 07:09:05] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:09:05] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:09:05] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:09:05] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:09:05] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:09:05] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:09:05] 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 01-31 07:09:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:06] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 1.0.
[INFO 01-31 07:09:06] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:09:06] ax.early_stopping.strategies.percentile: Considering trial 9 for early stopping.
[INFO 01-31 07:09:06] ax.early_stopping.strategies.base: Last progression of Trial 9 is 1.0.
[INFO 01-31 07:09:06] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.930878 2 0.954824 3 0.972838 4 0.973387 5 0.908972 9 0.977914 Name: 1.0, dtype: float64.
[INFO 01-31 07:09:06] ax.early_stopping.strategies.percentile: Early stopping decision for 9: False. Reason: Trial objective value 0.9779136776924133 is better than 70.0-th percentile (0.9731123149394989) across comparable trials.
[INFO 01-31 07:09:06] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:09:06] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.3999466666666667.
[INFO 01-31 07:09:06] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:09:06] ax.early_stopping.strategies.percentile: Early stopping decision for 13: False. Reason: Trial objective value 0.9628321528434753 is better than 70.0-th percentile (0.960823142528534) across comparable trials.
[INFO 01-31 07:09:06] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:09:06] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:09:06] 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 01-31 07:09:06] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 3).
[INFO 01-31 07:09:07] Scheduler: Retrieved COMPLETED trials: [9].
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:07] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.49994666666666665.
[INFO 01-31 07:09:07] ax.early_stopping.utils: Got exception `x and y arrays must have at least 2 entries` during interpolation. Using uninterpolated values instead.
[INFO 01-31 07:09:07] ax.early_stopping.strategies.percentile: Considering trial 13 for early stopping.
[INFO 01-31 07:09:07] ax.early_stopping.strategies.base: Last progression of Trial 13 is 0.49994666666666665.
[INFO 01-31 07:09:07] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.925340 2 0.947774 3 0.965153 4 0.966891 5 0.913274 9 0.968434 11 0.961225 13 0.963779 Name: 0.49994666666666665, dtype: float64.
[INFO 01-31 07:09:07] ax.early_stopping.strategies.percentile: Early stopping decision for 13: True. Reason: Trial objective value 0.9637787938117981 is worse than 70.0-th percentile (0.9650154531002044) across comparable trials.
[INFO 01-31 07:09:07] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:09:07] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.09994666666666667.
[INFO 01-31 07:09:07] 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 01-31 07:09:08] Scheduler: Done submitting trials, waiting for remaining 1 running trials...
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:08] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:09:08] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:09] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.09994666666666667.
[INFO 01-31 07:09:09] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:10] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:10] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:11] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:11] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:12] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:12] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:13] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:13] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:14] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:14] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:15] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:15] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:16] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:16] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:17] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:17] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:18] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:18] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:19] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:19] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:20] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:20] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:21] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:21] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:23] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:23] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:24] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:24] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:25] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.19994666666666666.
[INFO 01-31 07:09:25] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:26] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:09:26] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:27] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:09:27] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:28] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:09:28] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:29] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:09:29] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:30] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:09:30] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:31] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:09:31] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:32] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:09:32] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:33] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:09:33] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:34] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:09:34] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:35] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:09:35] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:36] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:09:36] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:37] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:09:37] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:38] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:09:38] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:39] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.29994666666666664.
[INFO 01-31 07:09:39] ax.early_stopping.strategies.base: No trials have reached 0.3. Not stopping any trials.
[INFO 01-31 07:09:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 1).
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( [INFO 01-31 07:09:40] ax.early_stopping.strategies.base: Last progression of any candidate for trial stopping is 0.3999466666666667.
[INFO 01-31 07:09:40] ax.early_stopping.strategies.percentile: Considering trial 14 for early stopping.
[INFO 01-31 07:09:40] ax.early_stopping.strategies.base: Last progression of Trial 14 is 0.3999466666666667.
[INFO 01-31 07:09:40] ax.early_stopping.strategies.percentile: Early stopping objective at last progression is: 1 0.918405 2 0.944882 3 0.965411 4 0.962313 5 0.909821 6 0.931392 7 0.948384 8 0.944854 9 0.966914 10 0.953996 11 0.959830 12 0.952123 13 0.962832 14 0.949421 Name: 0.3999466666666667, dtype: float64.
[INFO 01-31 07:09:40] ax.early_stopping.strategies.percentile: Early stopping decision for 14: True. Reason: Trial objective value 0.949420690536499 is worse than 70.0-th percentile (0.9600782752037048) across comparable trials.
CPU times: user 2min 2s, sys: 2.51 s, total: 2min 4s Wall time: 22min 55s
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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.877442 | NaN | 1 | 1874.0 |
1 | 1_0 | val_acc | 0.898450 | NaN | 1 | 3749.0 |
2 | 1_0 | val_acc | 0.911679 | NaN | 1 | 5624.0 |
3 | 1_0 | val_acc | 0.918405 | NaN | 1 | 7499.0 |
4 | 1_0 | val_acc | 0.925340 | NaN | 1 | 9374.0 |
5 | 1_0 | val_acc | 0.925350 | NaN | 1 | 11249.0 |
6 | 1_0 | val_acc | 0.928060 | NaN | 1 | 13124.0 |
7 | 1_0 | val_acc | 0.928566 | NaN | 1 | 14999.0 |
8 | 1_0 | val_acc | 0.931483 | NaN | 1 | 16874.0 |
9 | 1_0 | val_acc | 0.930878 | 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 | 65 | 123 | 0.008741 | 0.380302 |
1 | 1 | 1_0 | COMPLETED | Sobol | 0.930878 | 19 | 42 | 0.000161 | 0.165303 |
2 | 2 | 2_0 | COMPLETED | Sobol | 0.954824 | 42 | 50 | 0.001019 | 0.276252 |
3 | 3 | 3_0 | COMPLETED | Sobol | 0.972838 | 85 | 16 | 0.000602 | 0.053503 |
4 | 4 | 4_0 | COMPLETED | Sobol | 0.973387 | 115 | 70 | 0.000268 | 0.102218 |
5 | 5 | 5_0 | COMPLETED | Sobol | 0.908972 | 28 | 25 | 0.004533 | 0.316907 |
6 | 6 | 6_0 | EARLY_STOPPED | BoTorch | 0.931392 | 38 | 62 | 0.001467 | 0.370332 |
7 | 7 | 7_0 | EARLY_STOPPED | BoTorch | 0.948384 | 59 | 49 | 0.001601 | 0.133173 |
8 | 8 | 8_0 | EARLY_STOPPED | BoTorch | 0.944854 | 57 | 47 | 0.000416 | 0.399151 |
9 | 9 | 9_0 | COMPLETED | BoTorch | 0.977914 | 113 | 128 | 0.000670 | 0.055457 |
10 | 10 | 10_0 | EARLY_STOPPED | BoTorch | 0.953996 | 126 | 16 | 0.000394 | 0.340554 |
11 | 11 | 11_0 | EARLY_STOPPED | BoTorch | 0.961225 | 68 | 58 | 0.000359 | 0.000000 |
12 | 12 | 12_0 | EARLY_STOPPED | BoTorch | 0.952123 | 107 | 17 | 0.000389 | 0.357174 |
13 | 13 | 13_0 | EARLY_STOPPED | BoTorch | 0.963779 | 66 | 93 | 0.000394 | 0.000000 |
14 | 14 | 14_0 | EARLY_STOPPED | BoTorch | 0.949421 | 106 | 17 | 0.000392 | 0.357527 |
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 32.860190476190475%.
/tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation. df = pd.concat( /tmp/tmp.8SPGnWMU26/Ax-main/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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: 23 minutes, 8.84 seconds.