shashankravi96
Results
1
comments of
shashankravi96
Turns out that un-pickling in Python 3 needs some decoding. As explained [here](http://www.mlblog.net/2016/09/reading-mnist-in-python3.html). Basically, after opening on gzip, try the following, `u = pickle._Unpickler( f )` `u.encoding = 'latin1'` `train,...