├── .gitignore ├── LICENSE-GPL ├── MANIFEST.in ├── README.md ├── autoregressive ├── __init__.py ├── distributions.py ├── messages.h ├── messages.pyx ├── models.py ├── nptypes.h ├── util.h └── util.py ├── examples ├── animation.py ├── demo.py └── inb-demo.py ├── setup.py └── tests ├── __init__.py └── test_distributions.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/LICENSE-GPL -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/README.md -------------------------------------------------------------------------------- /autoregressive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/autoregressive/__init__.py -------------------------------------------------------------------------------- /autoregressive/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/autoregressive/distributions.py -------------------------------------------------------------------------------- /autoregressive/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/autoregressive/messages.h -------------------------------------------------------------------------------- /autoregressive/messages.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/autoregressive/messages.pyx -------------------------------------------------------------------------------- /autoregressive/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/autoregressive/models.py -------------------------------------------------------------------------------- /autoregressive/nptypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/autoregressive/nptypes.h -------------------------------------------------------------------------------- /autoregressive/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/autoregressive/util.h -------------------------------------------------------------------------------- /autoregressive/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/autoregressive/util.py -------------------------------------------------------------------------------- /examples/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/examples/animation.py -------------------------------------------------------------------------------- /examples/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/examples/demo.py -------------------------------------------------------------------------------- /examples/inb-demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/examples/inb-demo.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattjj/pyhsmm-autoregressive/HEAD/tests/test_distributions.py --------------------------------------------------------------------------------