Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tune] Later expansion of local_dir #4806

Merged
merged 34 commits into from
May 25, 2019
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
5d936d4
initial track integration
richardliaw Mar 14, 2019
f991f21
initial pull from track repo
noahgolmant Mar 14, 2019
7431e4b
cut extraneous sync/log/project code
noahgolmant Mar 14, 2019
982600b
small_cleanup
richardliaw Mar 22, 2019
ee34398
Session
richardliaw Mar 31, 2019
eb67943
nit
richardliaw Mar 31, 2019
e7c0e22
Merge branch 'master' into tune_track_integration
richardliaw Mar 31, 2019
c56f7e9
nit
richardliaw Apr 2, 2019
792f1de
remove git
noahgolmant May 4, 2019
581a57d
Integration for functionrunner
richardliaw May 4, 2019
dd69ed6
Merge branch 'master' into tune_track_integration
richardliaw May 4, 2019
c7e1579
use unifiedlogger for json data; save/load gone
noahgolmant May 4, 2019
a7d023a
Merge branch 'tune_track_integration' of https://github.com/noahgolma…
noahgolmant May 4, 2019
6f7ba56
fix to use tune unified logger; add initial test cases
noahgolmant May 4, 2019
6cec7cc
formatting
richardliaw May 10, 2019
2cade6d
Enums
richardliaw May 10, 2019
6d897b8
Reformat tracking
richardliaw May 10, 2019
bdd01ff
full cleanup
richardliaw May 10, 2019
8b678e5
lint
richardliaw May 10, 2019
1c1ee5f
Fix up tests
richardliaw May 10, 2019
e737a33
some formatting
richardliaw May 10, 2019
28d0283
Param, fix up metric test
richardliaw May 11, 2019
923284f
Merge branch 'master' into tune_track_integration
richardliaw May 11, 2019
8037f58
fix up for example
richardliaw May 11, 2019
f52c3f3
Fix up example and test
richardliaw May 11, 2019
b81f6f8
Cleanup
richardliaw May 13, 2019
350188e
lint
richardliaw May 16, 2019
41075fd
localdir
richardliaw May 16, 2019
9ce0403
fix
richardliaw May 16, 2019
732fd12
comments
richardliaw May 16, 2019
d3d5467
trials
richardliaw May 16, 2019
13a8670
Merge branch 'master' into fix-expand
richardliaw May 17, 2019
a1197fd
expand later
richardliaw May 17, 2019
2f43f1f
lint
richardliaw May 24, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion python/ray/tune/trial.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def __init__(self,
# Trial config
self.trainable_name = trainable_name
self.config = config or {}
self.local_dir = os.path.expanduser(local_dir)
self.local_dir = local_dir # This remains unexpanded for syncing.
self.experiment_tag = experiment_tag
self.resources = (
resources
Expand Down Expand Up @@ -346,6 +346,7 @@ def generate_id(cls):

@classmethod
def create_logdir(cls, identifier, local_dir):
local_dir = os.path.expanduser(local_dir)
if not os.path.exists(local_dir):
os.makedirs(local_dir)
return tempfile.mkdtemp(
Expand Down