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

docs: Update model_builder.py to resolve warning in documentation build #797

Merged
merged 1 commit into from
Jun 30, 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
8 changes: 4 additions & 4 deletions pymc_marketing/model_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ def predict(
for each input row is the expected output value, computed as the mean of MCMC samples.
Parameters
---------
----------
X_pred : array-like if sklearn is available, otherwise array, shape (n_pred, n_features)
The input data used for prediction.
extend_idata : Boolean determining whether the predictions should be added to inference data object.
Expand Down Expand Up @@ -553,7 +553,7 @@ def sample_prior_predictive(
Sample from the model's prior predictive distribution.
Parameters
---------
----------
X_pred : array, shape (n_pred, n_features)
The input data used for prediction using prior distribution.
samples : int
Expand Down Expand Up @@ -605,7 +605,7 @@ def sample_posterior_predictive(
Sample from the model's posterior predictive distribution.
Parameters
---------
----------
X_pred : array, shape (n_pred, n_features)
The input data used for prediction using prior distribution..
extend_idata : Boolean determining whether the predictions should be added to inference data object.
Expand Down Expand Up @@ -687,7 +687,7 @@ def predict_posterior(
Generate posterior predictive samples on unseen data.
Parameters
---------
----------
X_pred : array-like if sklearn is available, otherwise array, shape (n_pred, n_features)
The input data used for prediction.
extend_idata : Boolean determining whether the predictions should be added to inference data object.
Expand Down
Loading