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

Update TensorFlow as 1.9 on Travis #10674

Merged
merged 5 commits into from
Aug 15, 2018
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ install:
- pip install -e .[tests]

# install TensorFlow (CPU version).
- pip install tensorflow==1.7
- pip install tensorflow==1.9

# install cntk
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
Expand Down
3 changes: 2 additions & 1 deletion tests/test_multiprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@
from keras.layers.core import Dense
from keras.utils.test_utils import keras_test
from keras.utils import Sequence
from keras import backend as K

STEPS_PER_EPOCH = 100
STEPS = 100
WORKERS = 4
WORKERS = 4 if K.backend() != 'tensorflow' else 2


class DummySequence(Sequence):
Expand Down