-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
101 lines (97 loc) · 2.67 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
copyright: Copyright © 2023 William Bakst.
site_name: PyTorch Lattice
site_url: https://willbakst.github.io/pytorch-lattice
repo_name: pytorch-lattice
repo_url: https://github.com/willbakst/pytorch-lattice/
theme:
name: material
icon:
repo: fontawesome/brands/github
features:
- content.code.annotation
- content.code.copy
- content.code.link
- navigation.footer
- navigation.sections
- navigation.tabs
- navigation.top
- search.highlight
- search.suggest
- toc.follow
language: en
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
primary: indigo
accent: indigo
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
primary: indigo
accent: indigo
font:
text: Roboto
code: Roboto Mono
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/willbakst
- icon: fontawesome/brands/twitter
link: https://twitter.com/WilliamBakst
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/wbakst/
analytics:
provider: google
property: G-Q8WNH5KD11
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.mark
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
docstring_style: google
nav:
- Get Started:
- Welcome to PyTorch Lattice: "README.md"
- Why use PyTorch Lattice: "why.md"
- Contributing: "contributing.md"
- How to help: "help.md"
- Concepts:
- Classifier: "concepts/classifier.md"
- Calibrators: "concepts/calibrators.md"
- Shape Constraints: "concepts/shape_constraints.md"
- Model Types: "concepts/model_types.md"
- Plotting: "concepts/plotting.md"
- Walkthroughs:
- UCI Adult Income: "walkthroughs/uci_adult_income.md"
- API Reference:
- layers: "api/layers.md"
- models: "api/models.md"
- utils: "api/utils.md"
- classifier: "api/classifier.md"
- constrained_module: "api/constrained_module.md"
- datasets: "api/datasets.md"
- enums: "api/enums.md"
- feature_config: "api/feature_config.md"
- model_configs: "api/model_configs.md"
- plots: "api/plots.md"