Skip to content

Commit c58a9d2

Browse files
authored
Rework library page (#114)
* Rework library page * Update 404 * Add NormalizingFlows
1 parent 42aa497 commit c58a9d2

File tree

7 files changed

+264
-42
lines changed

7 files changed

+264
-42
lines changed

404.qmd

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ title: Page Not Found
44

55
The page you requested cannot be found (perhaps it was moved or renamed).
66

7-
You may want to visit [Get-Started Guide]({{< meta get-started >}}) or [Tutorials]({{< meta tutorials-intro >}}).
7+
You may want to return to the [home page](https://turinglang.org/).
8+
9+
If you believe this is an error, please do report it by [opening an issue](https://github.com/TuringLang/turinglang.github.io/issues/new).

_quarto.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ website:
2121
foreground: "#ffffff"
2222
left:
2323
- text: Get Started
24-
href: https://turinglang.org/docs/tutorials/docs-00-getting-started/
24+
href: https://turinglang.org/docs/getting-started/
2525
- text: Tutorials
26-
href: https://turinglang.org/docs/tutorials/00-introduction/
26+
href: https://turinglang.org/docs/tutorials/
2727
- text: Libraries
2828
href: library/
2929
- text: News
@@ -36,7 +36,7 @@ website:
3636
href: https://x.com/TuringLang
3737
- icon: github
3838
text: Turing GitHub
39-
href: https://github.com/TuringLang/Turing.jl
39+
href: https://github.com/TuringLang
4040

4141
page-footer:
4242
background: "#073c44"
@@ -83,5 +83,5 @@ format:
8383
# Global Variables to use in any qmd files using:
8484
# {{< meta site-url >}}
8585
site-url: https://turinglang.org
86-
get-started: https://turinglang.org/docs/tutorials/docs-00-getting-started/
87-
tutorials-intro: https://turinglang.org/docs/tutorials/00-introduction/
86+
get-started: https://turinglang.org/docs/getting-started/
87+
tutorials-intro: https://turinglang.org/docs/tutorials/

assets/scripts/TuringNavbar.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -247,10 +247,10 @@
247247
<a style="color: white !important; font-size: 21.25px !important; margin-left: 10px;" href="https://turinglang.org/">Turing.jl</a>
248248
<ul class="ext-nav-links">
249249
<li>
250-
<a class="ext-nav-link" href="https://turinglang.org/docs/tutorials/docs-00-getting-started/">Get Started</a>
250+
<a class="ext-nav-link" href="https://turinglang.org/docs/getting-started/">Get Started</a>
251251
</li>
252252
<li>
253-
<a class="ext-nav-link" href="https://turinglang.org/docs/tutorials/00-introduction/">Tutorials</a>
253+
<a class="ext-nav-link" href="https://turinglang.org/docs/tutorials/">Tutorials</a>
254254
</li>
255255
<li>
256256
<p class="ext-nav-link" id="library-handler">Libraries</p>
@@ -304,7 +304,7 @@
304304
</a>
305305
</ul>
306306
<ul>
307-
<li class="ext-dropdown-item-heading">Gaussion Processes</li>
307+
<li class="ext-dropdown-item-heading">Gaussian Processes</li>
308308
<a href="https://juliagaussianprocesses.github.io/AbstractGPs.jl/">
309309
<li>AbstractGPs</li>
310310
</a>

library/index.qmd

+85-32
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,114 @@
11
---
22
title: "Turing Libraries"
3-
page-layout: full
3+
search: false
4+
toc: false
45
include-in-header:
56
- text: |
67
<style>a {text-decoration: none;}a:hover {text-decoration: underline;}</style>
8+
listing:
9+
- id: libraries-main
10+
template: table.ejs
11+
contents: main.yml
12+
field-required: [name, api, github, description, category]
13+
include:
14+
category: main
15+
- id: libraries-modelling
16+
template: table.ejs
17+
contents: main.yml
18+
field-required: [name, api, github, description, category]
19+
include:
20+
category: modelling
21+
- id: libraries-mcmc
22+
template: table.ejs
23+
contents: main.yml
24+
field-required: [name, api, github, description, category]
25+
include:
26+
category: mcmc
27+
- id: libraries-vi
28+
template: table.ejs
29+
contents: main.yml
30+
field-required: [name, api, github, description, category]
31+
include:
32+
category: vi
33+
- id: libraries-utilities
34+
template: table.ejs
35+
contents: main.yml
36+
field-required: [name, api, github, description, category]
37+
include:
38+
category: utilities
39+
- id: libraries-diagnostics
40+
template: table.ejs
41+
contents: main.yml
42+
field-required: [name, api, github, description, category]
43+
include:
44+
category: diagnostics
45+
- id: libraries-distributions
46+
template: table.ejs
47+
contents: main.yml
48+
field-required: [name, api, github, description, category]
49+
include:
50+
category: distributions
51+
- id: libraries-infrastructure
52+
template: table.ejs
53+
contents: main.yml
54+
field-required: [name, api, github, description, category]
55+
include:
56+
category: infrastructure
57+
- id: libraries-gps
58+
template: table.ejs
59+
contents: main.yml
60+
field-required: [name, api, github, description, category]
61+
include:
62+
category: gps
763
---
864

9-
This page lists all the packages that are part of the [The Turing Organization](https://github.com/TuringLang).
65+
This page lists all the packages that are part of the [The Turing Organisation](https://github.com/TuringLang), and provides links to their respective API documentation pages and GitHub repositories.
1066

11-
## Modelling Languages
12-
13-
- [DynamicPPL.jl](https://turinglang.org/DynamicPPL.jl/): A domain-specific language and backend for probabilistic programming languages used by Turing.jl.
67+
If you are looking for tutorials and usage guides, please visit [this page](https://turinglang.org/docs/).
1468

15-
- [JuliaBUGS.jl](https://turinglang.org/JuliaBUGS.jl/): JuliaBUGS is a graph-based probabilistic programming language and a component of the Turing ecosystem.
69+
## Turing.jl itself
1670

17-
- [TuringGLM.jl](https://turinglang.org/TuringGLM.jl/): A Julia package for Bayesian generalised linear models used for returning an instantiated Turing model using the formula syntax
71+
::: {#libraries-main}
72+
:::
1873

19-
## Markov chain Monte Carlo (MCMC)
74+
## Modelling Languages
2075

21-
- [AdvancedHMC.jl](https://turinglang.org/AdvancedHMC.jl/): It provides a robust, modular, and efficient implementation of advanced Hamiltonian Monte Carlo (HMC) algorithms.
76+
::: {#libraries-modelling}
77+
:::
2278

23-
- [AbstractMCMC.jl](https://turinglang.org/AbstractMCMC.jl/): Abstract types and interfaces for Markov chain Monte Carlo methods. This defines an interface for sampling and combining Markov chains.
79+
## Markov Chain Monte Carlo (MCMC)
2480

25-
- [ThermodynamicIntegration.jl](https://github.com/theogf/ThermodynamicIntegration.jl): A simple package to compute Thermodynamic Integration for computing the evidence in a Bayesian setting.
81+
::: {#libraries-mcmc}
82+
:::
2683

27-
- [AdvancedPS.jl](https://turinglang.org/AdvancedPS.jl/): This is a lightweight package that implements particle-based Monte Carlo algorithms for the [Turing](https://turinglang.org/) ecosystem.
84+
## Variational Inference
2885

29-
- [SliceSampling.jl](https://turinglang.org/SliceSampling.jl): This package is a collection of slice sampling algorithms including the univariate slice samplers by [Neal (2003)](https://arxiv.org/abs/physics/0009028).
86+
::: {#libraries-vi}
87+
:::
3088

31-
- [EllipticalSliceSampling.jl](https://turinglang.org/EllipticalSliceSampling.jl/): This package implements elliptical slice sampling in the Julia language, as described in [Murray, Adams & MacKay (2010)](http://proceedings.mlr.press/v9/murray10a/murray10a.pdf).
89+
## Utilities
3290

33-
- [NestedSamplers.jl](https://turinglang.org/NestedSamplers.jl/): A Julian implementation of single- and multi-ellipsoidal nested sampling algorithms using the [AbstractMCMC](https://github.com/turinglang/abstractmcmc.jl) interface.
91+
::: {#libraries-utilities}
92+
:::
3493

3594
## Diagnostics
3695

37-
- [MCMCChains.jl](https://turinglang.org/MCMCChains.jl/): Implementation of Julia types for summarising MCMC simulations and utility functions for [diagnostics](https://turinglang.org/MCMCChains.jl/stable/diagnostics/#Diagnostics) and [visualisations](https://turinglang.org/MCMCChains.jl/stable/statsplots/#StatsPlots.jl).
38-
39-
- [MCMCDiagnosticTools.jl](https://turinglang.org/MCMCDiagnosticTools.jl/): This package provides functionality for diagnosing samples generated using Markov Chain Monte Carlo.
96+
::: {#libraries-diagnostics}
97+
:::
4098

41-
- [ParetoSmooth.jl](https://turinglang.org/ParetoSmooth.jl/): An implementation of Pareto smoothed importance sampling(PSIS) algorithms in Julia.
99+
## Distributions
42100

43-
## Bijectors.jl
101+
::: {#libraries-distributions}
102+
:::
44103

45-
- [Bijectors.jl](https://turinglang.org/Bijectors.jl/): A package for transforming distributions, used by [Turing.jl](https://github.com/TuringLang/Turing.jl).
104+
## Infrastructure
46105

47-
## TuringCallbacks.jl
48-
49-
- [TuringCallbacks.jl](https://turinglang.org/TuringCallbacks.jl/): A package containing some convenient callbacks to use when you sample in [`Turing.jl`](https://app.codecov.io/gh/TuringLang/Turing.jl).
50-
51-
## TuringBenchmarking.jl
52-
53-
- [TuringBenchmarking.jl](https://turinglang.org/TuringBenchmarking.jl/): A package for benchmarking and checking [`Turing.jl`](https://github.com/TuringLang/Turing.jl) models.
106+
::: {#libraries-infrastructure}
107+
:::
54108

55109
## Gaussian Processes
56110

57-
- [AbstractGPs.jl](https://juliagaussianprocesses.github.io/AbstractGPs.jl): AbstractGPs.jl is a package that defines a low-level API for working with Gaussian processes (GPs), and basic functionality for working with them in the simplest cases.
58-
59-
- [KernelFunctions.jl](https://juliagaussianprocesses.github.io/KernelFunctions.jl): Julia package for kernel functions for machine learning.
111+
The following packages come under the umbrella of the [JuliaGaussianProcesses organisation](https://github.com/JuliaGaussianProcesses).
60112

61-
- [ApproximateGPs.jl](https://juliagaussianprocesses.github.io/ApproximateGPs.jl): This is a package that provides some approximate inference algorithms for Gaussian process models, built on top of [AbstractGPs.jl](https://github.com/JuliaGaussianProcesses/AbstractGPs.jl).
113+
::: {#libraries-gps}
114+
:::

library/main.yml

+153
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
1+
- name: Turing
2+
api: https://turinglang.org/Turing.jl/
3+
github: https://github.com/TuringLang/Turing.jl
4+
description: "The main entry point to the Turing ecosystem"
5+
category: main
6+
7+
- name: DynamicPPL
8+
api: https://turinglang.org/DynamicPPL.jl/
9+
github: https://github.com/TuringLang/DynamicPPL.jl
10+
description: "Domain-specific language and backend for probabilistic programming; contains the core functionality of Turing.jl"
11+
category: modelling
12+
- name: JuliaBUGS
13+
api: https://turinglang.org/JuliaBUGS.jl/
14+
github: https://github.com/TuringLang/JuliaBUGS.jl
15+
description: "A graph-based probabilistic programming language"
16+
category: modelling
17+
- name: TuringGLM
18+
api: https://turinglang.org/TuringGLM.jl/
19+
github: https://github.com/TuringLang/TuringGLM.jl
20+
description: "Bayesian generalised linear models used for returning an instantiated Turing model using the formula syntax"
21+
category: modelling
22+
- name: AbstractPPL
23+
api: https://turinglang.org/AbstractPPL.jl/
24+
github: https://github.com/TuringLang/AbstractPPL.jl
25+
description: "An abstract interface for probabilistic programming languages"
26+
category: modelling
27+
28+
- name: AbstractMCMC
29+
api: https://turinglang.org/AbstractMCMC.jl/
30+
github: https://github.com/TuringLang/AbstractMCMC.jl
31+
description: "Abstract types and interfaces for Markov chain Monte Carlo methods, featuring progress bars, parallel sampling, and user-defined callbacks"
32+
category: mcmc
33+
- name: AdvancedHMC
34+
api: https://turinglang.org/AdvancedHMC.jl/
35+
github: https://github.com/TuringLang/AdvancedHMC.jl
36+
description: "A robust, modular, and efficient implementation of advanced Hamiltonian Monte Carlo algorithms"
37+
category: mcmc
38+
- name: AdvancedMH
39+
api: https://turinglang.org/AdvancedMH.jl/
40+
github: https://github.com/TuringLang/AdvancedMH.jl
41+
description: "Random walk and adaptive Metropolis–Hastings algorithms"
42+
category: mcmc
43+
- name: AdvancedPS
44+
api: https://turinglang.org/AdvancedPS.jl/
45+
github: https://github.com/TuringLang/AdvancedPS.jl
46+
description: "Lightweight implementation of particle-based Monte Carlo algorithms"
47+
category: mcmc
48+
- name: SliceSampling
49+
api: https://turinglang.org/SliceSampling.jl/
50+
github: https://github.com/TuringLang/SliceSampling.jl
51+
description: "Univariate and multivariate slice sampling algorithms"
52+
category: mcmc
53+
- name: EllipticalSliceSampling
54+
api: https://turinglang.org/EllipticalSliceSampling.jl/
55+
github: https://github.com/TuringLang/EllipticalSliceSampling.jl
56+
description: "Elliptical slice sampling for inference in models with multivariate Gaussian priors"
57+
category: mcmc
58+
- name: NestedSamplers
59+
api: https://turinglang.org/NestedSamplers.jl/
60+
github: https://github.com/TuringLang/NestedSamplers.jl
61+
description: "Single- and multi-ellipsoidal nested sampling algorithms"
62+
category: mcmc
63+
- name: ThermodynamicIntegration
64+
api: https://theogf.github.io/ThermodynamicIntegration.jl/
65+
github: https://github.com/theogf/ThermodynamicIntegration.jl
66+
description: "Computing Bayesian evidence using thermodynamic integration"
67+
category: mcmc
68+
69+
- name: AdvancedVI
70+
api: https://turinglang.org/AdvancedVI.jl/
71+
github: https://github.com/TuringLang/AdvancedVI.jl
72+
description: "Variational inference algorithms for Bayesian models"
73+
category: vi
74+
- name: NormalizingFlows
75+
api: https://turinglang.org/NormalizingFlows.jl/
76+
github: https://github.com/TuringLang/NormalizingFlows.jl
77+
description: "Variational inference and normalizing flows for Bayesian computation"
78+
category: vi
79+
80+
- name: TuringCallbacks
81+
api: https://turinglang.org/TuringCallbacks.jl/
82+
github: https://github.com/TuringLang/TuringCallbacks.jl
83+
description: "Convenient callbacks for sampling in Turing.jl"
84+
category: utilities
85+
- name: TuringBenchmarking
86+
api: https://turinglang.org/TuringBenchmarking.jl/
87+
github: https://github.com/TuringLang/TuringBenchmarking.jl
88+
description: "Tools to benchmark and check Turing models"
89+
category: utilities
90+
91+
- name: MCMCChains
92+
api: https://turinglang.org/MCMCChains.jl/
93+
github: https://github.com/TuringLang/MCMCChains.jl
94+
description: "Implementation of the Chains type returned by Turing sampling, with functions for diagnostics and visualisations"
95+
category: diagnostics
96+
- name: MCMCDiagnosticTools
97+
api: https://turinglang.org/MCMCDiagnosticTools.jl/
98+
github: https://github.com/TuringLang/MCMCDiagnosticTools.jl
99+
description: "Extra functionality for diagnosing samples generated with MCMC methods"
100+
category: diagnostics
101+
- name: ParetoSmooth
102+
api: https://turinglang.org/ParetoSmooth.jl/
103+
github: https://github.com/TuringLang/ParetoSmooth.jl
104+
description: "Leave-one-out cross-validation for fitted Bayesian models using Pareto smoothed importance sampling"
105+
category: diagnostics
106+
107+
- name: Bijectors
108+
api: https://turinglang.org/Bijectors.jl/
109+
github: https://github.com/TuringLang/Bijectors.jl
110+
description: "Transformations for distributions"
111+
category: distributions
112+
- name: DistributionsAD
113+
api: https://turinglang.org/DistributionsAD.jl/
114+
github: https://github.com/TuringLang/DistributionsAD.jl
115+
description: "Automatic differentiation for calculating the log probability densities of distributions"
116+
category: distributions
117+
118+
- name: turinglang.github.io
119+
api: ""
120+
github: https://github.com/TuringLang/turinglang.github.io
121+
description: "The code for this website itself"
122+
category: infrastructure
123+
- name: docs
124+
api: ""
125+
github: https://github.com/TuringLang/docs
126+
description: "The tutorials and usage guides; any page whose URL begins with https://turinglang.org/docs is built here"
127+
category: infrastructure
128+
- name: actions
129+
api: ""
130+
github: https://github.com/TuringLang/actions
131+
description: "Shared GitHub Actions for the TuringLang organisation"
132+
category: infrastructure
133+
134+
- name: AbstractGPs
135+
api: https://juliagaussianprocesses.github.io/AbstractGPs.jl
136+
github: https://github.com/JuliaGaussianProcesses/AbstractGPs.jl
137+
description: "Low-level API and basic functionality for working with Gaussian processes"
138+
category: gps
139+
- name: KernelFunctions
140+
api: https://juliagaussianprocesses.github.io/KernelFunctions.jl
141+
github: https://github.com/JuliaGaussianProcesses/KernelFunctions.jl
142+
description: "Kernel functions for machine learning"
143+
category: gps
144+
- name: ApproximateGPs
145+
api: https://juliagaussianprocesses.github.io/ApproximateGPs.jl
146+
github: https://github.com/JuliaGaussianProcesses/ApproximateGPs.jl
147+
description: "Approximate inference algorithms for Gaussian process models"
148+
category: gps
149+
- name: GPLikelihoods
150+
api: https://juliagaussianprocesses.github.io/GPLikelihoods.jl
151+
github: https://github.com/JuliaGaussianProcesses/GPLikelihoods.jl
152+
description: "Likelihoods used as building blocks in non-Gaussian problems"
153+
category: gps

library/table.ejs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<table width="100%">
2+
<tbody>
3+
<% for (const item of items) { %>
4+
<tr>
5+
<td style="padding: 5px 5px 5px 0"><span style="font-weight: bold"><%- item.name %></span></td>
6+
<% if (item.api !== "") { %>
7+
<td style="padding: 5px 5px"><a href="<%- item.api %>" target="_blank">API</a></td>
8+
<% } %>
9+
<td style="padding: 5px 5px"><a href="<%- item.github %>" target="_blank">GitHub</a></td>
10+
<td style="padding: 5px 0 5px 5px"><%- item.description %></td>
11+
</tr>
12+
<% } %>
13+
</tbody>
14+
</table>

team/index.qmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ listing:
1818

1919
::: {#team-data}
2020

21-
:::
21+
:::

0 commit comments

Comments
 (0)