I am trying to use tf_hub for universal-sentence-encoder-large when I have the following problem:
FailedPreconditionError (see above for traceback): Table not initialized.
It seems that TensorFlow thinks I did not run init op, but actually, I have run the init op:
embed = hub.Module("https://tfhub.dev/google/universal-sentence-encoder-large/3")
embeddings = embed([
"The quick brown fox jumps over the lazy dog."])
init = tf.global_variables_initializer()
with tf.Session() as sess:
sess.run(init)
embeddings = sess.run(embeddings)
print(embeddings)
The same code structure has been fine with other tf_hub models like elmo
.
Looks like to use this tensorflow hub, I need to run an addtional initializer: