作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 tensorflow 版本是 2.0
tensorflow_hub 版本是 0.7
python版本是3.7
我有这些代码
import tensorflow as tf
import tensorflow_hub as hub
import summarizer_data_utils
specials = ["<EOS>", "<SOS>","<PAD>","<UNK>"]
word2ind, ind2word, missing_words = summarizer_data_utils.create_word_inds_dicts(words_counted,
specials = specials)
#embed = hub.Module("https://tfhub.dev/google/nnlm-en-dim128/1")
embed = hub.load("https://tfhub.dev/google/Wiki-words-250/1")
emb = embed([key for key in word2ind.keys()])
Processing Time: 32.69666647911072
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-4-aefe0bf334ec> in <module>
84 #embed = hub.Module("https://tfhub.dev/google/nnlm-en-dim128/1")
85 embed = hub.load("https://tfhub.dev/google/Wiki-words-250/1")
---> 86 emb = embed([key for key in word2ind.keys()])
87
88 with tf.Session() as sess:
TypeError: 'AutoTrackable' object is not callable
https://tfhub.dev/google/Wiki-words-250/1
https://tfhub.dev/google/Wiki-words-250/2
最佳答案
这是 TensorFlow 中常见问题的一部分:
https://www.tensorflow.org/hub/common_issues
解决方案是提取您需要的签名,例如:
embed = hub.load('https://tfhub.dev/google/nnlm-en-dim128/1')
embed.signatures['default'](['my text', 'batch'])
关于python - “AutoTrackable”对象在 Python 中不可调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59471873/
我的 tensorflow 版本是 2.0 tensorflow_hub 版本是 0.7 python版本是3.7 我有这些代码 import tensorflow as tf import tens
我正在尝试将 GA 的 autotrack 插件 ( https://github.com/googleanalytics/autotrack ) 安装在我的基于 WordPress 的博客上,但没有
我是一名优秀的程序员,十分优秀!