Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ContinuousIntegration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
julia-version: ['1', '1.6', 'nightly']
julia-version: ['1', '1.10', '1.6', 'nightly']
julia-arch: [x64]
os: [ubuntu-latest]
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1.6'
version: '1.10'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy documentation
Expand Down
1 change: 1 addition & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Gen = "ea4f424c-a589-11e8-07c0-fd5c91b9da4a"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"

[compat]
Documenter = "1"
2 changes: 2 additions & 0 deletions docs/pages.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ pages = [
"Tutorials" => [
"Getting Started" => "tutorials/getting_started.md",
"Introduction to Modeling in Gen" => "tutorials/modeling_in_gen.md",
"Basics of MCMC and MAP Inference" => "tutorials/mcmc_map.md",
"Debugging Models with Enumeration" => "tutorials/enumerative.md",
"Object Tracking with SMC" => "tutorials/smc.md",
"Variational Inference in Gen" => "tutorials/vi.md",
"Learning Generative Functions" => "tutorials/learning_gen_fns.md",
Expand Down
Binary file added docs/src/assets/example-inference.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ Learn how to use Gen by following these tutorials:
Pages = [
"tutorials/getting_started.md",
"tutorials/modeling_in_gen.md",
"tutorials/mcmc_map.md",
"tutorials/enumerative.md",
"tutorials/smc.md",
"tutorials/vi.md",
"tutorials/scaling_with_sml.md",
"tutorials/learning_gen_fns.md"
]
Expand Down
892 changes: 892 additions & 0 deletions docs/src/tutorials/enumerative.md

Large diffs are not rendered by default.

Loading
Loading