-
Notifications
You must be signed in to change notification settings - Fork 11
/
mkdocs.yml
142 lines (135 loc) · 4.35 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
site_name: HSSM
repo_name: lnccbrown/HSSM
repo_url: https://github.com/lnccbrown/HSSM/
edit_uri: edit/main/docs
nav:
- Home:
- Overview: index.md
- Credits: credits.md
- License: license.md
- Changelog: changelog.md
- Getting Started:
- Installation: getting_started/installation.md
- Getting started: getting_started/getting_started.ipynb
- Hierarchical modeling: getting_started/hierarchical_modeling.ipynb
- API References:
- hssm: api/hssm.md
- hssm.plotting: api/plotting.md
- hssm.distribution_utils: api/distribution_utils.md
- hssm.likelihoods: api/likelihoods.md
- hssm.defaults: api/defaults.md
- Tutorials:
- Main tutorial: tutorials/main_tutorial.ipynb
- Understanding likelihood functions in HSSM: tutorials/likelihoods.ipynb
- Plotting in HSSM: tutorials/plotting.ipynb
- Using lapse probabilities: tutorials/lapse_prob_and_dist.ipynb
- Variational Inference: tutorials/variational_inference.ipynb
- Using HSSM low-level API directly with PyMC: tutorials/pymc.ipynb
- Custom models: tutorials/jax_callable_contribution_onnx_example.ipynb
- Custom models from onnx files: tutorials/blackbox_contribution_onnx_example.ipynb
- Using compiled log-likelihood functions: tutorials/compile_logp.ipynb
- Contributing: CONTRIBUTING.md
plugins:
- search
- autorefs
- mkdocs-jupyter:
execute: true
execute_ignore:
- getting_started/getting_started.ipynb
- getting_started/hierarchical_modeling.ipynb
- tutorials/main_tutorial.ipynb
- tutorials/likelihoods.ipynb
- tutorials/variational_inference.ipynb
- tutorials/initial_values.ipynb
- tutorials/pymc.ipynb
- tutorials/jax_callable_contribution_onnx_example.ipynb
- tutorials/blackbox_contribution_onnx_example.ipynb
- tutorials/compile_logp.ipynb
- .ipynb_checkpoints/*.ipynb
allow_errors: false
- mkdocstrings:
default_handler: python
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://mkdocstrings.github.io/objects.inv
- https://mkdocstrings.github.io/griffe/objects.inv
options:
separate_signature: true
merge_init_into_class: true
docstring_options:
ignore_init_summary: true
docstring_style: "numpy"
docstring_section_style: "list"
show_root_members_full_path: true
show_object_full_path: false
show_category_heading: false
show_signature_annotations: true
show_source: false
group_by_category: true
signature_crossrefs: true
summary: true
filters:
- "!^_"
theme:
logo: images/navlogo.png
font:
text: Noto Sans
code: Roboto Mono
name: material
custom_dir: docs/overrides
features:
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.path
- navigation.top
- content.code.copy
- content.action.view
- content.action.edit
- header.autohide
- announce.dismiss
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
scheme: ocean
primary: custom
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: ocean
primary: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
toggle:
icon: material/brightness-4
name: Switch to system preference
extra:
homepage: "https://lnccbrown.github.io/HSSM/"
extra_css:
- "styles/extra.css"
markdown_extensions:
- toc:
permalink: true
- admonition
- pymdownx.highlight:
use_pygments: true
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg