-
Notifications
You must be signed in to change notification settings - Fork 13
/
mkdocs.yml
95 lines (85 loc) · 2.22 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
# Site information
site_name: posteriors
site_author: Normal Computing
site_description: Uncertainty Quantification with PyTorch
# Repository
repo_name: normal-computing/posteriors
repo_url: https://github.com/normal-computing/posteriors
# Configuration
theme:
name: material
font:
text: Inter
palette:
- scheme: default
primary: custom
accent: custom
logo: https://storage.googleapis.com/posteriors/logo_light.png
icon:
repo: fontawesome/brands/github
features:
- content.code.copy
- navigation.expand
- navigation.indexes
- navigation.top
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
members_order: source
group_by_category: false
show_root_toc_entry: false
show_root_members_full_path: true
markdown_extensions:
- footnotes
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.superfences
- toc:
permalink: "𝞡"
- pymdownx.arithmatex:
generic: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# Navigation structure
nav:
- Home: index.md
- Getting Started: getting_started.md
- Log Posteriors: log_posteriors.md
- gotchas.md
- Tutorials: tutorials/index.md
- contributing.md
- API:
- api/index.md
- EKF:
- Dense Fisher: api/ekf/dense_fisher.md
- Diagonal Fisher: api/ekf/diag_fisher.md
- Laplace:
- Dense Fisher: api/laplace/dense_fisher.md
- Dense GGN: api/laplace/dense_ggn.md
- Dense Hessian: api/laplace/dense_hessian.md
- Diagonal Fisher: api/laplace/diag_fisher.md
- Diagonal GGN: api/laplace/diag_ggn.md
- SGMCMC:
- api/sgmcmc/sgld.md
- api/sgmcmc/sghmc.md
- api/sgmcmc/sgnht.md
- VI:
- Dense: api/vi/dense.md
- Diag: api/vi/diag.md
- api/optim.md
- TorchOpt: api/torchopt.md
- Tree Utils: api/tree_utils.md
- api/types.md
- api/utils.md
# Customization
extra_css:
- stylesheets/extra.css