ray.tune.ExperimentAnalysis.best_dataframe#
- property ExperimentAnalysis.best_dataframe: pandas.DataFrame#
Get the full result dataframe of the best trial of the experiment
The best trial is determined by comparing the last trial results using the
metric
andmode
parameters passed totune.run()
.If you didn’t pass these parameters, use
get_best_trial(metric, mode)
and use it to look for the dataframe in theself.trial_dataframes
dict.