File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,6 @@ In order to run this tutorial, you will need the following Python packages:
21
21
* skflow
22
22
* tensorflow
23
23
24
- (skflow is not part of tensorflow ??)
25
-
26
24
The first five packages can be installed with the following command:
27
25
28
26
```
@@ -35,9 +33,18 @@ Alternatively if you are using conda you can do:
35
33
conda install numpy pandas seaborn scikit-learn
36
34
```
37
35
38
- For TensorFlow, the installation depends on your environment. Below are installation instructions. For detailed
36
+ For ** TensorFlow** , the installation depends on your environment. Below are installation instructions. For detailed
39
37
instuctions, please see the TensorFlow
40
- [ README] ( https://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/get_started/os_setup.md ) file.
38
+ [ Download and Setup] ( https://www.tensorflow.org/versions/r0.8/get_started/os_setup.html#download-and-setup ) page.
39
+
40
+ Note, ** skflow** is now part of the TensorFlow library. Once you have installed TensorFlow, you can load skflow with
41
+ the following command:
42
+
43
+ ```
44
+ import tensorflow.contrib.learn as skflow
45
+ ```
46
+
47
+ For detailed instructions about skflow, please read [ Skflow Readme] ( https://github.com/tensorflow/skflow ) .
41
48
42
49
### NOTE:
43
50
What's better to use? The virtual environment or normal pip installation?
You can’t perform that action at this time.
0 commit comments