scrimba
Neural Networks in JavaScript
Neural Networks Example: Sentiment Detection
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: Sentiment Detection
AboutCommentsNotes
Neural Networks Example: Sentiment Detection
Expand for more info
index.js
run
preview
console
const trainingData = [
{ input: 'I am super happy!', output: 'happy' },
{ input: 'What a pill!', output: 'sarcastic' },
{ input: 'I am super unhappy!', output: 'sad' },
{ input: 'Are we there yet?', output: 'excited' }
];
Console
index.html
-2:17