We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In this notebook, we should replace occurences of dtype="int" with dtype="uint32". https://github.com/numenta/nupic/blob/6924a904644bbb8cdba6ca7a62050cf8456614f8/examples/NuPIC%20Walkthrough.ipynb
dtype="int"
dtype="uint32
You can see we had some integer overflow issues in https://discourse.numenta.org/t/inconsistency-between-spatialpooler-in-nupic-and-nupic-bindings/1549/10?u=mrcslws
Sometimes "int" is mapped to 32-bit, other times it's mapped to 64-bit. The C++ SpatialPooler needs 32-bit integers.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In this notebook, we should replace occurences of
dtype="int"
withdtype="uint32
". https://github.com/numenta/nupic/blob/6924a904644bbb8cdba6ca7a62050cf8456614f8/examples/NuPIC%20Walkthrough.ipynbYou can see we had some integer overflow issues in https://discourse.numenta.org/t/inconsistency-between-spatialpooler-in-nupic-and-nupic-bindings/1549/10?u=mrcslws
Sometimes "int" is mapped to 32-bit, other times it's mapped to 64-bit. The C++ SpatialPooler needs 32-bit integers.
The text was updated successfully, but these errors were encountered: