-
Notifications
You must be signed in to change notification settings - Fork 6k
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] logger refactor part 1: move classes and utilities to own files #11746
Conversation
@@ -457,7 +457,8 @@ def run_experiments(experiments, | |||
reuse_actors=False, | |||
trial_executor=None, | |||
raise_on_failed_trial=True, | |||
concurrent=True): | |||
concurrent=True, | |||
callbacks=None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems fine to leave it (or remove), but don't forget to docstring
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm, the run_experiments
doesn't seem to have a docstring at all. It is documented at run()
though, like the other arguments. I can add a docstring to run_experiments
if that'd help
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me; cc @amogkam to review?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Why are these changes needed?
First split of PR #11699
Checks
scripts/format.sh
to lint the changes in this PR.