-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
mkdocs.yml
224 lines (219 loc) · 7.31 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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
site_name: Open Machine Learning
repo_url: https://github.com/openml/docs/
repo_name: 'openml/docs'
edit_uri: edit/master/docs/
site_url: https://docs.openml.org/
theme:
name: "material"
language: "en"
features:
- content.code.copy
- content.action.edit
- content.action.view
- content.tabs.link
- navigation.indexes
- navigation.tabs
- navigation.tabs.sticky
- navigation.footer
- search.highlight
- search.suggest
- toc.follow
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
font:
text: "Roboto"
code: "Roboto Mono"
logo: img/openml.png
icon:
edit: material/pencil
view: material/eye
markdown_extensions:
- admonition
- codehilite
- tables
- attr_list
- md_in_html
- toc:
permalink: true
- markdown_include.include:
base_path: docs
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.tabbed:
alternate_style: true
- pymdownx.inlinehilite
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
linenums: true
plugins:
- multirepo:
cleanup: false
nav_repos:
- name: Python
import_url: https://github.com/openml/openml-python?branch=docs/mkdoc
imports: [
examples/*
openml/*
*.md
]
- name: R
import_url: https://github.com/mlr-org/mlr3oml?branch=main
imports: [README.md]
- name: TensorFlow
import_url: https://github.com/openml/openml-tensorflow
imports: [README.md]
- name: Services
import_url: https://github.com/openml/services?branch=main
imports: [README.md]
- autorefs
- section-index
- mkdocs-jupyter:
ignore: ['temp_dir/**/*']
theme: light
remove_tag_config:
remove_input_tags:
- hide_code
- redirects:
redirect_maps:
'APIs.md': 'https://www.openml.org/apis'
'REST-API.md': 'https://www.openml.org/apis'
- search:
separator: '[\s\-\.]+'
lang:
- en
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [temp_dir/pytorch/openml_pytorch,./]
load_external_modules: true
show_source: true
options:
docstring_section_style: table
show_docstring_functions: true
docstring_style: numpy
- gen-files:
scripts:
- scripts/gen_python_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- git-revision-date-localized:
enable_creation_date: true
fallback_to_build_date: true
- git-committers:
repository: openml/docs
nav:
- OpenML:
- Introduction: index.md
- Getting Started: notebooks/getting_started.ipynb
- Concepts:
- Main concepts: concepts/index.md
- Data: concepts/data.md
- Tasks: concepts/tasks.md
- Flows: concepts/flows.md
- Runs: concepts/runs.md
- Collections & Benchmarks: concepts/benchmarking.md
- Tagging: concepts/tagging.md
- Authentication: concepts/authentication.md
- Sharing: concepts/sharing.md
- Showcase : intro/showcase.md
- Governance: intro/Governance.md
- Terms : intro/terms.md
- Benchmarking:
- Benchmarking Suites: benchmark/index.md
- AutoML Benchmark:
- AutoML Benchmark: benchmark/automl/AutoML-Benchmark.md
- Important Parameters: benchmark/automl/important_params.md
- Benchmark on OpenML: benchmark/automl/benchmark_on_openml.md
- Tutorials:
- Basic Example - Random Forest: benchmark/automl/basic_example.md
- Specific Task and Fold: benchmark/automl/specific_task_fold_example.md
- Ecosystem:
- Overview: ecosystem/index.md
- Python Integrations: ecosystem/Python_extensions.md
- Scikit-learn:
- Introduction: ecosystem/Scikit-learn/index.md
- Tutorials:
- Basic tutorial: ecosystem/Scikit-learn/basic_tutorial.ipynb
- Loading a dataset: ecosystem/Scikit-learn/datasets_tutorial.ipynb
- MLR: ecosystem/mlr.md
- Weka: ecosystem/Weka.md
- MOA: ecosystem/MOA.md
- Java: ecosystem/Java.md
- REST API: ecosystem/Rest.md
- Contributing:
- How to Contribute: contributing/index.md
- Documentation: contributing/OpenML-Docs.md
- Backend:
- Local Installation: contributing/backend/Local-Installation.md
- Services: services/README.md
- Datasets: contributing/backend/Datasets.md
- Code structure: contributing/backend/API-development.md
- Evaluation Engine: contributing/backend/Java-App.md
- Frontend:
- Getting started: contributing/website/Website.md
- Flask backend: contributing/website/Flask.md
- React frontend: contributing/website/React.md
- Dash visualizations: contributing/website/Dash.md
- Clients:
- Client development: contributing/clients/Client-API-Standards.md
- Metadata definition: contributing/clients/metadata_definition.md
- REST API: contributing/clients/Rest.md
- Style guide : contributing/Style.md
- Resources: contributing/resources.md
- Questions: help/index.md
- Python:
- python/index.md
- Code Reference: reference/
- Examples: examples/
- Usage: python/usage.md
- Contributing: python/contributing.md
- Extensions: python/extensions.md
- Changelog: python/progress.md
- PyTorch: '!import https://github.com/openml/openml-pytorch?extra_imports=["openml_pytorch/*"]'
- TensorFlow:
- tensorflow/README.md
- Julia: '!import https://github.com/openml/OpenML.jl?branch=dev&docs_dir=docs/build'
- R:
- r/README.md
- APIv2: '!import https://github.com/openml/server-api?branch=main'
extra_css:
- css/extra.css
extra_javascript:
- js/extra.js
exclude_docs: |
scripts/
old/
python/openml/
python/examples/
pytorch/openml_pytorch/
pytorch/Examples/index.md
ecosystem/showcase.md