-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
48 lines (44 loc) · 1.07 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
site_name: VAMBN
theme:
name: material
logo: vambn-icon.png
favicon: vambn-icon.png
palette:
primary: "teal"
accent: "lime"
nav:
- Home: index.md
- VAMBN: vambn.md
- Setup: setup.md
- Walkthrough: walkthrough.md
- Configuration: configuration.md
- TroubleShooting: troubleshooting.md
- Python Reference:
- Introduction: python.md
- API Reference:
- Data: api/data.md
- Metrics: api/metrics.md
- Modelling:
- Distributions: api/modelling/distributions.md
- Models:
- HIVAE: api/modelling/models/hivae.md
- MTL: api/modelling/mtl.md
- Utilities: api/utils.md
- Visualization: api/visualization.md
- R Reference: r.md
markdown_extensions:
- pymdownx.superfences
- pymdownx.highlight
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [.]
options:
docstring_style: google
allow_inspection: true
show_submodules: true
markdown_extensions:
- toc:
permalink: true