-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
109 lines (100 loc) · 3.07 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
# Project information
site_name: GP Model Zoo
site_description: Literature & Code for all things GP
site_author: J. Emmanuel Johnson
site_url: https://jejjohnson.github.io/gp_model_zoo
# Repository
repo_name: jejjohnson/gp_model_zoo
repo_url: https://github.com/jejjohnson/gp_model_zoo
# Configuration
theme:
name: material
language: en
palette:
primary: red
accent: black
font:
text: source code pro
code: source code pro
plugins:
- search
- mkdocs-jupyter
nav:
- Home: "README.md"
- Software: "software.md"
- Intro to GPs: "intro.md"
- Literature:
- About: "literature/README.md"
- Kernels: "literature/kernels.md"
- Sparse GPs: "literature/sparse_gps.md"
- Inference: "literature/inference.md"
- Large Scale: "literature/large_scale.md"
- Fourier: "literature/fourier.md"
- Deep GPs: "literature/deep_gps.md"
- Multi-Output: "literature/multioutput.md"
- State-Space: "literature/state_space.md"
- Uncertain Inputs: "literature/uncertain_inputs.md"
- Applications:
- Overview: "literature/applications/overview.md"
- Emulation: "literature/applications/emulation.md"
- Bayesian Opt.: "literature/applications/bayes_opt.md"
- Demos:
- Overview: "demos/README.md"
- 1D Example: "demos/1d_example.md"
- 1D Example (Large Scale): "demos/1d_example_ls.md"
# Copyright
copyright: Copyright © 2020 J. Emmanuel Johnson
markdown_extensions:
- markdown.extensions.admonition
- markdown.extensions.attr_list
- markdown.extensions.codehilite:
guess_lang: false
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:pymdownx.emoji.twemoji
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.highlight:
linenums_style: pymdownx-inline
- pymdownx.inlinehilite
- pymdownx.keys
# - pymdownx.magiclink:
# repo_url_shorthand: true
# user: squidfunk
# repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra_javascript:
- javascripts/extra.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js
# - https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML
extra:
# disqus: XHR39t5kZv
social:
# - type: 'envelope'
# link: 'http://www.shortwhale.com/ericmjl'
- icon: fontawesome/brands/github
link: 'https://github.com/jejjohnson'
- icon: fontawesome/brands/twitter
link: 'https://twitter.com/jejjohnson'
- icon: fontawesome/brands/linkedin
link: 'https://linkedin.com/in/jejjohnson'
- icon: fontawesome/solid/globe
link: 'https://jejjohnson.netlify.app'