Skip to content

Instantly share code, notes, and snippets.

View ch0mper's full-sized avatar
✌️

Hannah ch0mper

✌️
View GitHub Profile
@ch0mper
ch0mper / index.js
Last active October 14, 2019 14:39
const brain = require('brain.js');
let trainedNet;
function encode(arg) {
return arg.split('').map(x => (x.charCodeAt(0) / 255));
}
function processTrainingData(data) {
return data.map(d => {