使用预先训练的ElMo模型时,我得到的输出字典不同于已发布的tf.hub model中解释的输出字典 我的输出字典的签名是
> model = BidirectionalLanguageModel(options_file, weight_file)
> ids_placeholder = tf.placeholder('int32', shape=(None, None, max_word_length))
> ops = model(ids_placeholder)
> print (ops)
{'token_embeddings': <tf.Tensor 'bilm/Reshape_1:0' shape=(?, ?, 512) dtype=float32>,
'lengths': <tf.Tensor 'sub:0' shape=(?,) dtype=int32>,
'mask': <tf.Tensor 'Cast_1:0' shape=(?, ?) dtype=bool>,
'lm_embeddings': <tf.Tensor 'concat_3:0' shape=(?, 3, ?, 1024) dtype=float32>}
tf hub
的输出词典包含:
如何访问输出字典中的word_emb, lstm_outputs1, lstm_outputs2 ..
字段?
我正在按照使用示例从this link
答案 0 :(得分:0)
如果您遵循tf-Hub website中的示例,则会看到:
elmo = hub.Module("https://tfhub.dev/google/elmo/3", trainable=True)
embeddings = elmo(
["the cat is on the mat", "dogs are in the fog"],
signature="default",
as_dict=True)["elmo"]
确保将as_dict
参数设置为True
。
在此示例中,如果您摆脱了它,则直接检索字典的["elmo"]
值:
elmo = hub.Module("https://tfhub.dev/google/elmo/3", trainable=True)
embeddings = elmo(
["the cat is on the mat", "dogs are in the fog"],
signature="default",
as_dict=True)
创建的变量elmo将是具有所需word_emb, lstm_outputs1, lstm_outputs2 ..
属性的字典。
希望这会有所帮助!