-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy path_quarto.yml
More file actions
149 lines (136 loc) · 5.68 KB
/
_quarto.yml
File metadata and controls
149 lines (136 loc) · 5.68 KB
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
project:
type: website
preview:
# Change port if it's busy in your system or just remove this line so that It will automatically use any free port
port: 4200
browser: true
# These cannot be used as variables. They are reserved for the project configuration.
website:
title: "Turing.jl"
site-url: https://turinglang.org/
site-path: "/"
favicon: "assets/favicon.ico"
search:
location: navbar
type: overlay
navbar:
logo: "assets/images/turing-logo.svg"
logo-href: https://turinglang.org/
background: "#073c44"
foreground: "#ffffff"
left:
- href: tutorials/docs-00-getting-started/
text: Get Started
- href: tutorials/00-introduction/
text: Tutorials
- href: https://turinglang.org/library/
text: Library API
- href: https://turinglang.org/news/
text: News
- href: https://turinglang.org/team/
text: Team
tools:
- icon: twitter
href: https://x.com/TuringLang
text: Turing Twitter
- icon: github
href: https://github.com/TuringLang/Turing.jl
text: Turing GitHub
sidebar:
- id: documentation
collapse-level: 1
contents:
- section: "Documentation"
# href: tutorials/index.qmd
contents:
- section: "Using Turing - Modelling Syntax and Interface"
collapse-level: 1
href: tutorials/docs-00-getting-started/index.qmd
contents:
- tutorials/docs-00-getting-started/index.qmd
- text: "Quick Start"
href: tutorials/docs-14-using-turing-quick-start/index.qmd
- tutorials/docs-12-using-turing-guide/index.qmd
- tutorials/docs-09-using-turing-advanced/index.qmd
- tutorials/docs-10-using-turing-autodiff/index.qmd
- tutorials/docs-13-using-turing-performance-tips/index.qmd
- tutorials/docs-11-using-turing-dynamichmc/index.qmd
- tutorials/docs-15-using-turing-sampler-viz/index.qmd
- text: "External Samplers"
href: tutorials/docs-16-using-turing-external-samplers/index.qmd
- section: "Using Turing - Tutorials"
contents:
- tutorials/00-introduction/index.qmd
- text: Gaussian Mixture Models
href: tutorials/01-gaussian-mixture-model/index.qmd
- tutorials/02-logistic-regression/index.qmd
- tutorials/03-bayesian-neural-network/index.qmd
- text: Hidden Markov Models
href: tutorials/04-hidden-markov-model/index.qmd
- tutorials/05-linear-regression/index.qmd
- text: Infinite Mixture Model
href: tutorials/06-infinite-mixture-model/index.qmd
- tutorials/07-poisson-regression/index.qmd
- text: Multinomial Logistic Regression
href: tutorials/08-multinomial-logistic-regression/index.qmd
- text: Variational Inference
href: tutorials/09-variational-inference/index.qmd
- text: "Bayesian Differential Equations"
href: tutorials/10-bayesian-differential-equations/index.qmd
- text: "Bayesian Stochastic Differential Equations"
href: tutorials/10-bayesian-stochastic-differential-equations/index.qmd
- text: "Probabilistic PCA"
href: tutorials/11-probabilistic-pca/index.qmd
- tutorials/13-seasonal-time-series/index.qmd
- text: "Introduction to Gaussian Processes"
href: tutorials/15-gaussian-processes/index.qmd
- text: "Gaussian Process Latent Variable Models"
href: tutorials/12-gplvm/index.qmd
- section: "For Developers (PPL)"
collapse-level: 1
contents:
- text: "How to Contribute"
href: tutorials/docs-01-contributing-guide/index.qmd
- tutorials/docs-05-for-developers-compiler/index.qmd
- text: "A Mini Turing Compiler"
href: tutorials/14-minituring/index.qmd
- tutorials/docs-06-for-developers-interface/index.qmd
- section: "For Developers (Inference)"
collapse-level: 1
contents:
- tutorials/docs-04-for-developers-abstractmcmc-turing/index.qmd
- tutorials/docs-07-for-developers-variational-inference/index.qmd
page-footer:
background: "#073c44"
left: |
Turing is created by <a href="http://mlg.eng.cam.ac.uk/hong/" target="_blank">Hong Ge</a>, and lovingly maintained by the <a href="https://github.com/TuringLang/Turing.jl/graphs/contributors" target="_blank">core team</a> of volunteers. <br>
The contents of this website are © 2024 under the terms of the <a href="https://github.com/TuringLang/Turing.jl/blob/master/LICENCE" target="_blank">MIT License</a>.
right:
- icon: twitter
href: https://x.com/TuringLang
aria-label: Turing Twitter
- icon: github
href: https://github.com/TuringLang/Turing.jl
aria-label: Turing GitHub
back-to-top-navigation: true
repo-url: https://github.com/TuringLang/TuringTutorials
repo-actions: [edit, issue]
repo-branch: master
repo-link-target: _blank
page-navigation: true
format:
html:
theme:
light: cosmo
css: theming/styles.css
toc: true
smooth-scroll: true
code-overflow: wrap
output-block-background: true
execute:
freeze: auto
# Global Variables to use in any qmd files using:
# {{< meta site-url >}}
site-url: https://turinglang.org/
get-started: tutorials/docs-00-getting-started/
tutorials-intro: tutorials/00-introduction/