scrimba
Neural Networks in JavaScript
RNN - Recurrent Neural Networks: Inputs and Outputs
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

RNN - Recurrent Neural Networks: Inputs and Outputs
AboutCommentsNotes
RNN - Recurrent Neural Networks: Inputs and Outputs
Expand for more info
index.js
run
preview
console
const trainingData = [
{ input: '1', output: '2' }
];

const net = new brain.recurrent.LSTM();
Console
index.html
-4:05