Skip to main content
Version: 0.5.0

Trial-Level Early Stopping

Trial-level early stopping in Ax

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 sys
import plotly.io as pio
if 'google.colab' in sys.modules:
pio.renderers.default = "colab"
%pip install ax-platform
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")

Defining the TorchX App

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,
)

Setting up the Runner

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={},
)

Setting up the SearchSpace

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=[],
)

Setting up Metrics

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,
)

Setting up the OptimizationConfig

The OptimizationConfig specifies the objective for Ax to optimize.

opt_config = OptimizationConfig(
objective=Objective(
metric=val_acc,
minimize=False,
)
)

Defining an Early Stopping Strategy

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).

  • We make use of 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).
  • The min_progression parameter specifies that trials should only be considered for stopping if the latest progression value is greater than this threshold.
  • The 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,
)

Creating the Ax Experiment

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,
)

Choosing the GenerationStrategy

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,
)
Output:
[INFO 02-03 20:08:50] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.
Output:
[INFO 02-03 20:08:50] 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
Output:
[INFO 02-03 20:08:50] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=5
Output:
[INFO 02-03 20:08:50] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=5
Output:
[INFO 02-03 20:08:50] ax.modelbridge.dispatch_utils: verbose, disable_progbar, and jit_compile are not yet supported when using choose_generation_strategy with ModularBoTorchModel, dropping these arguments.
Output:
[INFO 02-03 20:08:50] 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.

Configuring the Scheduler

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,
),
)
Output:
[INFO 02-03 20:08:50] 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()
Output:
[INFO 02-03 20:08:50] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
/home/runner/work/Ax/Ax/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 02-03 20:08:50] Scheduler: Running trials [0]...
Output:
/home/runner/work/Ax/Ax/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 02-03 20:08:50] Scheduler: Running trials [1]...
Output:
/home/runner/work/Ax/Ax/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 02-03 20:08:51] Scheduler: Running trials [2]...
Output:
/home/runner/work/Ax/Ax/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 02-03 20:08:53] Scheduler: Running trials [3]...
Output:
/home/runner/work/Ax/Ax/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 02-03 20:08:54] Scheduler: Running trials [4]...
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[WARNING 02-03 20:08:55] 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.").
Output:
[INFO 02-03 20:08:55] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[INFO 02-03 20:08:55] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:08:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[WARNING 02-03 20:08:56] 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.").
Output:
[INFO 02-03 20:08:56] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[INFO 02-03 20:08:56] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:08:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[WARNING 02-03 20:08:57] 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.").
Output:
[INFO 02-03 20:08:57] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[INFO 02-03 20:08:57] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:08:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[WARNING 02-03 20:08:58] 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.").
Output:
[INFO 02-03 20:08:58] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[INFO 02-03 20:08:58] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:08:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:08:59] Scheduler: Retrieved FAILED trials: [1].
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[INFO 02-03 20:08: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.")
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[ERROR 02-03 20:08: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.
Output:
[WARNING 02-03 20:08:59] 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.").
Output:
[INFO 02-03 20:08:59] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 0 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[WARNING 02-03 20:08: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.").
Output:
[INFO 02-03 20:08: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...
Output:
[INFO 02-03 20:08:59] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
/home/runner/work/Ax/Ax/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 02-03 20:08:59] Scheduler: Running trials [5]...
Output:
[INFO 02-03 20:09:00] Scheduler: Retrieved FAILED trials: [0].
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:00] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
/home/runner/work/Ax/Ax/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 02-03 20:09:00] Scheduler: Running trials [6]...
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:01] 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.").
Output:
[INFO 02-03 20:09:01] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:01] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:02] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:03] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:04] 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.").
Output:
[INFO 02-03 20:09:04] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:04] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:05] 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.").
Output:
[INFO 02-03 20:09:05] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:05] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:07] 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.").
Output:
[INFO 02-03 20:09:07] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:07] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:08] 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.").
Output:
[INFO 02-03 20:09:08] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:08] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:09] 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.").
Output:
[INFO 02-03 20:09:09] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:09] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:10] 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.").
Output:
[INFO 02-03 20:09:10] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:10] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:11] 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.").
Output:
[INFO 02-03 20:09:11] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:11] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:12] 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.").
Output:
[INFO 02-03 20:09:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:12] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:13] 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.").
Output:
[INFO 02-03 20:09:13] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:13] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:14] 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.").
Output:
[INFO 02-03 20:09:14] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:14] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:14] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:15] 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.").
Output:
[INFO 02-03 20:09:15] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:15] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:16] 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.").
Output:
[INFO 02-03 20:09:16] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:16] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09:17] 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.").
Output:
[INFO 02-03 20:09:17] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:09:17] 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.").
Output:
[INFO 02-03 20:09:17] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:17] 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.").
Output:
[INFO 02-03 20:09:17] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:09:17] 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.").
Output:
[INFO 02-03 20:09:17] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:17] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:19] 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.").
Output:
[INFO 02-03 20:09:19] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:19] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:20] 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.").
Output:
[INFO 02-03 20:09:20] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:20] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:21] 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.").
Output:
[INFO 02-03 20:09:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:21] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:22] 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.").
Output:
[INFO 02-03 20:09:22] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:22] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:22] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:23] 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.").
Output:
[INFO 02-03 20:09:23] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:23] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:24] 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.").
Output:
[INFO 02-03 20:09:24] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:24] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:25] 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.").
Output:
[INFO 02-03 20:09:25] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:25] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:26] 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.").
Output:
[INFO 02-03 20:09:26] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:26] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:27] 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.").
Output:
[INFO 02-03 20:09:27] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:27] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09:28] 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.").
Output:
[INFO 02-03 20:09:28] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:09:28] 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.").
Output:
[INFO 02-03 20:09:28] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:09:28] 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.").
Output:
[INFO 02-03 20:09:28] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:09:28] 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.").
Output:
[INFO 02-03 20:09:28] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:09:28] 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.").
Output:
[INFO 02-03 20:09:28] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:28] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:28] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:29] 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.").
Output:
[INFO 02-03 20:09:29] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:30] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:31] 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.").
Output:
[INFO 02-03 20:09:31] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:31] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:32] 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.").
Output:
[INFO 02-03 20:09:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:32] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:33] 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.").
Output:
[INFO 02-03 20:09:33] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:33] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:34] 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.").
Output:
[INFO 02-03 20:09:34] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:34] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:34] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:35] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:35] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:36] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:36] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:37] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:37] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:38] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:38] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09:39] 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.").
Output:
[INFO 02-03 20:09:39] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:09:39] 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.").
Output:
[INFO 02-03 20:09:39] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 3 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:09:39] 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.").
Output:
[INFO 02-03 20:09:39] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 4 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:09:39] 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.").
Output:
[INFO 02-03 20:09:39] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:39] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:39] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:40] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:40] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:42] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:42] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:43] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:43] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:44] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:44] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:45] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:45] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:46] 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.").
Output:
[INFO 02-03 20:09:46] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:09:46] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:46] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:47] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:47] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:48] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:48] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:49] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:49] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09:50] 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.").
Output:
[INFO 02-03 20:09:50] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:50] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:50] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:51] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:51] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:52] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:52] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:53] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:53] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:55] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:55] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:56] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:56] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:57] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:57] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:58] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:58] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[INFO 02-03 20:09: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.")
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[ERROR 02-03 20:09: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.
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[WARNING 02-03 20:09: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.").
Output:
[INFO 02-03 20:09: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...
Output:
[INFO 02-03 20:09:59] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:09:59] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[INFO 02-03 20:10:00] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:10:00] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:01] 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.").
Output:
[INFO 02-03 20:10:01] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:10:01] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:10:01] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[INFO 02-03 20:10:02] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:10:02] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[INFO 02-03 20:10:03] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:10:03] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:04] 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.").
Output:
[INFO 02-03 20:10:04] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:10:04] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:10:04] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:05] 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.").
Output:
[INFO 02-03 20:10:05] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:10:05] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:10:05] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:07] 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.").
Output:
[INFO 02-03 20:10:07] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:10:07] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:10:07] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:08] 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.").
Output:
[INFO 02-03 20:10:08] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[INFO 02-03 20:10:08] ax.early_stopping.strategies.base: PercentileEarlyStoppingStrategy received empty data. Not stopping any trials.
Output:
[INFO 02-03 20:10:08] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:09] 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.").
Output:
[INFO 02-03 20:10:09] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:09] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:10] 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.").
Output:
[INFO 02-03 20:10:10] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10:10] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
Output:
[INFO 02-03 20:10:10] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:11] 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.").
Output:
[INFO 02-03 20:10:11] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:11] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:12] 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.").
Output:
[INFO 02-03 20:10:12] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:12] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:13] 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.").
Output:
[INFO 02-03 20:10:13] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:13] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:14] 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.").
Output:
[INFO 02-03 20:10:14] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:15] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:16] 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.").
Output:
[INFO 02-03 20:10:16] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:16] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10:17] 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.").
Output:
[INFO 02-03 20:10:17] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 2 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:17] 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.").
Output:
[INFO 02-03 20:10:17] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 5 is still RUNNING continuing the experiment and retrying on next poll...
Output:
[WARNING 02-03 20:10:17] 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.").
Output:
[INFO 02-03 20:10:17] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:17] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:18] 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.").
Output:
[INFO 02-03 20:10:18] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:18] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:19] 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.").
Output:
[INFO 02-03 20:10:19] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:19] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:20] 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.").
Output:
[INFO 02-03 20:10:20] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:20] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:21] 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.").
Output:
[INFO 02-03 20:10:21] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10:21] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
Output:
[INFO 02-03 20:10:21] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:23] 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.").
Output:
[INFO 02-03 20:10:23] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:23] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:24] 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.").
Output:
[INFO 02-03 20:10:24] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:24] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:25] 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.").
Output:
[INFO 02-03 20:10:25] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:25] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:26] 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.").
Output:
[INFO 02-03 20:10:26] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:26] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10: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.").
Output:
[INFO 02-03 20:10: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...
Output:
[WARNING 02-03 20:10:27] 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.").
Output:
[INFO 02-03 20:10:27] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:27] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10:29] 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.").
Output:
[INFO 02-03 20:10:29] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:29] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10:30] 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.").
Output:
[INFO 02-03 20:10:30] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:30] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10:31] 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.").
Output:
[INFO 02-03 20:10:31] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10:31] ax.early_stopping.strategies.base: The number of completed trials (0) is less than the minimum number of curves needed for early stopping (5). Not early stopping.
Output:
[INFO 02-03 20:10:31] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
[INFO 02-03 20:10: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.")
Output:
[ERROR 02-03 20:10: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.
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or 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 02-03 20:10:32] 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.").
Output:
[INFO 02-03 20:10:32] Scheduler: MetricFetchE INFO: Because val_acc is available_while_running and trial 6 is still RUNNING continuing the experiment and retrying on next poll...
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:32] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO 02-03 20:10:33] Scheduler: Waiting for completed trials (for 1 sec, currently running trials: 5).
Output:
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
/home/runner/work/Ax/Ax/ax/core/map_data.py:216: FutureWarning: The behavior of DataFrame concatenation with empty or all-NA entries is deprecated. In a future version, this will no longer exclude empty or all-NA columns when determining the result dtypes. To retain the old behavior, exclude the relevant entries before the concat operation.
df = pd.concat(
[INFO 02-03 20:10: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.
Output:
[INFO