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] Initial track integration #4362

Merged
merged 32 commits into from
May 17, 2019
Merged
Changes from 1 commit
Commits
Show all changes
32 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
38444ae
safer track inspection
richardliaw May 17, 2019
9e13309
lint
richardliaw May 17, 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
Prev Previous commit
Next Next commit
comments
  • Loading branch information
richardliaw committed May 16, 2019
commit 732fd126cfdb7d45a99baab85e2fc5109d3037cd
4 changes: 2 additions & 2 deletions python/ray/tune/track/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ def shutdown():
_session = None


def log(iteration=None, **kwargs):
def log(**kwargs):
"""Applies TrackSession.log to the trial in the current context."""
_session = get_session()
return _session.log(iteration=iteration, **kwargs)
return _session.log(**kwargs)


def trial_dir():
Expand Down