[tune] Tutorial UX Changes (#4990)

* add integration, iris, ASHA, recursive changes, set reuse_actors=True, and enable Analysis as a return object

* docstring

* fix up example

* fix

* cleanup tests

* experiment analysis
This commit is contained in:
Richard Liaw
2019-06-21 12:59:49 +08:00
committed by GitHub
parent 1d17125333
commit 31b6da12f9
13 changed files with 209 additions and 85 deletions
+8
View File
@@ -176,6 +176,14 @@ class Experiment(object):
else:
raise TuneError("Improper 'run' - not string nor trainable.")
@property
def local_dir(self):
return self.spec.get("local_dir")
@property
def checkpoint_dir(self):
return os.path.join(self.spec["local_dir"], self.name)
def convert_to_experiment_list(experiments):
"""Produces a list of Experiment objects.