-
Notifications
You must be signed in to change notification settings - Fork 60
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
Fixing checkpoint downloader #174
Conversation
@@ -1046,6 +1053,7 @@ def get_run_file_names(run: Run, prefix: str = "") -> List[str]: | |||
:return: A list of paths within the Run's container | |||
""" | |||
all_files = run.get_file_names() | |||
print(f"Selecting files with prefix {prefix}") |
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.
Did you leave this print statement in by accident?
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.
No, I made it a bit nicer and left it on purpose - I found it's useful to know which prefix is used to select among run files
This PR contains changes to the class CheckpointDownloader to fix a bug with the hierarchies of the downloaded folders.