-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
115 lines (105 loc) · 2.69 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
site_name: SGP-Tools
site_author: Kalvik Jakkala
site_url: https://www.itskalvik.com/sgp-tools/
theme:
name: "material"
custom_dir: overrides
favicon: assets/favicon.png
logo: assets/SGP-Tools.png
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
primary: custom
accent: custom
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
primary: custom
accent: custom
icon:
repo: fontawesome/brands/github
features:
- search.suggest
- search.highlight
- search.share
- toc.integrate
- toc.follow
- navigation.top
- navigation.tabs.sticky
- navigation.tabs
- navigation.sections
- navigation.indexes
- content.code.copy
plugins:
- mkdocstrings
- search
- offline
- mkdocs-jupyter
nav:
- index.md
- API Documentation:
- models:
- "": api/models/index.md
- api/models/Bayesian-Optimization.md
- api/models/Genetic-Algorithm.md
- api/models/Continuous-SGP.md
- api/models/Greedy-MI.md
- api/models/Greedy-SGP.md
- models.core:
- "": api/models/core/index.md
- api/models/core/AugmentedGPR.md
- api/models/core/AugmentedSGPR.md
- api/models/core/OSGPR.md
- api/models/core/Transformations.md
- kernels:
- "": api/kernels/index.md
- api/kernels/Neural-Kernel.md
- utils:
- "": api/utils/index.md
- api/utils/Data.md
- api/utils/GPflow.md
- api/utils/Metrics.md
- api/utils//Misc.md
- api/utils/TSP.md
- ROS 2:
- "ROS 2": ros2.md
- Docker:
- "Docker": docker.md
- BlueOS:
- "BlueOS": blueos.md
- Examples:
- examples/AIPP_non_point_FoV.ipynb
- examples/IPP.ipynb
- examples/Baselines.ipynb
- examples/non_point_FoV.ipynb
- examples/non_stationary_kernel.ipynb
- examples/obstacles.ipynb
extra_css:
- stylesheets/extra.css
extra:
analytics:
provider: google
property: G-Z2TVV3MF1S
repo_url: https://github.com/itskalvik/SGP-Tools
markdown_extensions:
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg