forked from google-deepmind/deepmind-research
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable Travis tests for
unsupervised_adversarial_training
* Pin the version of Tensorflow at >= 1.15. This allows us to remove a workaround that causes breakages for newer versions (we get errors if `AddV2` already has a registered gradient). * Pin the version of Tensorflow at < 2 since cleverhans <= 3.1.0 doesn't properly support TF2 * Pin the version of cleverhans between 3.0.1 and 3.1.0. Versions newer than 3.1.0 will no longer support TF1. * Comment out the dependency on `tensorflow-gpu` as it's not a strict requirement, and it does nothing for us on Travis. PiperOrigin-RevId: 368241595
- Loading branch information
1 parent
b37b4ec
commit edcd3f3
Showing
4 changed files
with
9 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
absl-py>=0.7.0 | ||
cleverhans>=3.0.1 | ||
cleverhans>=3.0.1,<=3.1.0 | ||
numpy>=1.16.4 | ||
pillow>=4.3.0 | ||
tensorflow>=1.14 | ||
tensorflow-gpu >= 1.11.0 # GPU version of TensorFlow. | ||
tensorflow>=1.15,<2 | ||
# tensorflow-gpu >= 1.15.0,<2 # GPU version of TensorFlow. | ||
tensorflow-hub>=0.5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters