-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NOTE: NN.print()
's floating point precision, is inucurate at the last decimal digit.
#25
Labels
Comments
I'm looking for solution as of right now |
GiorgosXou
changed the title
NOTE:
NOTE: Mar 4, 2024
NN.print()
's floating point precision, is inucurate at the last digit.NN.print()
's floating point precision, is inucurate at the last decimal digit.
Usually there will be something like |
Like it's weird ngl.. but it's not something critical :P |
Wait... might not be this, the problem... |
Whatever this is, causes the issue: (Don't worry about the SD read\write [opposite] [str to float] i solved it using |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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: