[Tune] Post-Experiment Tools (#4351)

This commit is contained in:
Adi Zimmerman
2019-05-04 02:51:26 -04:00
committed by Richard Liaw
parent 406c429384
commit 36b71d1446
11 changed files with 290 additions and 192 deletions
+7
View File
@@ -0,0 +1,7 @@
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from ray.tune.analysis.experiment_analysis import ExperimentAnalysis
__all__ = ["ExperimentAnalysis"]
@@ -0,0 +1,108 @@
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import copy
import glob
import json
import logging
import os
import pandas as pd
from ray.tune.error import TuneError
from ray.tune.util import flatten_dict
logger = logging.getLogger(__name__)
UNNEST_KEYS = ("config", "last_result")
def unnest_checkpoints(checkpoints):
checkpoint_dicts = []
for g in checkpoints:
checkpoint = copy.deepcopy(g)
for key in UNNEST_KEYS:
if key not in checkpoint:
continue
try:
unnest_dict = flatten_dict(checkpoint.pop(key))
checkpoint.update(unnest_dict)
except Exception:
logger.debug("Failed to flatten dict.")
checkpoint = flatten_dict(checkpoint)
checkpoint_dicts.append(checkpoint)
return checkpoint_dicts
class ExperimentAnalysis(object):
"""Analyze results from a Tune experiment.
Parameters:
experiment_path (str): Path to where experiment is located.
Corresponds to Experiment.local_dir/Experiment.name
Example:
>>> tune.run(my_trainable, name="my_exp", local_dir="~/tune_results")
>>> analysis = ExperimentAnalysis(
>>> experiment_path="~/tune_results/my_exp")
"""
def __init__(self, experiment_path):
experiment_path = os.path.expanduser(experiment_path)
if not os.path.isdir(experiment_path):
raise TuneError(
"{} is not a valid directory.".format(experiment_path))
experiment_state_paths = glob.glob(
os.path.join(experiment_path, "experiment_state*.json"))
if not experiment_state_paths:
raise TuneError("No experiment state found!")
experiment_filename = max(
list(experiment_state_paths)) # if more than one, pick latest
with open(os.path.join(experiment_path, experiment_filename)) as f:
self._experiment_state = json.load(f)
if "checkpoints" not in self._experiment_state:
raise TuneError("Experiment state invalid; no checkpoints found.")
self._checkpoints = self._experiment_state["checkpoints"]
self._scrubbed_checkpoints = unnest_checkpoints(self._checkpoints)
def dataframe(self):
"""Returns a pandas.DataFrame object constructed from the trials."""
return pd.DataFrame(self._scrubbed_checkpoints)
def stats(self):
"""Returns a dictionary of the statistics of the experiment."""
return self._experiment_state.get("stats")
def runner_data(self):
"""Returns a dictionary of the TrialRunner data."""
return self._experiment_state.get("runner_data")
def trial_dataframe(self, trial_id):
"""Returns a pandas.DataFrame constructed from one trial."""
for checkpoint in self._checkpoints:
if checkpoint["trial_id"] == trial_id:
logdir = checkpoint["logdir"]
progress = max(glob.glob(os.path.join(logdir, "progress.csv")))
return pd.read_csv(progress)
raise ValueError("Trial id {} not found".format(trial_id))
def get_best_trainable(self, metric, trainable_cls):
"""Returns the best Trainable based on the experiment metric."""
return trainable_cls(config=self.get_best_config(metric))
def get_best_config(self, metric):
"""Retrieve the best config from the best trial."""
return self._get_best_trial(metric)["config"]
def _get_best_trial(self, metric):
"""Retrieve the best trial based on the experiment metric."""
return max(
self._checkpoints, key=lambda d: d["last_result"].get(metric, 0))
def _get_sorted_trials(self, metric):
"""Retrive trials in sorted order based on the experiment metric."""
return sorted(
self._checkpoints,
key=lambda d: d["last_result"].get(metric, 0),
reverse=True)