File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ ################################################################
2+ #
3+ # Python package requirements for the TensorFlow Tutorials:
4+ # https://github.com/Hvass-Labs/TensorFlow-Tutorials
5+ #
6+ # If you are using Anaconda then you can install all required
7+ # Python packages by running the following commands in a shell:
8+ #
9+ # conda create --name tf python=3
10+ # pip install -r requirements.txt
11+ #
12+ # Note that you have to edit this file to select whether you
13+ # want to install the CPU or GPU version of TensorFlow.
14+ #
15+ ################################################################
16+ # Basic packages used in many of the tutorials.
17+
18+ numpy
19+ scipy
20+ jupyter
21+ matplotlib
22+ Pillow
23+ scikit-learn
24+
25+ ################################################################
26+ # TensorFlow can be installed either as CPU or GPU versions.
27+ # You select which one to install by (un)commenting these lines.
28+
29+ tensorflow # CPU Version of TensorFlow.
30+ # tensorflow-gpu # GPU version of TensorFlow.
31+
32+ # Builder API for TensorFlow used in many of the tutorials.
33+ prettytensor
34+
35+ ################################################################
36+
You can’t perform that action at this time.
0 commit comments