-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update requirements and install instructions for multi-backend keras
- Loading branch information
1 parent
2c8e915
commit 6ff39c0
Showing
8 changed files
with
77 additions
and
83 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,6 @@ namex | |
# Optional deps. | ||
rouge-score | ||
sentencepiece | ||
tensorflow-datasets | ||
# Breakage fix. | ||
ml-dtypes==0.2.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Tensorflow (and cuda). | ||
tensorflow==2.14.0.rc1 | ||
tensorflow-text==2.14.0.rc0 | ||
|
||
# Jax. | ||
--find-links https://storage.googleapis.com/jax-releases/jax_cuda_releases.html | ||
jax[cuda11_pip]==0.4.14 | ||
|
||
-r requirements-common.txt |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Follow the version in https://github.com/googlecolab/backend-info | ||
# This gives us version of cuda, torch, jax, and tf that all cooperate. | ||
|
||
# Tensorflow (and cuda). | ||
tensorflow[and-cuda]==2.14.0.rc1 | ||
tensorflow-text[and-cuda]==2.14.0.rc0 | ||
|
||
-r requirements-common.txt |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Tensorflow (and cuda). | ||
tensorflow==2.14.0.rc1 | ||
tensorflow-text==2.14.0.rc0 | ||
|
||
# Torch. | ||
--extra-index-url https://download.pytorch.org/whl/cu117 | ||
torch==2.0.1+cu117 | ||
torchvision==0.15.2+cu117 | ||
|
||
-r requirements-common.txt |
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,13 @@ | ||
# Core deps. | ||
tensorflow~=2.13.0 | ||
tensorflow-text~=2.13.0 | ||
tensorflow-datasets | ||
# Tensorflow (and cuda). | ||
tensorflow[and-cuda]==2.14.0.rc1 | ||
tensorflow-text[and-cuda]==2.14.0.rc0 | ||
|
||
# Torch. | ||
--extra-index-url https://download.pytorch.org/whl/cpu | ||
torch==2.0.1 | ||
torchvision==0.15.2 | ||
|
||
# Jax. | ||
jax[cpu]==0.4.14 | ||
|
||
# Common deps. | ||
-r requirements-common.txt |