Etienne Folio
Etienne Folio
Anyone found a solution? This issue was opened in 2015… Doing this: ```javascript fs.writeFileSync('trained.json', JSON.stringify(net.toJSON())); ``` then ```javascript const net = new brain.NeuralNetwork(); const jsonFile = fs.readFileSync('trained.json'); const json =...
Nope, same error with v1.1.1… Thank you for your help anyway! Any other idea?
The source code isn't big: ```javascript 'use strict'; const brain = require('brain.js'); let net = new brain.NeuralNetwork(); net.train([{input: [0, 0], output: [0]}, {input: [0, 1], output: [1]}, {input: [1, 0],...
There is no error when we don't use `JSON.stringify` and `JSON.parse`. Maybe this would help to figure out the issue?
From what I see, `json.trainOpts.timeout` is loaded to `null` instead of `Infinity`… If I manually put `Infinity` in it, it works!! (Infinity is not a value that can be put...
Me too on Node v0.8.4 : "WARNING: ev_unref is deprecated, use uv_unref" This might help on solving the issue: http://stackoverflow.com/questions/11755395/node-js-fixing-ev-ref-ev-unref-warning
I had a similar issue. It just worked today…
I hope this will get fixed and pushed soon… I have 21 sonoff devices (snzb-02 and 04), and they keep disappearing from the network again and again… The only way...
I'm also interested on the question: is loading jQuery after Angular really a bad thing? Performance-wise, it seems a very good approach as jqLite is faster than jQuery: - the...