Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use tf without gpu support by default #4994

Merged
merged 4 commits into from
Jan 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog/4989.improvement.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Switching back to a TensorFlow release which only includes CPU support to reduce the
size of the dependencies. If you want to use the TensorFlow package with GPU support,
please run ``tensorflow-gpu==1.15.0``.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ redis==3.3.5
pymongo[tls,srv]==3.8.0
numpy==1.16.3
scipy==1.2.1
tensorflow==1.15.0
tensorflow-cpu==1.15.0
absl-py>=0.8.0
# setuptools comes from tensorboard requirement:
# https://github.com/tensorflow/tensorboard/blob/1.14/tensorboard/pip_package/setup.py#L33
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"pymongo[tls,srv]~=3.8",
"numpy~=1.16",
"scipy~=1.2",
"tensorflow~=1.15.0",
"tensorflow-cpu~=1.15.0",
# absl is a tensorflow dependency, but produces double logging before 0.8
# should be removed once tensorflow requires absl > 0.8 on its own
"absl-py>=0.8.0",
Expand Down