flatstyle

Results 2 comments of flatstyle

It happens during the call to normalizeData. ```` async function initialize() { const neuralNetwork = neuralNetworkFn(options, modelLoaded); function modelLoaded() { console.log("loaded"); const trainingOptions = { epochs: 30, batchSize: 64, validationSplit:...

Yeah,I think the warning is the best solution. I ended up just returning the value, before just removing the data point. ``` normalizeValue(value, min, max) { if (max === min)...