We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a75fd9c commit cb4a134Copy full SHA for cb4a134
Dockerfile.tmpl
@@ -104,12 +104,11 @@ RUN pip install lightgbm==$LIGHTGBM_VERSION && \
104
{{ end }}
105
106
# Install JAX
107
-ENV JAX_VERSION=0.2.19
108
{{ if eq .Accelerator "gpu" }}
109
-RUN pip install jax[cuda$CUDA_MAJOR_VERSION$CUDA_MINOR_VERSION]==$JAX_VERSION -f https://storage.googleapis.com/jax-releases/jax_releases.html && \
+RUN pip install jax[cuda] -f https://storage.googleapis.com/jax-releases/jax_releases.html && \
110
/tmp/clean-layer.sh
111
{{ else }}
112
-RUN pip install jax[cpu]==$JAX_VERSION && \
+RUN pip install jax[cpu] && \
113
114
115
0 commit comments