Compare commits
4 Commits
rei/fork-r
...
0.6.0
Author | SHA1 | Date | |
---|---|---|---|
|
4be56f381c | ||
|
c98c91b530 | ||
|
09e2e823bd | ||
|
ad7bfc0232 |
@ -53,14 +53,14 @@ Install TensorFlow:
|
||||
|
||||
```bash
|
||||
# Ubuntu/Linux 64-bit, CPU only:
|
||||
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.5.0-cp27-none-linux_x86_64.whl
|
||||
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.6.0-cp27-none-linux_x86_64.whl
|
||||
|
||||
# Ubuntu/Linux 64-bit, GPU enabled:
|
||||
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.5.0-cp27-none-linux_x86_64.whl
|
||||
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.6.0-cp27-none-linux_x86_64.whl
|
||||
|
||||
# Mac OS X, CPU only:
|
||||
$ sudo easy_install --upgrade six
|
||||
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.5.0-py2-none-any.whl
|
||||
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.6.0-py2-none-any.whl
|
||||
```
|
||||
|
||||
You can now [test your installation](#test_install).
|
||||
@ -106,13 +106,13 @@ $ source ~/tensorflow/bin/activate.csh # If using csh
|
||||
(tensorflow)$ # Your prompt should change
|
||||
|
||||
# Ubuntu/Linux 64-bit, CPU only:
|
||||
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.5.0-cp27-none-linux_x86_64.whl
|
||||
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.6.0-cp27-none-linux_x86_64.whl
|
||||
|
||||
# Ubuntu/Linux 64-bit, GPU enabled:
|
||||
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.5.0-cp27-none-linux_x86_64.whl
|
||||
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.6.0-cp27-none-linux_x86_64.whl
|
||||
|
||||
# Mac OS X, CPU only:
|
||||
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.5.0-py2-none-any.whl
|
||||
(tensorflow)$ pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.6.0-py2-none-any.whl
|
||||
```
|
||||
|
||||
With the Virtualenv environment activated, you can now
|
||||
|
@ -43,7 +43,7 @@ automatically. You can either download
|
||||
and import it as below, or simply copy and paste it in.
|
||||
|
||||
```python
|
||||
import tensorflow.examples.tutorials.mnist.input_data
|
||||
from tensorflow.examples.tutorials.mnist import input_data
|
||||
mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user