Open rkazants opened 7 months ago
Hi @rkazants. Thanks for posting.
Can you try upgrading to the latest tensorflow_hub
version 0.16.1 and installing tf-keras
as a peer dependency?
Some extra context:
TensorFlow v2.16 points tf.keras
to Keras 3, which unfortunately breaks a number of workflows with tensorflow_hub
. We're working to make tensorflow_hub
compatible with Keras 3 but in the meantime the recommendation is to use Keras 2 via tf-keras.
@KeijiBranshi Thanks. It worked
import os
os.environ['TF_USE_LEGACY_KERAS']='1'
Now your code should work properly with using keras 2
Done with the above installation still getting the error can anyone help with it
@Aarushi16V The following is what worked for me.
!pip3 install tf_keras==2.16 !pip3 install --upgrade tensorflow-hub
import os os.environ['TF_USE_LEGACY_KERAS']='1'
What happened?
When I try to create Keras model using TF 2.16+ I've got an error: ValueError: Exception encountered when calling layer 'keras_layer' (type KerasLayer). A KerasTensor is symbolic: it's a placeholder for a shape an a dtype. It doesn't have any actual numerical value. You cannot convert it to a NumPy array.
Relevant code
Relevant log output
tensorflow_hub Version
0.12.0 (latest stable release)
TensorFlow Version
other (please specify)
Other libraries
TF 2.16
Python Version
3.x
OS
Linux