scrimba
Neural Networks in JavaScript
Neural Networks Example: Simple Reinforcement Learning
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

Neural Networks Example: Simple Reinforcement Learning
AboutCommentsNotes
Neural Networks Example: Simple Reinforcement Learning
Expand for more info
index.js
run
preview
console
const trainingData = [
{ input: [0, 0], output: [0] },
{ input: [0, 1], output: [1] },
// { input: [1, 0], output: [1] },
// { input: [1, 1], output: [0] }
];
Console
index.html
-3:02