-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from ReactiveBayes/new-lin-reg
Add Binomial Regression example
- Loading branch information
Showing
8 changed files
with
496 additions
and
1 deletion.
There are no files selected for viewing
471 changes: 471 additions & 0 deletions
471
examples/Basic Examples/Bayesian Binomial Regression/Bayesian Binomial Regression.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
examples/Basic Examples/Bayesian Binomial Regression/Project.toml
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,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
15
examples/Basic Examples/Bayesian Binomial Regression/meta.jl
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,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", | ||
] | ||
) |
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...yesian Linear Regression Tutorial/meta.jl → ...amples/Bayesian Linear Regression/meta.jl
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