-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into make-formatting-a-separate-action
- Loading branch information
Showing
28 changed files
with
3,711 additions
and
1,021 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "RxInfer" | ||
uuid = "86711068-29c9-4ff7-b620-ae75d7495b3d" | ||
authors = ["Bagaev Dmitry <[email protected]> and contributors"] | ||
version = "3.7.1" | ||
version = "3.8.3" | ||
|
||
[deps] | ||
BayesBase = "b4ee3484-f114-42fe-b91c-797d54a0c67e" | ||
|
@@ -36,13 +36,13 @@ DomainSets = "0.5.2, 0.6, 0.7" | |
ExponentialFamily = "1.5" | ||
ExponentialFamilyProjection = "1.1" | ||
FastCholesky = "1.3.0" | ||
GraphPPL = "~4.3.0" | ||
GraphPPL = "~4.5.0" | ||
LinearAlgebra = "1.9" | ||
MacroTools = "0.5.6" | ||
Optim = "1.0.0" | ||
ProgressMeter = "1.0.0" | ||
Random = "1.9" | ||
ReactiveMP = "~4.4.1" | ||
ReactiveMP = "~4.4.4" | ||
Reexport = "1.2.0" | ||
Rocket = "1.8.0" | ||
Static = "0.8.10, 1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
using RxInfer | ||
using Documenter | ||
using DocumenterMermaid | ||
|
||
## https://discourse.julialang.org/t/generation-of-documentation-fails-qt-qpa-xcb-could-not-connect-to-display/60988 | ||
## https://gr-framework.org/workstations.html#no-output | ||
|
@@ -69,10 +70,13 @@ foreach(vcat(ExamplesOverviewPath, ExamplesCategoriesOverviewPaths)) do path | |
@warn "`$(path)` does not exist. Generating an empty overview. Use the `make examples` command to generate the overview and all examples." | ||
mkpath(dirname(path)) | ||
open(path, "w") do f | ||
write(f, """ | ||
$(isequal(path, ExamplesOverviewPath) ? "# [Examples overview](@id examples-overview)" : "") | ||
The overview is missing. Use the `make examples` command to generate the overview and all examples. | ||
""") | ||
write( | ||
f, | ||
""" | ||
$(isequal(path, ExamplesOverviewPath) ? "# [Examples overview](@id examples-overview)" : "") | ||
The overview is missing. Use the `make examples` command to generate the overview and all examples. | ||
""" | ||
) | ||
end | ||
end | ||
end | ||
|
@@ -82,8 +86,10 @@ ExamplesPages = map(collect(pairs(ExamplesCategoriesPages))) do (label, info) | |
return info.title => info.pages | ||
end | ||
|
||
draft = get(ENV, "DOCS_DRAFT", "false") == "true" | ||
|
||
makedocs(; | ||
draft = false, | ||
draft = draft, | ||
warnonly = false, | ||
modules = [RxInfer], | ||
authors = "Bagaev Dmitry <[email protected]> and contributors", | ||
|
@@ -105,22 +111,16 @@ makedocs(; | |
"Model specification" => "manuals/model-specification.md", | ||
"Constraints specification" => "manuals/constraints-specification.md", | ||
"Meta specification" => "manuals/meta-specification.md", | ||
"Inference specification" => [ | ||
"Overview" => "manuals/inference/overview.md", | ||
"Static inference" => "manuals/inference/static.md", | ||
"Streamline inference" => "manuals/inference/streamlined.md", | ||
"Initialization" => "manuals/inference/initialization.md", | ||
"Auto-updates" => "manuals/inference/autoupdates.md", | ||
"Deterministic nodes" => "manuals/inference/delta-node.md", | ||
"Non-conjugate inference" => "manuals/inference/nonconjugate.md", | ||
"Undefined message update rules" => "manuals/inference/undefinedrules.md" | ||
], | ||
"Inference customization" => [ | ||
"Defining a custom node and rules" => "manuals/customization/custom-node.md", | ||
"Inference results postprocessing" => "manuals/customization/postprocess.md", | ||
], | ||
"Debugging" => "manuals/debugging.md", | ||
"Migration from v2 to v3" => "manuals/migration-guide-v2-v3.md" | ||
"Inference specification" => ["Overview" => "manuals/inference/overview.md", "Static inference" => "manuals/inference/static.md", "Streamline inference" => "manuals/inference/streamlined.md", "Initialization" => "manuals/inference/initialization.md", "Auto-updates" => "manuals/inference/autoupdates.md", "Deterministic nodes" => "manuals/inference/delta-node.md", "Non-conjugate inference" => "manuals/inference/nonconjugate.md", "Undefined message update rules" => "manuals/inference/undefinedrules.md"], | ||
"Inference customization" => ["Defining a custom node and rules" => "manuals/customization/custom-node.md", "Inference results postprocessing" => "manuals/customization/postprocess.md"], | ||
"Debugging" => "manuals/debugging.md", | ||
"Migration from v2 to v3" => "manuals/migration-guide-v2-v3.md", | ||
"Sharp bits of RxInfer" => [ | ||
"Overview" => "manuals/sharpbits/overview.md", | ||
"Rule Not Found Error" => "manuals/sharpbits/rule-not-found.md", | ||
"Stack Overflow in Message Computations" => "manuals/sharpbits/stack-overflow-inference.md", | ||
"Using `=` instead of `:=` for deterministic nodes" => "manuals/sharpbits/usage-colon-equality.md" | ||
] | ||
], | ||
"Library" => [ | ||
"Model construction" => "library/model-construction.md", | ||
|
@@ -131,11 +131,11 @@ makedocs(; | |
"Examples" => [ | ||
"Overview" => "examples/overview.md", # This must be auto-generated with `make examples` | ||
ExamplesPages..., | ||
"External examples" => "contributing/external-examples.md" | ||
"Contribute with examples" => "contributing/examples.md" | ||
], | ||
"Contributing" => [ | ||
"Contribution guide" => "contributing/guide.md", | ||
"Contribution guidelines"=> "contributing/guidelines.md", | ||
"Contribution guidelines" => "contributing/guidelines.md", | ||
"Contributing to the documentation" => "contributing/new-documentation.md", | ||
"Contributing to the examples" => "contributing/new-example.md", | ||
"Publishing a new release" => "contributing/new-release.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# [Contribute with examples](@id examples) | ||
|
||
We welcome examples from the community that showcase RxInfer.jl in action! Whether you're working in machine learning, signal processing, robotics, computational biology, or any other domain - your contributions help others learn and explore probabilistic modeling with RxInfer.jl. | ||
|
||
## Featured Examples | ||
|
||
- **Active Inference with RxInfer.jl** - Dive into the realm of Active Inference guided by [Kobus Esterhuysen](https://www.linkedin.com/in/kobusesterhuysen/) at [Learnable Loop](https://learnableloop.com/#category=RxInfer). | ||
- **Tutorial Series on RxInfer.jl** - Explore a series of engaging tutorial videos on RxInfer.jl's functionalities, presented by [@doggotodjl](https://www.youtube.com/@doggodotjl/search?query=RxInfer). | ||
|
||
!!! note | ||
If you're interested in contributing an example, we'd love to hear from you! Please initiate an issue or start a new discussion on our [GitHub repository](https://github.com/reactivebayes/RxInfer.jl) to get involved. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.