forked from IBM/terratorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
109 lines (106 loc) · 2.71 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
site_name: TerraTorch
theme:
name: material #readthedocs
logo: figs/logo_grey.png #https://github.com/user-attachments/assets/f8c9586f-6220-4a53-9669-2aee3300b492"
font:
text: Roboto
palette:
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/brightness-7
primary: black #white
- scheme: slate
toggle:
icon: material/brightness-4
primary: black
features:
- content.code.copy
- content.code.select
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.code.select
- content.footnote.tooltips
- content.tabs.link
- content.tooltips
- navigation.footer
#- navigation.indexes
- navigation.instant
#- navigation.expand
- navigation.path
- navigation.instant.prefetch
- navigation.instant.progress
# - navigation.prune
#- navigation.sections
- navigation.tabs
#- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
#- toc.integrate
user_color_mode_toggle: true
plugins:
- search
- autorefs
- tags
- mkdocstrings:
handlers:
python:
paths: [src] # search packages in the src folde
options:
show_root_heading: true
- git-revision-date-localized:
type: date
extra:
version:
provider: mike
site_url: https://ibm.github.io/terratorch/
repo_url: https://github.com/IBM/terratorch
nav:
- index.md
- License: license.md
- Getting Started: quick_start.md
- Contribution Guidelines: contributing.md
- Architecture Overview: architecture.md
- Components:
- Backbones: backbones.md
- Decoders: decoders.md
- Necks: necks.md
- Heads: heads.md
- Tasks: tasks.md
- Model Factories: model_factories.md
- Generic Datasets: generic_datasets.md
- Datasets: datasets.md
- Generic Datamodules: generic_datamodules.md
- Datamodules: datamodules.md
- Transforms: transforms.md
- Glossary: glossary.md
- Tutorials:
- tutorials/the_yaml_config.md
- tutorials/basic_inference_burn_scars.md
- tutorials/burn_scars_inference_simplified.md
- tutorials/using_datamodule_multitemporalclassificationModule.md
- tutorials/burn_scars_finetuning.md
- Changelog: changelog.md
markdown_extensions:
- attr_list
- toc:
permalink: "#"
toc_depth: 6
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
extra_css:
- stylesheets/extra.css