gpt4 book ai didi

tensorflow - tensorflow hub : Table not initialized 的问题

转载 作者:行者123 更新时间:2023-12-03 16:52:38 25 4
gpt4 key购买 nike

当我遇到以下问题时,我试图将 tf_hub 用于 Universal-sentence-encoder-large:

FailedPreconditionError (see above for traceback): Table not initialized.

似乎 TensorFlow 认为我没有运行 init op,但实际上,我已经运行了 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)

相同的代码结构适用于其他 tf_hub 模型,例如 elmo .

最佳答案

貌似要使用这个tensorflow hub,我需要运行一个额外的初始化程序:

init = tf.global_variables_initializer()
table_init = tf.tables_initializer()

with tf.Session() as sess:
sess.run([init, table_init])
embeddings_ = sess.run(embeddings)

print(embeddings)

关于tensorflow - tensorflow hub : Table not initialized 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53233782/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com