Search code examples
anacondatensorflowskflow

Install SKFLOW to work with Anaconda


Now that SKFLOW has been moved within TensorFlow I am not sure how to use it. I am running Anaconda on Ubuntu server and I installed Tensorflow as suggested in this question: Tensorflow and Anaconda on Ubuntu?

My scripts are seeing Tensorflow but not SKFLOW.


Solution

  • I have shared this in our Gitter channel but it might useful to repost it here.

    You can use pip to install TensorFlow's nightly binaries as mentioned in the README file if you don't want to wait until next official release.

    Then at least for the date I posted this, you can import skflow directly from TensorFlow via from tensorflow.contrib.skflow.python import skflow and then everything else works the same as usual.

    Hope this helps.

    Edit: Once this PR is merged, you'll be able to import as done in examples folder in TensorFlow, e.g. from tensorflow.contrib import skflow.