-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
75 lines (75 loc) · 1.88 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
site_name: 'VAE project'
repo_url: https://github.com/andr-groth/VAE-project
nav:
- Overview: index.md
- Build model:
- Models: VAE.models.md
- Layers: VAE.layers.md
- Train model:
- Losses: VAE.losses.md
- Callbacks: VAE.callbacks.md
- Logs: VAE.logs.md
- Generators: VAE.generators.md
- Beta Scheduler: VAE.utils.beta_schedulers.md
- Utils:
- FileIO: VAE.utils.fileio.md
- Mathematical functions: VAE.utils.math.md
- Helper functions: VAE.utils.collection.md
- Plot functions: VAE.utils.plot.md
- Examples:
- VAE: example_VAE.md
- VAEp: example_VAEp.md
- ... more: examples.md
markdown_extensions:
- admonition
- attr_list
- footnotes
- pymdownx.details
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- mkdocstrings:
handlers:
python:
options:
docstring_section_style: list
members_order: source
merge_init_into_class: true
docstring_options:
ignore_init_summary: true
show_object_full_path: true
separate_signature: true
show_root_heading: true
show_object_full_path: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/andr-groth
copyright: Copyright © 2023 Andreas Groth
theme:
name: material
features:
- navigation.top
- navigation.sections
- navigation.expand
- content.code.copy
- search.suggest
- search.highlight
palette:
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
watch:
- VAE