├── .gitignore ├── LICENSE ├── README.md ├── example ├── schools.stan └── stark_ex.py ├── setup.py ├── stark ├── __init__.py └── stark.py └── test ├── schools.stan └── stark_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongh/stark/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongh/stark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongh/stark/HEAD/README.md -------------------------------------------------------------------------------- /example/schools.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongh/stark/HEAD/example/schools.stan -------------------------------------------------------------------------------- /example/stark_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongh/stark/HEAD/example/stark_ex.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongh/stark/HEAD/setup.py -------------------------------------------------------------------------------- /stark/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ["stark"] 2 | -------------------------------------------------------------------------------- /stark/stark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongh/stark/HEAD/stark/stark.py -------------------------------------------------------------------------------- /test/schools.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongh/stark/HEAD/test/schools.stan -------------------------------------------------------------------------------- /test/stark_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongh/stark/HEAD/test/stark_test.py --------------------------------------------------------------------------------