forked from adaptive-intelligent-robotics/QDax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
167 lines (159 loc) · 5.18 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
site_name: QDax docs
site_description: QDax
site_author: QDax Contributors
site_url: https://qdax.readthedocs.io/
site_dir: public
repo_name: QDax
repo_url: https://github.com/adaptive-intelligent-robotics/QDax
strict: false
theme:
name: readthedocs
language: en
palette:
# Light mode / dark mode
# We deliberately don't automatically use `media` to check a user's preferences. We default to light mode as
# (a) it looks more professional, and (b) is more obvious about the fact that it offers a dark mode (as there is a toggle).
- scheme: default
primary: white
accent: amber
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: black
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- navigation.tracking
- navigation.tabs
- toc.integrate
markdown_extensions:
- admonition
- abbr
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:materialx.emoji.to_svg
emoji_index: !!python/name:materialx.emoji.twemoji
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
base_path: ./
- pymdownx.pathconverter:
base_path: ./
relative_path: docs
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid-experimental
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.tabbed:
alternate_style: true
extra_css:
- css/mkdocstrings.css
plugins:
- search
- autorefs # Cross-links to headings
- git-revision-date
- mknotebooks # enable Jupyter notebooks
- mkdocstrings:
custom_templates: templates
handlers:
python:
docstring_style: google
selection:
inherited_members: true # Allow looking up inherited methods
filters:
- '!^test'
- "!^_" # exclude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
rendering:
show_source: true # don't include source code (too cumbersome)
show_root_heading: true
members_order: source # order methods according to their order of definition in the source code, not alphabetical order
nav:
- Home: index.md
- Installation: installation.md
- Overview: overview.md
- Caveats: caveats.md
- Guides:
- Contributing: guides/CONTRIBUTING.md
- Examples:
- MAPElites: examples/mapelites.ipynb
- PGAME: examples/pgame.ipynb
- DCRL-ME: examples/dcrlme.ipynb
- CMA ME: examples/cmame.ipynb
- QDPG: examples/qdpg.ipynb
- OMG MEGA: examples/omgmega.ipynb
- CMA MEGA: examples/cmamega.ipynb
- MOME: examples/mome.ipynb
- MEES: examples/mees.ipynb
- DIAYN: examples/diayn.ipynb
- DADS: examples/dads.ipynb
- SMERL: examples/smerl.ipynb
- CMA ES: examples/cmaes.ipynb
- NSGA2/SPEA2: examples/nsga2_spea2.ipynb
- AURORA: examples/aurora.ipynb
- PGA AURORA: examples/pga_aurora.ipynb
- PBT: examples/sac_pbt.ipynb
- MAPElites PBT: examples/me_sac_pbt.ipynb
- MAPElites Low Spread: examples/mels.ipynb
- Jumanji Snake: examples/jumanji_snake.ipynb
- API documentation:
- Core:
- Core algorithms:
- MAP Elites: api_documentation/core/map_elites.md
- PGAME: api_documentation/core/pgame.md
- DCRLME: api_documentation/core/dcrlme.md
- QDPG: api_documentation/core/qdpg.md
- CMA ME: api_documentation/core/cmame.md
- OMG MEGA: api_documentation/core/omg_mega.md
- CMA MEGA: api_documentation/core/cma_mega.md
- MOME: api_documentation/core/mome.md
- ME ES: api_documentation/core/mees.md
- AURORA: api_documentation/core/aurora.md
- PGA AURORA: api_documentation/core/pga_aurora.md
- ME PBT: api_documentation/core/me_pbt.md
- ME LS: api_documentation/core/mels.md
- Baseline algorithms:
- SMERL: api_documentation/core/smerl.md
- DIAYN: api_documentation/core/diayn.md
- DADS: api_documentation/core/dads.md
- SAC: api_documentation/core/sac.md
- TD3: api_documentation/core/td3.md
- CMAES: api_documentation/core/cmaes.md
- Genetic Algorithm: api_documentation/core/genetic_algorithm.md
- NSGA2: api_documentation/core/nsga2.md
- SPEA2: api_documentation/core/spea2.md
- PBT: api_documentation/core/pbt.md
- Containers: api_documentation/core/containers.md
- Emitters: api_documentation/core/emitters.md
- Neuroevolution: api_documentation/core/neuroevolution.md
- Environments: api_documentation/environments.md
- Tasks: api_documentation/tasks.md
- Utils: api_documentation/utils.md