├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── doc ├── Makefile ├── _static │ ├── ch.docs │ ├── ch.epoch │ ├── ch.ldac │ ├── ch.titles │ └── ch.tokens ├── api.rst ├── conf.py ├── getting_started.rst ├── index.rst ├── release-howto.rst └── whats_new.rst ├── horizont ├── __init__.py ├── _lda.pyx ├── _random.pyx ├── _utils.pyx ├── lda.py ├── metrics.py ├── random.py ├── tests │ ├── __init__.py │ ├── ap.dat │ ├── base.py │ ├── ch.docs │ ├── ch.epoch │ ├── ch.ldac │ ├── ch.titles │ ├── ch.tokens │ ├── test_lda_ap.py │ ├── test_lda_strips.py │ ├── test_logistic_normal.py │ ├── test_metrics.py │ ├── test_polya_gamma.py │ └── test_utils.py └── utils.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/README.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/ch.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/doc/_static/ch.docs -------------------------------------------------------------------------------- /doc/_static/ch.epoch: -------------------------------------------------------------------------------- 1 | 4 2 | 106 3 | 92 4 | 101 5 | 96 6 | -------------------------------------------------------------------------------- /doc/_static/ch.ldac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/doc/_static/ch.ldac -------------------------------------------------------------------------------- /doc/_static/ch.titles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/doc/_static/ch.titles -------------------------------------------------------------------------------- /doc/_static/ch.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/doc/_static/ch.tokens -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/doc/getting_started.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/release-howto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/doc/release-howto.rst -------------------------------------------------------------------------------- /doc/whats_new.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/doc/whats_new.rst -------------------------------------------------------------------------------- /horizont/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/__init__.py -------------------------------------------------------------------------------- /horizont/_lda.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/_lda.pyx -------------------------------------------------------------------------------- /horizont/_random.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/_random.pyx -------------------------------------------------------------------------------- /horizont/_utils.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/_utils.pyx -------------------------------------------------------------------------------- /horizont/lda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/lda.py -------------------------------------------------------------------------------- /horizont/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/metrics.py -------------------------------------------------------------------------------- /horizont/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/random.py -------------------------------------------------------------------------------- /horizont/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horizont/tests/ap.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/tests/ap.dat -------------------------------------------------------------------------------- /horizont/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/tests/base.py -------------------------------------------------------------------------------- /horizont/tests/ch.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/tests/ch.docs -------------------------------------------------------------------------------- /horizont/tests/ch.epoch: -------------------------------------------------------------------------------- 1 | 4 2 | 106 3 | 92 4 | 101 5 | 96 6 | -------------------------------------------------------------------------------- /horizont/tests/ch.ldac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/tests/ch.ldac -------------------------------------------------------------------------------- /horizont/tests/ch.titles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/tests/ch.titles -------------------------------------------------------------------------------- /horizont/tests/ch.tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/tests/ch.tokens -------------------------------------------------------------------------------- /horizont/tests/test_lda_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/tests/test_lda_ap.py -------------------------------------------------------------------------------- /horizont/tests/test_lda_strips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/tests/test_lda_strips.py -------------------------------------------------------------------------------- /horizont/tests/test_logistic_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/tests/test_logistic_normal.py -------------------------------------------------------------------------------- /horizont/tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/tests/test_metrics.py -------------------------------------------------------------------------------- /horizont/tests/test_polya_gamma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/tests/test_polya_gamma.py -------------------------------------------------------------------------------- /horizont/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/tests/test_utils.py -------------------------------------------------------------------------------- /horizont/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/horizont/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariddell/horizont/HEAD/setup.py --------------------------------------------------------------------------------