-
Notifications
You must be signed in to change notification settings - Fork 30
/
mkdocs.yml
54 lines (51 loc) · 2.34 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
site_name: Hakaru
repo_url: https://github.com/hakaru-dev/hakaru
site_author: Hakaru Team
extra_javascript:
- 'js/mathjaxhelper.js'
- 'https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML'
extra_css:
- 'logo.css'
pages:
- Home: 'index.md'
- Introduction:
- 'What is Probabilistic Programming?': 'intro/probprog.md'
- 'Installing Hakaru': 'intro/installation.md'
- 'Generating Samples from your Hakaru Program': 'intro/samplegen.md'
- 'Quick Start: A Mixture Model Example': 'intro/quickstart.md'
- 'Compiling to Haskell': 'transforms/compile.md'
- 'Compiling to C': 'transforms/hkc.md'
- Workflow and Examples:
- 'What is the Hakaru Workflow?': 'workflow/intro.md'
- 'Tutorial: Hakaru Workflow for Discrete Models': 'workflow/discrete.md'
- 'Tutorial: Hakaru Workflow for Continuous Models': 'workflow/continuous.md'
- 'Examples': 'examples.md'
- Language Guide:
- 'Primitive Probability Distributions': 'lang/rand.md'
- 'Let and Bind': 'lang/letbind.md'
- 'Conditionals': 'lang/cond.md'
- 'Functions': 'lang/functions.md'
- 'Types and Coercions': 'lang/coercions.md'
- 'Data Types and Match': 'lang/datatypes.md'
- 'Arrays and Plate': 'lang/arrays.md'
- 'Loops' : 'lang/loops.md'
- 'Expect': 'transforms/expect.md'
- Transformations:
- 'Normalize': 'transforms/normalize.md'
- 'Disintegrate': 'transforms/disintegrate.md'
- 'Density': 'transforms/density.md'
- 'Hakaru Maple': 'transforms/hk-maple.md'
- 'Metropolis Hastings': 'transforms/mh.md'
- Internals:
- 'AST and Hakaru Datakind': 'internals/ast.md'
- 'ABT': 'internals/abt.md'
- 'Datums': 'internals/datums.md'
- 'Coercions': 'internals/coercions.md'
- 'Transformaitons': 'internals/transforms.md'
- 'Testing': 'internals/testing.md'
- 'Adding a Language Feature': 'internals/newfeature.md'
theme: yeti
markdown_extensions:
- markdown.extensions.smarty
- mdx_math
- footnotes