Skip to content

Instantly share code, notes, and snippets.

@ramaswamym1987
Forked from chakkritte/dp1.txt
Created May 5, 2017 03:24
Show Gist options
  • Save ramaswamym1987/86946c1d622b0b40ac74d1edf1402533 to your computer and use it in GitHub Desktop.
Save ramaswamym1987/86946c1d622b0b40ac74d1edf1402533 to your computer and use it in GitHub Desktop.
Deep learning Part 1
1.Install python
https://www.python.org/downloads/release/python-352/
2.To install the CPU-only version of TensorFlow
C:\> pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.1-cp35-cp35m-win_amd64.whl
3.Test your installation
$ python
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> print(sess.run(hello))
Hello, TensorFlow!
>>> a = tf.constant(10)
>>> b = tf.constant(32)
>>> print(sess.run(a + b))
42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment