-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
105 lines (97 loc) · 3.27 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
site_name: Blackbox Optimization
site_description: "Various blackbox optimization algorithms with a common interface."
site_url: "https://boschresearch.github.io/blackboxopt/"
repo_url: "https://github.com/boschresearch/blackboxopt"
repo_name: "boschresearch/blackboxopt"
theme:
name: material
palette:
primary: black
accent: light blue
copyright: |
<center>
<p>Copyright (c) 2020 - for information on the respective copyright owner
see the NOTICE file and/or the
<a href=" https://github.com/boschresearch/blackboxopt">project repository</a>
</p>
<center>
extra:
version:
provider: mike
extra_css:
- extra.css
nav:
- Overview: index.md
- Examples:
- Overview: examples/overview.md
- examples/dask-distributed.md
- examples/multi-objective-multi-param.md
- Optimizers:
- Space Filling: optimizers/space-filling.md
- BOHB: optimizers/bohb.md
- BoTorch: optimizers/botorch.md
- optimizers/testing.md
- Optimization Loops:
- Overview: optimization-loops/overview.md
- Sequential: optimization-loops/sequential.md
- Dask Distributed: optimization-loops/dask-distributed.md
- optimization-loops/testing.md
- ...
plugins:
- search
- gen-files:
# 'module' & 'exclude' throw a "Config value" warnings, as they are custom values
module: blackboxopt
exclude:
- "/examples"
- "__init__"
scripts:
- docs/generate_references.py
- awesome-pages
- mkdocstrings:
watch: [blackboxopt]
handlers:
python:
selection:
# Do also show members from parent classes,
# especially useful for the optimizers
inherited_members: true
# Including inherited members does unfortunately
# also show very basic parameters from the pydantic.BaseModel
# In principle, only those with a docstring are shown,
# but we do not want to overload the documentation, so we exclude it
filters:
# ... every private member (include __gt__, __init__ etc.)
- "!^_"
# the Config member every pydantic class has
# (would be too much information)
- "!Config"
# the fields member of every model, which contains the schema
# information. This is only created on runtime, so it can not
# be properly used in the documentation and generates some
# warnings (as there is no "source code")
- "!fields"
rendering:
show_root_heading: true
show_root_full_path: true
show_object_full_path: false
show_root_toc_entry: true
show_root_members_full_path: false
show_category_heading: false
show_if_no_docstring: false
show_source: true
group_by_category: false
heading_level: 1
show_signature_annotations: false
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.snippets:
base_path: "./"
- admonition
- pymdownx.arithmatex:
generic: true
extra_javascript:
- javascripts/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js