Skip to content

Commit

Permalink
refactor: change default predictions to True
Browse files Browse the repository at this point in the history
  • Loading branch information
butterman0 committed Feb 18, 2025
1 parent 7cdd900 commit a0501fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pymc_extras/model_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ def predict(
self,
X_pred: np.ndarray | pd.DataFrame | pd.Series,
extend_idata: bool = True,
predictions: bool = False,
predictions: bool = True,
**kwargs,
) -> np.ndarray:
"""
Expand Down Expand Up @@ -704,7 +704,7 @@ def predict_posterior(
X_pred: np.ndarray | pd.DataFrame | pd.Series,
extend_idata: bool = True,
combined: bool = True,
predictions: bool = False,
predictions: bool = True,
**kwargs,
) -> xr.DataArray:
"""
Expand Down

0 comments on commit a0501fe

Please sign in to comment.