Skip to content

Commit 343b161

Browse files
committed
Some fixes, comment out half of the stuff
1 parent 275072c commit 343b161

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

_quarto.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -50,40 +50,40 @@ website:
5050
- text: documentation
5151
collapse-level: 1
5252
contents:
53-
- getting-started/index.qmd
53+
# - getting-started/index.qmd
5454
- core-functionality/index.qmd
5555

5656
- section: "User Guide"
5757
collapse-level: 1
5858
contents:
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
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:
7272
- tutorials/coin-flipping/index.qmd
7373
- tutorials/gaussian-mixture-models/index.qmd
74-
- tutorials/bayesian-logistic-regression/index.qmd
75-
- tutorials/bayesian-neural-networks/index.qmd
74+
# - tutorials/bayesian-logistic-regression/index.qmd
75+
# - tutorials/bayesian-neural-networks/index.qmd
7676
- tutorials/hidden-markov-models/index.qmd
77-
- tutorials/bayesian-linear-regression/index.qmd
77+
# - tutorials/bayesian-linear-regression/index.qmd
7878
- tutorials/infinite-mixture-models/index.qmd
79-
- tutorials/bayesian-poisson-regression/index.qmd
80-
- tutorials/multinomial-logistic-regression/index.qmd
79+
# - tutorials/bayesian-poisson-regression/index.qmd
80+
# - tutorials/multinomial-logistic-regression/index.qmd
8181
- 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
82+
# - tutorials/bayesian-differential-equations/index.qmd
83+
# - tutorials/probabilistic-pca/index.qmd
84+
# - tutorials/bayesian-time-series-analysis/index.qmd
8585
- tutorials/gaussian-processes-introduction/index.qmd
86-
- tutorials/gaussian-process-latent-variable-models/index.qmd
86+
# - tutorials/gaussian-process-latent-variable-models/index.qmd
8787

8888
- section: "Developers"
8989
contents:

tutorials/infinite-mixture-models/index.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,10 @@ In Turing we can implement an infinite Gaussian mixture model using the Chinese
188188
H = Normal(μ0, σ0)
189189
190190
# Latent assignment.
191-
z = tzeros(Int, length(x))
191+
z = zeros(Int, length(x))
192192
193193
# Locations of the infinitely many clusters.
194-
μ = tzeros(Float64, 0)
194+
μ = zeros(Float64, 0)
195195
196196
for i in 1:length(x)
197197

0 commit comments

Comments
 (0)