forked from JaxGaussianProcesses/GPJax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
149 lines (139 loc) Β· 4.75 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
site_name: GPJax
site_description: The documentation for the GPJax software library.
site_url: https://docs.jaxgaussianprocesses.com/
repo_url: https://github.com/JaxGaussianProcesses/GPJax
repo_name: JaxGaussianProcesses/GPJax
edit_uri: ""
nav:
- π‘ Home: index.md
- Getting started:
- π οΈ Installation: installation.md
- π¨ Design principles: design.md
- π€ Contributing: contributing.md
- πͺ Sharp bits: sharp_bits.md
- π³ GPJax PyTrees: examples/pytrees.md
- π JAX 101 [External]: https://jax.readthedocs.io/en/latest/jax-101/index.html
- π‘ Background:
- Intro to GPs: examples/intro_to_gps.py
- Intro to Kernels: examples/intro_to_kernels.py
- π Tutorials:
- Regression: examples/regression.py
- Classification: examples/classification.py
- Poisson regression: examples/poisson.py
- Barycentres: examples/barycentres.py
- Deep kernel learning: examples/deep_kernels.py
- Graph kernels: examples/graph_kernels.py
- Sparse GPs: examples/uncollapsed_vi.py
- Stochastic sparse GPs: examples/collapsed_vi.py
- Bayesian Optimisation: examples/bayesian_optimisation.py
- Decision Making: examples/decision_making.py
- Multi-output GPs for Ocean Modelling: examples/oceanmodelling.py
- π Guides for customisation:
- Kernels: examples/constructing_new_kernels.py
- Likelihoods: examples/likelihoods_guide.py
- UCI regression: examples/yacht.py
- π» Raw tutorial code: give_me_the_code.md
- Community:
- π₯ Code of conduct: CODE_OF_CONDUCT.md
- π Governance: GOVERNANCE.md
- π¨ Contact: https://jaxgaussianprocesses.com/contact/
- π Reference: api/
theme:
name: material
features:
- navigation.instant
- navigation.tracking
- navigation.sections
- navigation.expand
- navigation.top # Show a back to top button
- content.code.copy
- search.suggest # Show search suggestions
- search.highlight # Highlight search results in results
- content.code.annotate # Allow individual lines of code to be annotated
icon:
repo: fontawesome/brands/github
logo: _static/favicon.ico
favicon: _static/favicon.ico
markdown_extensions:
- admonition
- pymdownx.details # Enhance admonitions with collapse/expand
- markdown_katex:
no_inline_svg: True
insert_fonts_css: True
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- pymdownx.snippets:
check_paths: true
- pymdownx.tabbed
- toc:
permalink: ''
toc_depth: 4
- footnotes
# - pymdownx.arithmatex:
# generic: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
plugins:
- search
- gen-files:
scripts:
- docs/scripts/gen_pages.py # or any other name or path
- docs/scripts/notebook_converter.py # or any other name or path
- literate-nav:
nav_file: SUMMARY.md
- bibtex:
bib_file: "docs/refs.bib"
csl_file: "https://raw.githubusercontent.com/citation-style-language/styles/af38aba0e9b08406c8827abfc888e5f3e3fa1d65/journal-of-the-royal-statistical-society.csl"
cite_inline: true
- mkdocs-jupyter:
execute: true
allow_errors: false
include: ["examples/*.py"]
ignore: ["examples/utils.py", "_statch/*.py", "scripts/*.py"]
# binder: true
# binder_service_name: "gh"
# binder_branch: "main"
- mkdocstrings:
watch:
- gpjax
default_handler: python
handlers:
python:
rendering:
show_root_heading: true
show_root_full_path: true
show_if_no_docstring: true
show_signature_annotations: true
show_source: false
members_order: source # order methods according to their order of definition in the source code, not alphabetical order
heading_level: 4
options:
inherited_members: true # Allow looking up inherited methods
docstring_style: "google"
- git-authors:
show_contribution: false
show_line_count: true
show_email_address: false
count_empty_lines: true
fallback_to_empty: false
sort_authors_by: contribution
enabled: true
extra:
analytics:
provider: google
property: G-L15440C0N0
extra_css:
- stylesheets/extra.css
- stylesheets/permalinks.css
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.8/katex.min.css
extra_javascript:
# - javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
# - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.8/katex.min.js
- javascripts/katex.js