Bi-LSTM的理解以及 Tensorflow實現

Bidirectional LSTM,由兩個LSTMs上下疊加在 一起組成。輸出由這兩個LSTMs的隱藏層的狀態決定。 def bilstm(self,x): # 輸入的數據格式轉換 # x.shape [batch_size, time_steps, input_size] x=tf.transpose(x,[1,0,2])
相關文章
相關標籤/搜索