tensorflow / skflow

Simplified interface for TensorFlow (mimicking Scikit Learn) for Deep Learning
Apache License 2.0
3.18k stars 439 forks source link

Cannot load #145

Closed kengz closed 8 years ago

kengz commented 8 years ago

Running the example digits.py gives the error

ImportError: cannot import name 'monitors'

Once monitor is removed it works normally again. Is monitor packaged with skflow? I'm running skflow v0.1.0

terrytangyuan commented 8 years ago

Can you try installing from Github?

kengz commented 8 years ago

Just uninstalled and reinstalled from Github, monitor can now be imported, but then it throws another error:

ImportError: No module named 'cPickle'

I've seen somewhere on stackoverflow that python3 doesn't use cPickle, but pickle instead? How can this be resolved?

terrytangyuan commented 8 years ago

Try again. Should be fixed by #143.

kengz commented 8 years ago

Problem solved. Thank you.