Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to tf2.16 #1408

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove pins for tf-probability and decision foresets
  • Loading branch information
djherbis committed Jun 14, 2024
commit b052d130172c8e0d1b1715edd63222b15ab6aebd
8 changes: 2 additions & 6 deletions Dockerfile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -198,22 +198,18 @@ RUN apt-get update && \

RUN pip install -f http:https://h2o-release.s3.amazonaws.com/h2o/latest_stable_Py.html h2o && /tmp/clean-layer.sh

# b/318672158 Use simply tensorflow-probability once > 0.23.0 is released.
RUN pip install \
"tensorflow==${TENSORFLOW_VERSION}" \
"tensorflow-io==${TENSORFLOW_IO_VERSION}" \
git+https://github.com/tensorflow/probability.git@fbc5ebe9b1d343113fb917010096cfd88b32eecf \
tensorflow-probability \
tensorflow_decision_forests \
tensorflow_text \
"tensorflow_hub>=0.16.0" \
# b/331799280 remove once other packages over to dm-tre
optree \
tf-keras && \
/tmp/clean-layer.sh

# b/318672158 Use simply tensorflow_decision_forests on next release, expected with tf 2.16
RUN pip install tensorflow_decision_forests==1.8.1 --no-deps && \
/tmp/clean-layer.sh

RUN chmod +x /tmp/keras_patch.sh && \
/tmp/keras_patch.sh

Expand Down