We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When preparing checkpoint_best.pt and checkpoint_last.pt, create symbolic link instead of making exact copy of the checkpoint
checkpoint_best.pt
checkpoint_last.pt
I'm running on a machine that somehow has bad io performance, writing the same file 3 times seems extremely inefficient.
Seems that there is plan to implement a asynchronous copying but i believe a symlink is much more efficient
fairseq/fairseq/checkpoint_utils.py
Lines 128 to 141 in bedb259
The text was updated successfully, but these errors were encountered:
No branches or pull requests
🚀 Feature Request
When preparing
checkpoint_best.pt
andcheckpoint_last.pt
, create symbolic link instead of making exact copy of the checkpointMotivation
I'm running on a machine that somehow has bad io performance, writing the same file 3 times seems extremely inefficient.
Seems that there is plan to implement a asynchronous copying but i believe a symlink is much more efficient
fairseq/fairseq/checkpoint_utils.py
Lines 128 to 141 in bedb259
Pitch
Alternatives
Additional context
The text was updated successfully, but these errors were encountered: