Michael Guerzhoy
Michael Guerzhoy
Sorry, like I say in the description, I haven't had a chance to debug this... I hope to fix everything up and post the code for running everything on ILSVRC...
Are you using Python 3? There are some issues with with line `net_data = load("bvlc_alexnet.npy").item()` in Python 3. You can try `net_data = load("bvlc_alexnet.npy", encoding="latin1").item()` instead, which works with newer...
Sorry, I'm not sure. Do I understand correctly that when you just run `python2 myalexnet.py`, it doesn't give an error? This still seems to do with different versions of `numpy.load()`...
Where do you get the new `bvlc_alexnet.npy`? Here is what works on my system: `Python 2.7.6 (default, Jun 22 2015, 17:58:13)` `[GCC 4.8.2] on linux2` `Type "help", "copyright", "credits" or...
I'm not sure, but this seems like it may be the issue.