NOTE: NN.print()
's floating point precision, is inucurate at the last decimal digit.
#25
Labels
NN.print()
's floating point precision, is inucurate at the last decimal digit.
#25
This means that if you copy-paste the printed-weights from the serial output, into another neural-network, there's going to be some slight noise to the output (when you run it). This is a result of
Serial.print(weights[i][j], DFLOAT_LEN);
whereDFLOAT_LEN
is7
but theprint
-function rounds it in a weirdly way.The text was updated successfully, but these errors were encountered: