Skip to content
Merged
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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ RUN pip install flashtext && \
pip install pycrypto && \
pip install easyocr && \
# Keep JAX version in sync with GPU image.
pip install jax==0.2.16 jaxlib==0.1.68 && \
pip install jax[cpu]==0.2.19 && \
# ipympl adds interactive widget support for matplotlib
pip install ipympl==0.7.0 && \
pip install pandarallel && \
Expand Down
2 changes: 1 addition & 1 deletion gpu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ RUN pip uninstall -y lightgbm && \
/tmp/clean-layer.sh

# Install JAX (Keep JAX version in sync with CPU image)
RUN pip install jax==0.2.16 jaxlib==0.1.68+cuda$CUDA_MAJOR_VERSION$CUDA_MINOR_VERSION -f https://storage.googleapis.com/jax-releases/jax_releases.html && \
RUN pip install jax[cuda$CUDA_MAJOR_VERSION$CUDA_MINOR_VERSION]==0.2.19 -f https://storage.googleapis.com/jax-releases/jax_releases.html && \
/tmp/clean-layer.sh

# Reinstall packages with a separate version for GPU support.
Expand Down