Skip to content
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

fix regarding floating point representation #6

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions notebooks/01_basic_training.ipynb
Expand Up @@ -327,7 +327,7 @@
}
},
"source": [
"Careful: floats are limited by their 16-bit representation (same as in other languages)"
"Careful: floats are limited by their 64-bit representation (same as in other languages). A 64-bit float gives roughly 16 significant decimal digits. (However, note that even the number printed below by python is actually a rounded version of the true 64-bit representation.)"
]
},
{
Expand Down Expand Up @@ -3449,4 +3449,4 @@
"metadata": {}
}
]
}
}