gitextract_4vcgin0k/ ├── LICENSE ├── README.md ├── docs/ │ ├── .buildinfo │ ├── .doctrees/ │ │ ├── distributions.doctree │ │ ├── environment.pickle │ │ ├── examples/ │ │ │ └── german_tank_problem.doctree │ │ ├── examples.doctree │ │ ├── index.doctree │ │ ├── introduction.doctree │ │ ├── model.doctree │ │ ├── samplers/ │ │ │ ├── custom.doctree │ │ │ ├── hamiltonian.doctree │ │ │ ├── metropolis.doctree │ │ │ ├── nuts.doctree │ │ │ └── slice.doctree │ │ ├── samplers.doctree │ │ ├── state.doctree │ │ └── tutorial.doctree │ ├── .nojekyll │ ├── _sources/ │ │ ├── distributions.rst.txt │ │ ├── examples/ │ │ │ └── german_tank_problem.rst.txt │ │ ├── examples.rst.txt │ │ ├── index.rst.txt │ │ ├── introduction.rst.txt │ │ ├── model.rst.txt │ │ ├── samplers/ │ │ │ ├── custom.rst.txt │ │ │ ├── hamiltonian.rst.txt │ │ │ ├── metropolis.rst.txt │ │ │ ├── nuts.rst.txt │ │ │ └── slice.rst.txt │ │ ├── samplers.rst.txt │ │ ├── state.rst.txt │ │ └── tutorial.rst.txt │ ├── _static/ │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── custom.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── jquery-3.2.1.js │ │ ├── jquery.js │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ ├── underscore.js │ │ └── websupport.js │ ├── distributions.html │ ├── examples/ │ │ └── german_tank_problem.html │ ├── examples.html │ ├── genindex.html │ ├── index.html │ ├── introduction.html │ ├── model.html │ ├── objects.inv │ ├── py-modindex.html │ ├── samplers/ │ │ ├── custom.html │ │ ├── hamiltonian.html │ │ ├── metropolis.html │ │ ├── nuts.html │ │ └── slice.html │ ├── samplers.html │ ├── search.html │ ├── searchindex.js │ ├── state.html │ └── tutorial.html ├── docs_source/ │ ├── Makefile │ ├── conf.py │ ├── distributions.rst │ ├── examples/ │ │ └── german_tank_problem.rst │ ├── examples.rst │ ├── index.rst │ ├── introduction.rst │ ├── model.rst │ ├── samplers/ │ │ ├── custom.rst │ │ ├── hamiltonian.rst │ │ ├── metropolis.rst │ │ ├── nuts.rst │ │ └── slice.rst │ ├── samplers.rst │ ├── state.rst │ └── tutorial.rst ├── examples/ │ ├── Abalone Model.ipynb │ ├── Clean2017length.csv │ ├── Examples.ipynb │ ├── effective_sample_size_example.py │ └── slice_sample.py ├── requirements.txt ├── sampyl/ │ ├── __init__.py │ ├── core.py │ ├── diagnostics/ │ │ ├── __init__.py │ │ └── diagnostics.py │ ├── distributions.py │ ├── exceptions.py │ ├── model.py │ ├── parallel.py │ ├── posterior.py │ ├── progressbar.py │ ├── samplers/ │ │ ├── NUTS.py │ │ ├── __init__.py │ │ ├── base.py │ │ ├── chain.py │ │ ├── hamiltonian.py │ │ ├── metropolis.py │ │ └── slice.py │ ├── starting.py │ ├── state.py │ ├── stats.py │ └── tests/ │ ├── __init__.py │ ├── logps.py │ ├── test_samplers.py │ ├── test_starting.py │ └── test_state.py └── setup.py