need TensorFlow 2.1.6 #112
Answered
by
jbusecke
suedorward
asked this question in
Q&A
-
Hey @jbusecke, how can I upgrade TensorFlow to 2.1.6? I need it to run keras_nlp on Keras 3 (it only supports Tensorflow under Keras 3). This is for a ML class project due on 12/22 so I would love a solution this week. It is for an approach that Prof. Gentine specifically suggested that I try. Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
jbusecke
Dec 14, 2023
Replies: 1 comment 7 replies
-
Hi @suedorward , sorry for the delay here. I am working on this right now. What would be helpful here is a code snippet that I can execute and confirm that it works. If urgent please ping me on the LEAP slack. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Overall this is quite a complex dependency problem here.
I followed the instruction to install keras_nlp on keras 3 and they did not work!
I managed to update keras to 3 with the following chain of commands in the terminal
pip install --upgrade tensorflow pip install --upgrade keras-nlp pip install --upgrade keras>=3 --no-deps
But I don'…