Skip to content

Commit

Permalink
Change to beta_geo model doc, where mode_config had incorrect diction…
Browse files Browse the repository at this point in the history
…ary keys (r instead of r_prior etc.)
  • Loading branch information
AlexanderDatashift committed Sep 15, 2023
1 parent 500251c commit d865b99
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pymc_marketing/clv/models/beta_geo.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ class BetaGeoModel(CLVModel):
"recency":[30.73, 1.72, 0., 0., ...]
}),
model_config={
"r": pm.Gamma.dist(alpha=0.1, beta=0.1),
"alpha": pm.Gamma.dist(alpha=0.1, beta=0.1),
"a": pm.Gamma.dist(alpha=0.1, beta=0.1),
"b": pm.Gamma.dist(alpha=0.1, beta=0.1),
"r_prior": pm.Gamma.dist(alpha=0.1, beta=0.1),
"alpha_prior": pm.Gamma.dist(alpha=0.1, beta=0.1),
"a_prior": pm.Gamma.dist(alpha=0.1, beta=0.1),
"b_prior": pm.Gamma.dist(alpha=0.1, beta=0.1),
},
sampler_config={
"draws": 1000,
Expand Down

0 comments on commit d865b99

Please sign in to comment.