scrimba
Neural Networks in JavaScript
Neural Networks Example: Recommendation engine
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: Recommendation engine
AboutCommentsNotes
Neural Networks Example: Recommendation engine
Expand for more info
index.js
run
preview
console
// color preference
const trainingData = [
{ input: { blue: 1 }, output: [1] },
{ input: { red: 1 }, output: [1] },
{ input: { black: 1 }, output: [0] },
{ input: { green: 1 }, output: [0] },
{ input: { brown: 1 }, output: [0] },
];
Console
index.html
-4:54