Import skflow on a Windows machine

1.1k Views Asked by At

I am trying to import skflow on my Windows PC. I have already install and used Anaconda on Python (3.5). I have no trouble to use tensorflow but when I want to use skflow I get the error:

ImportError                               Traceback (most recent call last)
<ipython-input-1-04faecc7c0de> in <module>()
      8 import tensorflow as tf
      9 from tensorflow.contrib import learn
---> 10 from tensorflow.contrib import skflow

ImportError: cannot import name 'skflow'

Does anyone know how to fix this?

Thanks in advance!

1

There are 1 best solutions below

4
On

Please try this:

>>> import tensorflow as tf
>>> from tensorflow.contrib import learn as skflow

FYI, skflow is not any special package/module/... It's an alias for tensorflow.contrib.learn which is in 'sklearn' style.