You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
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;
The text was updated successfully, but these errors were encountered:
TatChu
changed the title
Cannot read property 'bias' of undefined neuralnetwork.js:366:58 when runing fn fromJson with server Hapi
Cannot read property 'bias' of undefined neuralnetwork.js:366:58 when runing fn fromJSON with server Hapi
May 11, 2017
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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;
The text was updated successfully, but these errors were encountered: