├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── autohmm ├── __init__.py ├── ar.py ├── base.py ├── student.py ├── tm.py └── utils.py ├── ci ├── install.sh └── test_script.sh ├── docs ├── Makefile ├── README.md ├── api │ ├── api_ar.rst │ └── api_tm.rst ├── conf.py ├── index.rst └── make.bat ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── test_ar.py ├── test_student.py └── test_tm.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/README.md -------------------------------------------------------------------------------- /autohmm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autohmm/ar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/autohmm/ar.py -------------------------------------------------------------------------------- /autohmm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/autohmm/base.py -------------------------------------------------------------------------------- /autohmm/student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/autohmm/student.py -------------------------------------------------------------------------------- /autohmm/tm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/autohmm/tm.py -------------------------------------------------------------------------------- /autohmm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/autohmm/utils.py -------------------------------------------------------------------------------- /ci/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/ci/install.sh -------------------------------------------------------------------------------- /ci/test_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/ci/test_script.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api/api_ar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/docs/api/api_ar.rst -------------------------------------------------------------------------------- /docs/api/api_tm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/docs/api/api_tm.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/docs/make.bat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_ar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/tests/test_ar.py -------------------------------------------------------------------------------- /tests/test_student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/tests/test_student.py -------------------------------------------------------------------------------- /tests/test_tm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackelab/autohmm/HEAD/tests/test_tm.py --------------------------------------------------------------------------------