在具有編碼器和解碼器的seq2seq模型中,在每個生成步驟,softmax層輸出整個詞彙表的分佈。在CNTK中,通過使用C.hardmax函數可以很容易地實現貪婪的解碼器。它看起來像這樣。使用CNTK通過在每個生成步驟採樣生成序列
def create_model_greedy(s2smodel):
# model used in (greedy) decoding (history is decoder's own output)
@C.Function
@C.layers.Signature(InputSequence[C.layers.Tensor[input_vocab_dim]])
def model_greedy(input): # (input*) --> (word_sequence*)
# Decoding is an unfold() operation starting from sentence_start.
# We must transform s2smodel (history*, input* -> word_logp*) into a generator (history* -> output*)
# which holds 'input' in its closure.
unfold = C.layers.UnfoldFrom(lambda history: s2smodel(history, input) >> **C.hardmax**,
# stop once sentence_end_index was max-scoring output
until_predicate=lambda w: w[...,sentence_end_index],
length_increase=length_increase)
return unfold(initial_state=sentence_start, dynamic_axes_like=input)
return model_greedy
但是,在每一步我都不想以最大概率輸出令牌。相反,我想要一個隨機解碼器,根據詞彙表的概率分佈生成一個標記。
我該怎麼做?任何幫助表示讚賞。謝謝。
WOWWWWWWW,令人驚歎!非常感謝。你是如此的樂於助人! – meijiesky
那麼你怎麼upvote我的答案呢? –
我沒有15這個新帳戶的聲望...我現在在中國,我無法登錄到我的Gmail帳戶或使用Facebook帳戶。一回到美國,我會盡快回復您的答案。再次感謝你。 – meijiesky