Skip to content

Commit 51e047e

Browse files
author
AoifeHughes
committed
bump with Mhauru's change suggestions
1 parent 0c7f940 commit 51e047e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ And also, kill any stray Quarto processes that are still running (sometimes it k
100100
pkill -9 -f quarto
101101
```
102102

103-
## License
103+
## Licence
104104

105-
This project is licensed under the MIT License - see the [License](License) file for details.
105+
This project is licensed under the MIT Licence - see the [LICENSE](LICENSE) file for details.

_quarto.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ format:
208208
209209
</div>
210210
<div class="footer-bottom">
211-
<p>Turing.jl was created by <a href="https://mlg.eng.cam.ac.uk/hong/" target="_blank" rel="noopener">Hong Ge</a>, and maintained by the core <a href="https://turinglang.org/team/" target="_blank" rel="noopener">team</a> of developers and <a href="https://github.com/TuringLang/Turing.jl/graphs/contributors" target="_blank" rel="noopener">contributors</a>.<br>© 2025 The Turing Project Contributors. <a href="https://github.com/TuringLang/Turing.jl/blob/master/LICENSE" target="_blank" rel="noopener">MIT License</a>.</p>
211+
<p>Turing.jl was created by <a href="https://mlg.eng.cam.ac.uk/hong/" target="_blank" rel="noopener">Hong Ge</a>, and maintained by the core <a href="https://turinglang.org/team/" target="_blank" rel="noopener">team</a> of developers and <a href="https://github.com/TuringLang/Turing.jl/graphs/contributors" target="_blank" rel="noopener">contributors</a>.<br>© 2025 The Turing Project Contributors. <a href="https://github.com/TuringLang/Turing.jl/blob/master/LICENCE" target="_blank" rel="noopener">MIT Licence</a>.</p>
212212
<a href="https://github.com/TuringLang/docs/" target="_blank" rel="noopener" class="footer-source-link"><i class="bi bi-github"></i> Website Source</a>
213213
</div>
214214
</div>

tutorials/bayesian-linear-regression/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ setprogress!(false)
5454
We will use the `mtcars` dataset from the [RDatasets](https://github.com/JuliaStats/RDatasets.jl) package.
5555
`mtcars` contains a variety of statistics on different car models, including their miles per gallon, number of cylinders, and horsepower, among others.
5656

57-
We want to know if we can construct a Bayesian linear regression model to predict the miles per gallon of a car, given the other statistics it possesses.
57+
We want to know if we can construct a Bayesian linear regression model to predict the miles per gallon of a car, given the other statistics it has.
5858
Let us take a look at the data we have.
5959

6060
```{julia}

tutorials/bayesian-poisson-regression/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ The exponentiated mean of the coefficient `b1` is roughly half of that of `b2`.
222222
As can be seen from the plots above, the parameters converge to their final distributions after a few iterations.
223223
The initial samples during the [warmup phase](https://en.wikipedia.org/wiki/Markov_chain_Monte_Carlo) show higher variability and should be discarded before computing posterior statistics.
224224
Thus, we remove these warmup samples and view the diagnostics again.
225-
We discard the first 200 samples, corresponding to the adaptation phase used by the NUTS sampler (specified via the `discard_adapt=false` argument above).
225+
We discard the first 200 samples, corresponding to the adaptation phase used by the NUTS sampler (which we explicitly chose not to discard earlier with the `discard_adapt=false` argument).
226226

227227
```{julia}
228228
chains_new = chain[201:end, :, :]

tutorials/gaussian-processes-introduction/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Pkg.instantiate();
1414

1515
[JuliaGPs](https://github.com/JuliaGaussianProcesses/#welcome-to-juliagps) packages integrate well with Turing.jl because they implement the Distributions.jl
1616
interface.
17-
This tutorial assumes familiarity with [Gaussian processes](https://en.wikipedia.org/wiki/Gaussian_process); for an introduction, see [Rasmussen and Williams (2006)](http://www.gaussianprocess.org/gpml/).
17+
This tutorial assumes basic knowledge of [Gaussian processes](https://en.wikipedia.org/wiki/Gaussian_process) (i.e., a general understanding of what they are); for a comprehensive introduction, see [Rasmussen and Williams (2006)](http://www.gaussianprocess.org/gpml/).
1818
For a more in-depth understanding of the
1919
[JuliaGPs](https://github.com/JuliaGaussianProcesses/#welcome-to-juliagps) functionality
2020
used here, please consult the

0 commit comments

Comments
 (0)