LSTM Recurrent Neural Network Layer

Overview


Adding a LSTM Layer



const meodel = tf.sequential();
model.add(tf.layers.lstm({
	units:3,
	inputShape:[2,1]
}));
				
Try it!

Contents