harthur / brain

Simple feed-forward neural network in JavaScript
MIT License
8.01k stars 857 forks source link

Cannot read property 'bias' of undefined neuralnetwork.js:366:58 when runing fn fromJSON with server Hapi #79

Open TatChu opened 7 years ago

TatChu commented 7 years ago

If I running single my script to recognition a charecter then Neral Network skip layer input, but if require it from server Hapi error occur at line: 366, 367. And I resolved it: this.biases[i][j] = layer[node] ? layer[node].bias : 0; this.weights[i][j] = layer[node] ? _(layer[node].weights).toArray() : 0;