更新:
无论是单词、句子还是短语,通用句子编码器将始终返回向量大小 512。我想知道为什么是 512而不是其他。
通过提供的答案解决了以下问题。
我尝试了张量流主页上提供的示例:
https://tfhub.dev/google/universal-sentence-encoder/2
我遇到这样的运行时错误:
运行时错误:启用急切执行时不支持导出/导入元图。启用急切执行时不存在图表。
我尝试的代码是:
import tensorflow.compat.v1 as tf
import tensorflow_hub as hub
config = tf.ConfigProto()
session = tf.Session(config=config)
embed = hub.Module("https://tfhub.dev/google/universal-sentence-encoder/2")
embeddings = embed(
[
"The quick brown fox jumps over the lazy dog.",
"I am a sentence for which I would like to get its embedding",
]
)
print(session.run(embeddings))
Run Code Online (Sandbox Code Playgroud)
如何正确运行这段代码?
| 归档时间: |
|
| 查看次数: |
2657 次 |
| 最近记录: |