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
See: https://groups.google.com/forum/#!searchin/pylearn-users/example3_weights/pylearn-users/RVpBfdfYJFg/blpTqYYTEAAJ
I figured out the problem and I wonder if this is a bug. In autoencoder.py, the following code (at line 33):
def save(self, fname): fp = open(fname, 'w') pickle.dump([self.W, self.bias_vis, self.bias_hid], fp) fp.close()
should be:
def save(self, fname): fp = open(fname, 'wb') pickle.dump([self.W, self.bias_vis, self.bias_hid], fp) fp.close()
The text was updated successfully, but these errors were encountered:
That is a good food. If you make a pr we will merge it.
Fred Le 29 oct. 2015 17:27, "isaacgerg" [email protected] a écrit :
See: https://groups.google.com/forum/#!searchin/pylearn-users/example3_weights/pylearn-users/RVpBfdfYJFg/blpTqYYTEAAJ I figured out the problem and I wonder if this is a bug. In autoencoder.py, the following code (at line 33): def save(self, fname): fp = open(fname, 'w') pickle.dump([self.W, self.bias_vis, self.bias_hid], fp) fp.close() should be: def save(self, fname): fp = open(fname, 'wb') pickle.dump([self.W, self.bias_vis, self.bias_hid], fp) fp.close() — Reply to this email directly or view it on GitHub #1561.
— Reply to this email directly or view it on GitHub #1561.
Sorry, something went wrong.
No branches or pull requests
See: https://groups.google.com/forum/#!searchin/pylearn-users/example3_weights/pylearn-users/RVpBfdfYJFg/blpTqYYTEAAJ
I figured out the problem and I wonder if this is a bug. In autoencoder.py, the following code (at line 33):
should be:
The text was updated successfully, but these errors were encountered: