1
+ project :
2
+ type : website
3
+ render :
4
+ - " *.qmd"
5
+ - " !/tutorials/"
6
+ preview :
7
+ port : 4200
8
+ browser : true
9
+
10
+ # These cannot be used as variables. They are reserved for the project configuration.
11
+ website :
12
+ title : " Turing.jl"
13
+ site-url : https://turinglang.org/docs/
14
+ site-path : " /"
15
+ favicon : " assets/favicon.ico"
16
+ search :
17
+ location : navbar
18
+ type : overlay
19
+ navbar :
20
+ logo : " assets/images/turing-logo.svg"
21
+ background : " #073c44"
22
+ foreground : " #ffffff"
23
+ left :
24
+ - href : docs/using-turing/getting-started/
25
+ text : Get Started
26
+ - href : docs/tutorials/00-introduction/
27
+ text : Tutorials
28
+ - href : https://turinglang.org/news/
29
+ text : News
30
+ - href : https://turinglang.org/team/
31
+ text : Team
32
+ tools :
33
+ - icon : twitter
34
+ href : https://x.com/TuringLang
35
+ text : Turing Twitter
36
+ - icon : github
37
+ href : https://github.com/TuringLang/Turing.jl
38
+ text : Turing GitHub
39
+
40
+ sidebar :
41
+ - id : documentation
42
+ collapse-level : 1
43
+ contents :
44
+ - section : " Documentation"
45
+ href : docs/index.qmd
46
+ contents :
47
+ - section : " Using Turing"
48
+ collapse-level : 1
49
+ # href: docs/using-turing/getting-started/
50
+ contents :
51
+ - docs/using-turing/getting-started/index.qmd
52
+ - text : " Quick Start"
53
+ href : docs/using-turing/quick-start/index.qmd
54
+ - docs/using-turing/guide/index.qmd
55
+ - docs/using-turing/advanced-usage/index.qmd
56
+ - docs/using-turing/automatic-differentiation/index.qmd
57
+ - docs/using-turing/performance-tips/index.qmd
58
+ - docs/using-turing/using-dynamichmc/index.qmd
59
+ - docs/using-turing/sampler-visualization/index.qmd
60
+ - text : " External Samplers"
61
+ href : docs/using-turing/external-samplers/index.qmd
62
+
63
+ - section : " For Developers"
64
+ collapse-level : 1
65
+ contents :
66
+ - docs/for-developers/compiler/index.qmd
67
+ - docs/for-developers/interface/index.qmd
68
+ - docs/for-developers/abstractmcmc-turing/index.qmd
69
+ - docs/for-developers/variational-inference/index.qmd
70
+
71
+ - section : " Tutorials"
72
+ contents :
73
+ - text : Home
74
+ href : docs/tutorials/index.qmd
75
+ - docs/tutorials/00-introduction/index.qmd
76
+ - text : Gaussian Mixture Models
77
+ href : docs/tutorials/01-gaussian-mixture-model/index.qmd
78
+ - docs/tutorials/02-logistic-regression/index.qmd
79
+ - docs/tutorials/03-bayesian-neural-network/index.qmd
80
+ - text : Hidden Markov Models
81
+ href : docs/tutorials/04-hidden-markov-model/index.qmd
82
+ - docs/tutorials/05-linear-regression/index.qmd
83
+ - text : Infinite Mixture Model
84
+ href : docs/tutorials/06-infinite-mixture-model/index.qmd
85
+ - docs/tutorials/07-poisson-regression/index.qmd
86
+ - text : Multinomial Logistic Regression
87
+ href : docs/tutorials/08-multinomial-logistic-regression/index.qmd
88
+ - text : Variational Inference
89
+ href : docs/tutorials/09-variational-inference/index.qmd
90
+ - text : " Bayesian Differential Equations"
91
+ href : docs/tutorials/10-bayesian-differential-equations/index.qmd
92
+ - text : " Probabilistic PCA"
93
+ href : docs/tutorials/11-probabilistic-pca/index.qmd
94
+ - text : " Gaussian Process LVM"
95
+ href : docs/tutorials/12-gplvm/index.qmd
96
+ - docs/tutorials/13-seasonal-time-series/index.qmd
97
+ - text : " A Mini Turing Compiler"
98
+ href : docs/tutorials/14-minituring/index.qmd
99
+ - text : " Intro to Gaussian Processes"
100
+ href : docs/tutorials/15-gaussian-processes/index.qmd
101
+ - section : " Contributing"
102
+ contents :
103
+ - text : " How to Contribute"
104
+ href : docs/contributing/contributing-guide/index.qmd
105
+ - docs/contributing/contributing-style-guide/index.qmd
106
+
107
+ page-footer :
108
+ background : " #073c44"
109
+ left : |
110
+ 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>
111
+ 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>.
112
+
113
+ right :
114
+ - icon : twitter
115
+ href : https://x.com/TuringLang
116
+ aria-label : Turing Twitter
117
+ - icon : github
118
+ href : https://github.com/TuringLang/Turing.jl
119
+ aria-label : Turing GitHub
120
+
121
+ back-to-top-navigation : true
122
+ repo-url : https://github.com/TuringLang/TuringTutorials
123
+ repo-actions : [edit, issue]
124
+ repo-link-target : _blank
125
+ page-navigation : true
126
+
127
+ format :
128
+ html :
129
+ theme :
130
+ light : cosmo
131
+ css : theming/styles.css
132
+ toc : true
133
+ smooth-scroll : true
134
+ code-overflow : wrap
135
+ output-block-background : true
136
+ # code-block-border-left: true
137
+ # code-line-numbers: true
138
+
139
+ execute :
140
+ freeze : auto
141
+
142
+ # Global Variables to use in any qmd files using:
143
+ # {{< meta site-url >}}
144
+ site-url : https://turinglang.org/docs/
145
+ get-started : docs/using-turing/getting-started/
146
+ tutorials-intro : docs/tutorials/00-introduction/
0 commit comments