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

[air] Do not warn of checkpoint_dir if it's coming from us (base_trainer). #26259

Merged
merged 33 commits into from
Jul 4, 2022
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
71eb15a
[air] use session.report.
xwjiang2010 Jun 23, 2022
8a21ead
typo
xwjiang2010 Jun 23, 2022
70d7e18
Merge branch 'master' of https://github.com/ray-project/ray into sess…
xwjiang2010 Jun 23, 2022
d7640c4
fix tests.
xwjiang2010 Jun 26, 2022
4e47715
Merge branch 'master' of https://github.com/ray-project/ray into sess…
xwjiang2010 Jun 27, 2022
c1d48fe
fix test
xwjiang2010 Jun 27, 2022
1e74e4c
fix lint
xwjiang2010 Jun 27, 2022
429db43
lint
xwjiang2010 Jun 27, 2022
f6b6eba
fix lint again...
xwjiang2010 Jun 27, 2022
3d3421d
fix lint...
xwjiang2010 Jun 27, 2022
5e156de
Add session to Ray Air doc.
xwjiang2010 Jun 27, 2022
f215cd9
Update doc/source/ray-air/key-concepts.rst
xwjiang2010 Jun 27, 2022
6a01a1c
Update doc/source/ray-air/key-concepts.rst
xwjiang2010 Jun 27, 2022
be6ad70
Update doc/source/ray-air/key-concepts.rst
xwjiang2010 Jun 27, 2022
bd62bf6
fix lint
xwjiang2010 Jun 27, 2022
a3ca89c
add svg
xwjiang2010 Jun 27, 2022
e5ba09b
add image
xwjiang2010 Jun 28, 2022
b575d98
fix lint
xwjiang2010 Jun 28, 2022
11c069d
address comments
xwjiang2010 Jun 28, 2022
f6f24c8
lint
xwjiang2010 Jun 28, 2022
29a88c2
lint
xwjiang2010 Jun 28, 2022
3f2f739
warnings.filterwarnings("always")
xwjiang2010 Jun 28, 2022
0cfa8e4
move test to a separate file
xwjiang2010 Jun 29, 2022
3665991
Merge branch 'master' into session2
xwjiang2010 Jun 29, 2022
b7a0db8
fix lint
xwjiang2010 Jun 29, 2022
6fcedea
Merge branch 'master' of https://github.com/ray-project/ray into sess…
xwjiang2010 Jun 29, 2022
363a4aa
remove test that is already in the other test file.
xwjiang2010 Jun 29, 2022
da8f0b1
retrigger checks
xwjiang2010 Jun 29, 2022
f6e29f0
address comments
xwjiang2010 Jun 30, 2022
d3b1b8d
retrigger checks
xwjiang2010 Jun 30, 2022
7ceb6c0
[air] Do not warn of `checkpoint_dir` if it's coming from us (base_tr…
xwjiang2010 Jul 1, 2022
bd32419
Merge branch 'master' of https://github.com/ray-project/ray into sess…
xwjiang2010 Jul 1, 2022
e23deab
address comment
xwjiang2010 Jul 2, 2022
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
2 changes: 1 addition & 1 deletion python/ray/train/base_trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def train_func(config, checkpoint_dir=None):
# stdout messages and the results directory.
train_func.__name__ = trainer_cls.__name__

trainable_cls = wrap_function(train_func)
trainable_cls = wrap_function(train_func, warn=False)

class TrainTrainable(trainable_cls):
"""Add default resources to the Trainable."""
Expand Down