Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix undefined error in autoencoder example
Browse files Browse the repository at this point in the history
  • Loading branch information
vandanavk committed Aug 6, 2018
1 parent 8252033 commit 3bd3868
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/autoencoder/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import numpy as np
try:
import cPickle as pickle
except ModuleNotFoundError:
except ImportError:
import pickle


Expand Down

0 comments on commit 3bd3868

Please sign in to comment.