-
Notifications
You must be signed in to change notification settings - Fork 67
/
mkdocs.yml
128 lines (121 loc) · 3.49 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
site_name: NN Template
site_description: Generic template to bootstrap your PyTorch project with PyTorch Lightning, Hydra, W&B, DVC, and Streamlit.
repo_url: https://github.com/grok-ai/nn-template
copyright: Copyright © 2021 - 2022 <b><a href="https://github.com/Flegyas">Valentino Maiorca</a></b> | <b><a href="https://luca.moschella.dev">Luca Moschella</a></b>
nav:
- Home: index.md
- Getting started:
- getting-started/index.md
- Generating your project: getting-started/generation.md
- Features:
- Core: features/nncore.md
- Restore: features/restore.md
- Metadata: features/metadata.md
- Tags: features/tags.md
- Docs: features/docs.md
- Tests: features/tests.md
- Storage: features/storage.md
- Determinism: features/determinism.md
- Fast dev run: features/fastdevrun.md
- Environment variables: features/envvars.md
- CI/CD: features/cicd.md
- Best practices:
- Python Environment: features/conda.md
- Tooling: features/bestpractices.md
# - Project Structure:
# - project-structure/index.md
# - Structure: project-structure/structure.md
# - Conf: project-structure/conf.md
# - NN: project-structure/conf.md
# - Train: project-structure/conf.md
- Integrations:
- PyTorch Lightning: integrations/lightning.md
- Hydra: integrations/hydra.md
- Weigth & Biases: integrations/wandb.md
- Streamlit: integrations/streamlit.md
- MkDocs: integrations/mkdocs.md
- DVC: integrations/dvc.md
- GitHub Actions: integrations/githubactions.md
- Publications: papers.md
- Changelog:
- changelog/index.md
- Upgrade: changelog/upgrade.md
theme:
name: material
custom_dir: docs/overrides
icon:
repo: fontawesome/brands/github
features:
- content.code.annotate
- navigation.indexes
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
palette:
- scheme: default
primary: light green
accent: green
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: green
accent: green
toggle:
icon: material/weather-sunny
name: Switch to light mode
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- toc:
permalink: true
- tables
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.critic
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
plugins:
- search
extra:
generator: true
version:
provider: mike