1
近日,筆者從tensorflow.Part代碼如下教程在https://www.tensorflow.org/tutorials/recurrent如何理解tensorflow的切片功能?
outputs = []
state = self._initial_state
with tf.variable_scope("RNN"):
for time_step in range(num_steps):
if time_step > 0: tf.get_variable_scope().reuse_variables()
(cell_output, state) = cell(inputs[:, time_step, :], state)#here!
outputs.append(cell_output)
瞭解RNN的代碼,而更多的信息,我只是不能說undetstand如何inputs[:, time_step, :]
作品,例如,這些Args是什麼意思? 您的回答將不勝感激。非常感謝!
非常感謝!你讓我擺脫困惑。 – chuchienshu
對不起,我只是一個初學者到StackOverFlow,並且我只點擊了上拉(沒有顯示,因爲我的名聲低於15)。現在,接受。謝謝 – chuchienshu