Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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]
pyarrow.fs
persistence (5/n):ray.train.Checkpoint
save direction #37888[air]
pyarrow.fs
persistence (5/n):ray.train.Checkpoint
save direction #37888Changes from all commits
abb1307
f6ff90a
562369f
95a3d20
484e67f
2148669
8c856b8
78c525f
e97f471
64945be
c6480c9
c681ccb
795bafe
8a084bc
725d802
877acb9
ee4ccbd
88042b3
a5eeab2
a6cd9dc
01f34bb
65e7a27
f2a4c36
49ee126
ffa0dd4
15553f7
00cc9d7
cb5990e
2db9aae
a2067b7
f1216f2
d4243e6
6699d81
9b9ff34
83aecd9
913af10
6b5d34e
24f441a
504ed54
1992161
b9eb88f
a6115b3
7cc74d9
6a0e1fb
4662789
8da0477
255b149
0971aca
6e7a873
6f6a341
d9804b0
318158f
a54664c
c4263ec
0cd7e47
3a6eba6
b65e9fe
b89bd1c
cada06a
3b784d7
49c1ead
7177940
3ba944a
5f71608
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
This circular dependency is:
ray.train._internal.storage
->ray.train._checkpoint
->ray.train._internal.storage._download_fs_path
We can solve this by moving the filesystem utils to a different file.
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.
Btw, a way to make this perhaps easier to read is to not use the public
report
API for this inner reporting, but call a private_report
that doesn't do the repeated checkpoint uploading.However, this is a minor comment.
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.
@ericl I think that makes sense -- I think this will be easier to do when we unify the 2 sessions -- just introduce a private method on the session that does the Train -> Tune communication.
Let's merge with what we have for now
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.
Actually, hold off on that, need to rebase and up the test timeout limit.