-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
106 lines (96 loc) · 2.81 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
# Project information
site_name: Uncertain Gaussian Processes
site_description: Uncertain Inputs with Gaussian Processes
site_author: J. Emmanuel Johnson
site_url: https://jejjohnson.github.io/uncertain_gps
# Repository
repo_name: jejjohnson/uncertain_gps
repo_url: https://github.com/jejjohnson/uncertain_gps
# Configuration
theme:
name: material
language: en
palette:
primary: black
accent: gray
font:
text: source code pro
code: source code pro
plugins:
- search
- mknotebooks:
execute: false
write_markdown: true
timeout: 600
nav:
- Home: "README.md"
- Literature: "Notes/literature.md"
- Taylor:
- Linearized GP: "Taylor/taylor.md"
- Error Propagation: "Taylor/error_propagation.md"
- Notebooks:
- JAX:
- Basics: "notebooks/1.0_gp_basics"
- Refactor: "notebooks/1.1_gp_refactored"
- Objax: "notebooks/objax_gp"
- Numpyro:
- Numpyro (SVI): "notebooks/numpyro_gps"
- Numpyro (MCMC): "notebooks/numpyro_egp_mcmc"
- GPyTorch:
- Uncertain Inputs (Taylor): "notebooks/gpytorch_gp_uncertain"
# 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.com'