Hi everyone,
I am saving some object arrays using python 2.7 with joblib.dump( SVM ).
Then I am uploading my file onto pythonanywhere.
But my pythonanywhere is 3.4. I get an error saying I am trying to un-pickle a python 2.
Either I copypaste all my files into a python 2.7 webapp, or I convert this small little joblib.load from 2.7 into 3.4.
Or I save in a version-compatible format. I tried np.save but it didn't work. Even with pickle=false (it doesn't allow pickle to be = false with object arrays).
Any ideas?
Thanks,
Fred