Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some ParetoNBDModel docstring typos #731

Merged
merged 3 commits into from
Jun 11, 2024
Merged
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
6 changes: 3 additions & 3 deletions pymc_marketing/clv/models/pareto_nbd.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ def local_reduce_max_num_iters_hyp2f1_grad(fgraph, node):
class ParetoNBDModel(CLVModel):
"""Pareto Negative Binomial Model (Pareto/NBD).

Model for continuous, non-contractual customers, first introduced by Schmittlein, et al. [1]_,
with additional derivations and predictive methods by Hardie & Fader [2]_ [3]_ [4]_.
Model for continuous, non-contractual customers, first introduced by Schmittlein et al. [1]_,
with additional derivations and predictive methods by Hardie & Fader [2]_ [3]_ [4]_ [5]_.

The Pareto/NBD model assumes the time duration a customer is active follows a Gamma distribution,
and time between purchases is also Gamma-distributed while the customer is still active.
Expand Down Expand Up @@ -96,7 +96,7 @@ class ParetoNBDModel(CLVModel):
* `purchase_covariates_prior`: Coefficients for purchase rate covariates; defaults to `Normal(0, 3)`
* `dropout_covariates_prior`: Coefficients for dropout covariates; defaults to `Normal.dist(0, 3)`
* `purchase_covariate_cols`: List containing column names of covariates for customer purchase rates.
* `dropout_covariate_cols:`: List containing column names of covariates for customer dropouts.
* `dropout_covariate_cols`: List containing column names of covariates for customer dropouts.

If not provided, the model will use default priors specified in the `default_model_config` class attribute.
sampler_config: dict, optional
Expand Down
Loading