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
Hi,
In serialization.py, the save method will use SimpleSaver (when save_xser is true):
save
SimpleSaver
save_xser
class SimpleSaver: def __init__(self): pass def add_save_task(self, data, path): torch.save(data, path)
However, in line 105, it tries to instantiate SimplerSaver (instead of SimpleSaver):
SimplerSaver
if saver is None: saver = SimplerSaver()
This is causing a crash:
saver = SimplerSaver() NameError: name 'SimplerSaver' is not defined
The text was updated successfully, but these errors were encountered:
Addressed in PR #26
Sorry, something went wrong.
No branches or pull requests
Hi,
In serialization.py, the
save
method will useSimpleSaver
(whensave_xser
is true):However, in line 105, it tries to instantiate
SimplerSaver
(instead ofSimpleSaver
):This is causing a crash:
The text was updated successfully, but these errors were encountered: