-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
189 lines (178 loc) · 5.15 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
site_name: "AutoML-Toolkit"
repo_url: https://github.com/automl/amltk/
repo_name: automl/amltk
theme:
name: material
logo: assets/automl_org.png
favicon: assets/automl_org.png
icon:
repo: fontawesome/brands/github
features:
- content.code.annotate
- content.code.copy
- navigation.footer
- navigation.tabs
- navigation.tabs.sticky
- navigation.expand
- toc.follow
- header.autohide
- search.suggest
- search.highlight
- search.share
font:
text: Roboto
code: Roboto Mono
palette:
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: indigo
accent: deep purple
toggle:
icon: material/eye-outline
name: Switch to light mode
# Palette toggle for light mode
- scheme: default
media: "(prefers-color-scheme: light)"
primary: indigo
accent: deep purple
toggle:
icon: material/eye
name: Switch to dark mode
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/github
link: https://github.com/automl
- icon: fontawesome/brands/twitter
link: https://twitter.com/automl_org
extra_css:
- stylesheets/custom.css
watch:
- src/amltk
- docs
- examples
- CONTRIBUTING.md
markdown_extensions:
- admonition
- tables
- attr_list
- md_in_html
- toc:
permalink: "#"
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.magiclink:
hide_protocol: true
repo_url_shortener: true
repo_url_shorthand: true
user: automl
repo: amltk
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- search
- autorefs
- glightbox
- offline:
enabled: !ENV [AMLTK_DOCS_OFFLINE, false]
- markdown-exec
- mike:
version_selector: true
css_dir: css
javascript_dir: js
canonical_version: latest
- gen-files:
scripts:
- docs/api_generator.py
- docs/example_runner.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
default_handler: python
enable_inventory: true
custom_templates: docs/_templates
handlers:
python:
paths: [src]
import:
- 'https://docs.python.org/3/objects.inv'
- 'https://numpy.org/doc/stable/objects.inv'
- 'https://pandas.pydata.org/docs/objects.inv'
- 'https://optuna.readthedocs.io/en/stable/objects.inv'
- 'https://scikit-learn.org/stable/objects.inv'
- 'https://pytorch.org/docs/stable/objects.inv'
- 'https://jobqueue.dask.org/en/latest/objects.inv'
options: # https://mkdocstrings.github.io/python/usage/
docstring_section_style: spacy
docstring_options:
ignore_init_summary: true
trim_doctest_flags: true
show_docstring_attributes: true
show_docstring_description: true
show_root_heading: false
show_root_toc_entry: false
show_object_full_path: false
merge_init_into_class: true
docstring_style: google
show_if_no_docstring: false
show_bases: true
show_source: true
members_order: "source"
# Would like to set `group_by_category` to false
# https://github.com/mkdocstrings/mkdocstrings/issues/579
group_by_category: true
show_signature: true
separate_signature: false
show_signature_annotations: false
filters:
- "!^_[^_]"
- "_sample" # Kind of a hack to have this render a private method
nav:
- Home: "index.md"
- Guides:
- "guides/index.md"
- "guides/optimization.md"
- "guides/pipelines.md"
- "guides/scheduling.md"
- Reference:
- "reference/index.md"
- Scheduling:
- "reference/scheduling/scheduler.md"
- "reference/scheduling/executors.md"
- "reference/scheduling/task.md"
- "reference/scheduling/plugins.md"
- "reference/scheduling/events.md"
- Pipelines:
- "reference/pipelines/pipeline.md"
- "reference/pipelines/spaces.md"
- "reference/pipelines/builders.md"
# - "reference/pipelines/prebuilts.md"
- Optimization:
- "reference/optimization/metrics.md"
- "reference/optimization/optimizers.md"
- "reference/optimization/trials.md"
- "reference/optimization/history.md"
- "reference/optimization/profiling.md"
- Data:
- "reference/data/index.md"
- "reference/data/buckets.md"
- Meta-Learning:
- "reference/metalearning/index.md"
# Auto generated with docs/examples_runner.py
- Examples: "examples/"
# Auto generated with docs/api_generator.py
- API: "api/"
- Contributing: "contributing.md"