Skip to content

Commit 18437a0

Browse files
committed
Reorganise tutorials section
1 parent 00b1bd8 commit 18437a0

File tree

28 files changed

+89
-74
lines changed

28 files changed

+89
-74
lines changed

_quarto.yml

Lines changed: 25 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -56,43 +56,34 @@ website:
5656
- section: "Usage Tips"
5757
collapse-level: 1
5858
contents:
59-
- tutorials/docs-10-using-turing-autodiff/index.qmd
60-
- tutorials/usage-custom-distribution/index.qmd
61-
- tutorials/usage-probability-interface/index.qmd
62-
- tutorials/usage-modifying-logprob/index.qmd
63-
- tutorials/usage-generated-quantities/index.qmd
64-
- tutorials/docs-17-mode-estimation/index.qmd
65-
- tutorials/docs-13-using-turing-performance-tips/index.qmd
66-
- tutorials/docs-15-using-turing-sampler-viz/index.qmd
67-
- tutorials/docs-11-using-turing-dynamichmc/index.qmd
68-
- tutorials/docs-16-using-turing-external-samplers/index.qmd
59+
- usage/automatic-differentiation/index.qmd
60+
- usage/custom-distribution/index.qmd
61+
- usage/probability-interface/index.qmd
62+
- usage/modifying-logprob/index.qmd
63+
- usage/generated-quantities/index.qmd
64+
- usage/mode-estimation/index.qmd
65+
- usage/performance-tips/index.qmd
66+
- usage/sampler-visualisation/index.qmd
67+
- usage/dynamichmc/index.qmd
68+
- usage/external-samplers/index.qmd
6969

7070
- section: "Tutorials"
7171
contents:
72-
- tutorials/00-introduction/index.qmd
73-
- text: Gaussian Mixture Models
74-
href: tutorials/01-gaussian-mixture-model/index.qmd
75-
- tutorials/02-logistic-regression/index.qmd
76-
- tutorials/03-bayesian-neural-network/index.qmd
77-
- text: Hidden Markov Models
78-
href: tutorials/04-hidden-markov-model/index.qmd
79-
- tutorials/05-linear-regression/index.qmd
80-
- text: Infinite Mixture Model
81-
href: tutorials/06-infinite-mixture-model/index.qmd
82-
- tutorials/07-poisson-regression/index.qmd
83-
- text: Multinomial Logistic Regression
84-
href: tutorials/08-multinomial-logistic-regression/index.qmd
85-
- text: Variational Inference
86-
href: tutorials/09-variational-inference/index.qmd
87-
- text: "Bayesian Differential Equations"
88-
href: tutorials/10-bayesian-differential-equations/index.qmd
89-
- text: "Probabilistic PCA"
90-
href: tutorials/11-probabilistic-pca/index.qmd
91-
- tutorials/13-seasonal-time-series/index.qmd
92-
- text: "Introduction to Gaussian Processes"
93-
href: tutorials/15-gaussian-processes/index.qmd
94-
- text: "Gaussian Process Latent Variable Models"
95-
href: tutorials/12-gplvm/index.qmd
72+
- tutorials/coin-flipping/index.qmd
73+
- tutorials/gaussian-mixture-models/index.qmd
74+
- tutorials/bayesian-logistic-regression/index.qmd
75+
- tutorials/bayesian-neural-networks/index.qmd
76+
- tutorials/hidden-markov-models/index.qmd
77+
- tutorials/bayesian-linear-regression/index.qmd
78+
- tutorials/infinite-mixture-models/index.qmd
79+
- tutorials/bayesian-poisson-regression/index.qmd
80+
- tutorials/multinomial-logistic-regression/index.qmd
81+
- tutorials/variational-inference/index.qmd
82+
- tutorials/bayesian-differential-equations/index.qmd
83+
- tutorials/probabilistic-pca/index.qmd
84+
- tutorials/bayesian-time-series-analysis/index.qmd
85+
- tutorials/gaussian-processes-introduction/index.qmd
86+
- tutorials/gaussian-process-latent-variable-models/index.qmd
9687

9788
- section: "Developers"
9889
contents:
@@ -142,7 +133,6 @@ format:
142133
dark: [cosmo, theming/theme-dark.scss]
143134
css: theming/styles.css
144135
smooth-scroll: true
145-
code-overflow: wrap
146136
output-block-background: true
147137
toc: true
148138
toc-title: "Table of Contents"

tutorials/10-bayesian-differential-equations/index.qmd renamed to tutorials/bayesian-differential-equations/index.qmd

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
2-
title: Bayesian Estimation of Differential Equations
2+
title: Bayesian Differential Equations
33
engine: julia
4+
aliases:
5+
- ../10-bayesian-differential-equations/index.html
46
---
57

68
```{julia}

tutorials/05-linear-regression/index.qmd renamed to tutorials/bayesian-linear-regression/index.qmd

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
2-
title: Linear Regression
2+
title: Bayesian Linear Regression
33
engine: julia
4+
aliases:
5+
- ../05-linear-regression/index.html
46
---
57

68
```{julia}

tutorials/02-logistic-regression/index.qmd renamed to tutorials/bayesian-logistic-regression/index.qmd

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
title: Bayesian Logistic Regression
33
engine: julia
4+
aliases:
5+
- ../02-logistic-regression/index.html
46
---
57

68
```{julia}
@@ -271,4 +273,4 @@ end
271273

272274
The above shows that with a threshold of 0.07, we correctly predict a respectable portion of the defaults, and correctly identify most non-defaults. This is fairly sensitive to a choice of threshold, and you may wish to experiment with it.
273275

274-
This tutorial has demonstrated how to use Turing to perform Bayesian logistic regression.
276+
This tutorial has demonstrated how to use Turing to perform Bayesian logistic regression.

tutorials/03-bayesian-neural-network/index.qmd renamed to tutorials/bayesian-neural-networks/index.qmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
title: Bayesian Neural Networks
33
engine: julia
4+
aliases:
5+
- ../03-bayesian-neural-network/index.html
46
---
57

68
```{julia}

tutorials/07-poisson-regression/index.qmd renamed to tutorials/bayesian-poisson-regression/index.qmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
title: Bayesian Poisson Regression
33
engine: julia
4+
aliases:
5+
- ../07-poisson-regression/index.html
46
---
57

68
```{julia}

tutorials/13-seasonal-time-series/index.qmd renamed to tutorials/bayesian-time-series-analysis/index.qmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22
title: Bayesian Time Series Analysis
33
engine: julia
4+
aliases:
5+
- ../13-seasonal-time-series/index.html
46
---
57

68
```{julia}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Introduction: Coin Flipping"
33
engine: julia
44
aliases:
5-
- ../
5+
- ../00-introduction/index.html
66
---
77

88
```{julia}

tutorials/docs-08-using-turing/index.qmd

Lines changed: 0 additions & 13 deletions
This file was deleted.

tutorials/docs-09-using-turing-advanced/index.qmd

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)