hit-computer / SC-LSTM

Implement SC-LSTM model for text generation in control of words, in Python/TensorFlow
88 stars 31 forks source link

为什么在generation的时候还是使用input_data? #16

Open hejunqing opened 5 years ago

hejunqing commented 5 years ago

在generation的时候,input_data应该是不知道的。然而在代码中仍使用: line62: res_wr = tf.matmul(inputs[:, time_step, :], sc_wr) line71: (cell_output, state, cell_outputs) = cell(inputs[:, time_step, :], state, sc_vec)

难道不是使用每个时刻预测的结果作为输入吗,是不是写错了?