-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
requirements.txt
45 lines (37 loc) · 1.44 KB
/
requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
################################################################
#
# Python package requirements for the TensorFlow Tutorials:
# https://github.com/Hvass-Labs/TensorFlow-Tutorials
#
# If you are using Anaconda then you can install all required
# Python packages by running the following commands in a shell:
#
# conda create --name tf python=3
# source activate tf
# pip install -r requirements.txt
#
# Note that you have to edit this file to select whether you
# want to install the CPU or GPU version of TensorFlow.
#
################################################################
# Basic packages used in many of the tutorials.
numpy
scipy
jupyter
matplotlib
Pillow
scikit-learn
################################################################
# TensorFlow v.2.1 and above include both CPU and GPU versions.
tensorflow
################################################################
# Some tutorials use other individual Python packages.
# Uncomment the relevant lines for the tutorials you want to run.
# gym[atari] # Tutorial #16 on Reinforcement Learning.
# pandas # Tutorial #23 on Time-Series Prediction.
################################################################
# PrettyTensor was used as the builder API for several of the
# earlier tutorials. PrettyTensor is apparently no longer being
# maintained and may not work with newer versions of TensorFlow.
# prettytensor
################################################################