-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
123 lines (117 loc) · 3.2 KB
/
mkdocs.yml
File metadata and controls
123 lines (117 loc) · 3.2 KB
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
site_name: Neural Radar Development Kit
repo_url: https://github.com/RadarML/nrdk
repo_name: RadarML/nrdk
nav:
- nrdk:
- Overview: index.md
- Software Architecture: design.md
- Core Modules:
- nrdk.config: nrdk/config.md
- nrdk.framework: nrdk/framework.md
- nrdk.metrics: nrdk/metrics.md
- nrdk.models: nrdk/models.md
- nrdk.modules: nrdk/modules.md
- nrdk.objectives: nrdk/objectives.md
- nrdk.roverd: nrdk/roverd.md
- nrdk.vis: nrdk/vis.md
- cli: cli.md
- nrdk.tss:
- Overview: tss/index.md
- High Level API: tss/api.md
- Stats: tss/stats.md
- Utils: tss/utils.md
- grt:
- Overview: grt/index.md
- Models: grt/models.md
- Configuration: grt/config.md
extra_css:
- stylesheets/extra.css
theme:
name: material
custom_dir: docs/overrides
icon:
logo: octicons/ai-model-16
annotation: material/arrow-right-circle
font:
code: monospace
features:
- navigation.instant
- navigation.expand
- navigation.tabs
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: green
accent: blue
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: green
accent: blue
toggle:
icon: material/weather-night
name: Switch to system preference
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python_xref
handlers:
python_xref:
paths:
- src
- grt
options:
docstring_style: google
relative_crossrefs: true
separate_signature: true
line_length: 80
show_signature_annotations: true
signature_crossrefs: true
show_root_full_path: true
show_root_members_full_path: true
show_symbol_type_heading: true
show_root_heading: true
show_root_toc_entry: true
heading_level: 1
check_crossrefs_exclude:
- "^torch\\.(.*)"
- "^numpy\\.(.*)"
- "^lightning\\.(.*)"
inventories:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
- https://docs.pytorch.org/docs/stable/objects.inv
- https://docs.jax.dev/en/latest/objects.inv
- https://radarml.github.io/abstract-dataloader/objects.inv
- https://radarml.github.io/xwr/objects.inv
- https://radarml.github.io/red-rover/objects.inv
- https://lightning.ai/docs/pytorch/stable/objects.inv
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.snippets
- def_list
- attr_list
- md_in_html
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- footnotes
- pymdownx.snippets