Bobo

Results 2 comments of Bobo

Please use pickle to load the parameters stored in the pkl file, following the lines 43-49 in networks.py. ``` import pickle f = file('wavelet_weights_c2.pkl','rb') dct = pickle.load(f) f.close() ```

Thank you for the reminder. The training code has been updated and is now in the 'train' folder.