-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba602ce
commit 13e132c
Showing
10 changed files
with
114 additions
and
135 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 |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
steps: | ||
|
||
- name: Checkout (GitHub) | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build and run dev container task | ||
uses: devcontainers/[email protected] | ||
|
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Library deps. | ||
absl-py | ||
regex | ||
pandas | ||
keras-core>=0.1.6 | ||
tensorflow-datasets | ||
pycocotools | ||
# Tooling deps. | ||
packaging | ||
flake8 | ||
isort | ||
black | ||
pytest | ||
build | ||
namex |
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,13 @@ | ||
# Tensorflow cpu-only version. | ||
tf-nightly-cpu==2.16.0.dev20231109 # Pin a working nightly until rc0. | ||
|
||
# Torch cpu-only version. | ||
--extra-index-url https://download.pytorch.org/whl/cpu | ||
torch>=2.1.0 | ||
torchvision>=0.16.0 | ||
|
||
# Jax with cuda support. | ||
--find-links https://storage.googleapis.com/jax-releases/jax_cuda_releases.html | ||
jax[cuda12_pip] | ||
|
||
-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,13 @@ | ||
# Tensorflow with cuda support. | ||
--extra-index-url https://pypi.nvidia.com | ||
tf-nightly[and-cuda]==2.16.0.dev20231109 # Pin a working nightly until rc0. | ||
|
||
# Torch cpu-only version. | ||
--extra-index-url https://download.pytorch.org/whl/cpu | ||
torch>=2.1.0 | ||
torchvision>=0.16.0 | ||
|
||
# Jax cpu-only version. | ||
jax[cpu] | ||
|
||
-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,12 @@ | ||
# Tensorflow cpu-only version. | ||
tf-nightly-cpu==2.16.0.dev20231109 # Pin a working nightly until rc0. | ||
|
||
# Torch with cuda support. | ||
--extra-index-url https://download.pytorch.org/whl/cu118 | ||
torch==2.1.0 | ||
torchvision==0.16.0 | ||
|
||
# Jax cpu-only version. | ||
jax[cpu] | ||
|
||
-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,14 +1,12 @@ | ||
absl-py | ||
packaging | ||
pandas | ||
tensorflow | ||
tensorflow-datasets | ||
flake8 | ||
regex | ||
isort | ||
black | ||
pytest | ||
pycocotools | ||
keras-core | ||
build | ||
namex | ||
# Tensorflow. | ||
tf-nightly-cpu==2.16.0.dev20231109 # Pin a working nightly until rc0. | ||
|
||
# Torch. | ||
--extra-index-url https://download.pytorch.org/whl/cpu | ||
torch>=2.1.0 | ||
torchvision>=0.16.0 | ||
|
||
# Jax. | ||
jax[cpu] | ||
|
||
-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