Skip to content

Commit

Permalink
Merge pull request #5 from ReactiveBayes/new-lin-reg
Browse files Browse the repository at this point in the history
Add Binomial Regression example
  • Loading branch information
bvdmitri authored Jan 14, 2025
2 parents 313e4b3 + 0752f97 commit 73ec027
Show file tree
Hide file tree
Showing 8 changed files with 496 additions and 1 deletion.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[deps]
LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
ReactiveMP = "a194aa59-28ba-4574-a09c-4a745416d6e3"
RxInfer = "86711068-29c9-4ff7-b620-ae75d7495b3d"
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
StatsPlots = "f3b207a7-027a-5e70-b257-86293d7955fd"
15 changes: 15 additions & 0 deletions examples/Basic Examples/Bayesian Binomial Regression/meta.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
meta = (
title = "Bayesian Binomial Regression",
description = """
An introductory tutorial to Bayesian binomial regression with RxInfer.
Learn how to model binary outcomes using logistic regression with proper Bayesian inference.
The example demonstrates the use of Expectation Propagation (EP) algorithm and Polya-Gamma augmentation.
""",
tags = [
"basic examples",
"regression",
"multivariate",
"expectation propagation",
"polya-gamma",
]
)
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
return (
title = "Bayesian Linear Regression Tutorial",
title = "Bayesian Linear Regression",
description = """
An extensive tutorial on Bayesian linear regression with RxInfer with a lot of examples, including multivariate and hierarchical linear regression.
""",
Expand Down

0 comments on commit 73ec027

Please sign in to comment.