-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmkdocs.yml
More file actions
143 lines (135 loc) · 4 KB
/
mkdocs.yml
File metadata and controls
143 lines (135 loc) · 4 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
site_name: DEHB
repo_url: https://github.com/automl/DEHB/
nav:
- Home: index.md
- Getting Started:
- DEHBs Hyperparameters: getting_started/dehb_hps.md
- Single Worker: getting_started/single_worker.md
- Parallel: getting_started/parallel.md
- Running DEHB: getting_started/running_dehb.md
- Logging: getting_started/logging.md
- Examples:
- Interfacing DEHB: examples/00_interfacing_DEHB.ipynb
- Optimizing RandomForest using DEHB: examples/01.1_Optimizing_RandomForest_using_DEHB.ipynb
- Using the Ask & Tell interface: examples/01.2_Optimizing_RandomForest_using_Ask_Tell.ipynb
- Using DEHB without ConfigSpace: examples/02_using_DEHB_without_ConfigSpace.ipynb
- Logging and Restarting: examples/04_restarting_an_optimization_run.ipynb
- Code Reference:
- DEHB: references/dehb.md
- DE: references/de.md
- Bracket Manager: references/bracket_manager.md
- Configuration Repository: references/config_repository.md
- Contributing: CONTRIBUTING.md
theme:
name: material
logo: assets/automl_org.png
favicon: assets/automl_org.png
icon:
repo: fontawesome/brands/github
admonition:
note: octicons/tag-16
abstract: octicons/checklist-16
info: octicons/info-16
tip: octicons/squirrel-16
success: octicons/check-16
question: octicons/question-16
warning: octicons/alert-16
failure: octicons/x-circle-16
danger: octicons/zap-16
bug: octicons/bug-16
example: octicons/beaker-16
quote: octicons/quote-16
features:
- content.code.annotate
- content.code.copy
- navigation.footer
- navigation.tabs
- navigation.tabs.sticky
- 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
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: DEHB
- 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.arithmatex:
generic: true
plugins:
- search
- markdown-exec
- mkdocstrings:
default_handler: python
enable_inventory: true
handlers:
python:
paths: [src]
options: # https://mkdocstrings.github.io/python/usage/
docstring_section_style: spacy
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"
show_signature: true
separate_signature: false
show_signature_annotations: false
- mkdocs-jupyter:
execute: true
extra_javascript:
- javascripts/katex.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js
extra_css:
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
extra:
version:
provider: mike