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