https://github.com/Currie32/Spell-Checker。
在上面的链接代码中,我收到未定义DynamicAttentionWrapper的错误消息。我正在使用TensorFlow版本为1.2。我无法克服这个错误。请帮助我。
答案 0 :(得分:0)
您的DynamicAttentionWrapper
版本中的tensorflow
存在问题。
尝试将DynamicAttentionWrapper
更改为AttentionWrapper
或降级为tensorflow 1.1
。
对于您的tensorflow
版本,请尝试对initial_state, inference_logits and training_logits
进行以下更改:
initial_state = dec_cell.zero_state(batch_size=batch_size,dtype=tf.float32).clone(cell_state=enc_state)
inference_logits, _ ,_ = tf.contrib.seq2seq.dynamic_decode(inference_decoder,
output_time_major=False,
impute_finished=True,
maximum_iterations=max_target_length)
training_logits, _ ,_ = tf.contrib.seq2seq.dynamic_decode(training_decoder,
output_time_major=False,
impute_finished=True,
maximum_iterations=max_target_length)