Skip to content
Open
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 examples/imagenet/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ jax[cuda11_cudnn805]>=0.3.16 # change to jax[tpu] if running on tpus
ml-collections==0.1.0
numpy==1.22.0
optax==0.1.3
tensorflow==2.11.1
tensorflow==2.12.1
tensorflow-datasets==4.4.0
4 changes: 2 additions & 2 deletions examples/lm1b/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jaxlib==0.4.13+cuda11.cudnn82 # Make sure CUDA version matches the base image.
ml-collections==0.1.1
numpy==1.24.3
optax==0.1.5
sentencepiece==0.1.99
tensorflow==2.13.0
sentencepiece==0.2.1
tensorflow==2.21.0
tensorflow-datasets==4.9.2
tensorflow-text==2.13.0
2 changes: 1 addition & 1 deletion examples/mnist/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ jaxlib==0.3.2+cuda11.cudnn82 # Make sure CUDA version matches the base image.
ml-collections==0.1.0
numpy==1.22.0
optax==0.1.0
tensorflow==2.11.1
tensorflow==2.12.1
tensorflow-datasets==4.4.0
2 changes: 1 addition & 1 deletion examples/nlp_seq/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
absl-py==1.0.0
flax==0.3.6
numpy==1.22.0
tensorflow==2.11.1
tensorflow==2.12.1
2 changes: 1 addition & 1 deletion examples/ogbg_molpcba/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ ml-collections==0.1.0
numpy==1.22.0
optax==0.1.0
sklearn==0.0
tensorflow==2.11.1
tensorflow==2.12.1
tensorflow-datasets==4.4.0
4 changes: 2 additions & 2 deletions examples/ppo/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
absl-py==1.0.0
atari-py==0.2.5
opencv-python==4.5.4.60
opencv-python==4.8.1.78
flax==0.3.6
gym==0.18.3
gymnasium[atari, accept-rom-license]==0.29.0
ml-collections==0.1.0
numpy==1.22.0
optax==0.1.5
tensorflow==2.11.1
tensorflow==2.12.1
2 changes: 1 addition & 1 deletion examples/sst2/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ flax==0.3.6
ml-collections==0.1.0
numpy==1.22.0
optax==0.1.0
tensorflow==2.11.1
tensorflow==2.12.1
tensorflow-datasets==4.4.0
tensorflow-text==2.7.0
4 changes: 2 additions & 2 deletions examples/vae/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ absl-py==1.4.0
flax==0.6.9
numpy==1.23.5
optax==0.1.5
Pillow==10.2.0
tensorflow==2.12.0
Pillow==12.2.0
tensorflow==2.12.1
tensorflow-datasets==4.9.2
4 changes: 2 additions & 2 deletions examples/wmt/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jax[cuda11_cudnn805]>=0.3.16 # change to jax[tpu] if running on tpus
ml-collections==0.1.0
numpy==1.22.0
optax==0.1.0
sentencepiece==0.1.96
sentencepiece==0.2.1
six==1.15.0
tensorflow==2.11.1
tensorflow==2.12.1
tensorflow-datasets==4.4.0
tensorflow-text==2.8.1
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ testing = [
"pytest-xdist",
"pytype",
# WMT/LM1B examples
"sentencepiece==0.2.0", # Segfault bug in 0.2.1
"sentencepiece==0.2.1", # Segfault bug in 0.2.1
"tensorflow_text>=2.11.0; platform_system!='Darwin' and python_version < '3.13'",
"tensorflow_datasets",
"tensorflow_cpu>=2.12.0; python_version<'3.13'", # to fix Numpy np.bool8 deprecation error
Expand Down
Loading