-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
51 lines (46 loc) · 1.68 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
# Copyright 2020 BULL SAS All rights reserved
site_name: SHAMan project
theme:
name: material
highlightjs: true
hljs_languages:
- yaml
plugins:
- mknotebooks
markdown_extensions:
- pymdownx.emoji
# emoji_index: !!python/name:materialx.emoji.twemoji
# emoji_generator: !!python/name:materialx.emoji.to_svg
- admonition
- pymdownx.inlinehilite
- pymdownx.highlight
- pymdownx.superfences
- 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
nav:
- Home: "index.md"
- "User Guide":
- "Installing SHAMan": "user-guide/install.md"
- "Registering a new component": "user-guide/registering.md"
- "Launching an experiment": "user-guide/launching.md"
- "Technical guide":
- "Architecture": "technical-guide/architecture.md"
- "Optimization engine": "technical-guide/optimization-engine.md"
- "Stand-alone black-box optimization library":
- "Introduction to black-box optimization": "bbo/introduction.md"
- "Available heuristics": "bbo/heuristics.md"
- "Noise reduction": "bbo/noise-reduction.md"
- "Pruning strategies": "bbo/pruning-strategies.md"
- "Stop criterion": "bbo/stop-criterion.md"
- "Adding a new heuristic": "bbo/adding-heuristic.md"
- Cookbooks:
- "Optimization of I/O accelerators": "cookbooks/ioaccelerators.md"
- "Stand-alone optimization of ML model": "cookbooks/ml_model.ipynb"
- About:
- "License": "about/license.md"
- "Publications": "about/publications.md"
- "About the author": "about/about.md"