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

Anomaly likelihood py #457

Merged
merged 11 commits into from
May 10, 2019
1 change: 1 addition & 0 deletions bindings/py/packaging/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ pytest>=3.0.7
pytest-cov>=2.5.0
## for python code (in /py/)
hexy>=1.4.3 # for grid cell encoder
mock>=1.0.1 # for anomaly likelihood test
8 changes: 8 additions & 0 deletions py/API_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# API Changelog to Python-only code (from numenta/nupic repo)

Note: that these changes only affect python-only code under `py/` path
(= `from nupic.xxx import yyy`), and do not affect our C++ python bindings
(= `from nupic.bindings.xxx import yyy`)

- `Serialization` not supported as canproto was removed.

1 change: 1 addition & 0 deletions py/src/nupic/algorithms/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from nupic.bindings.algorithms import __doc__
Loading