Skip to content

Commit fd17931

Browse files
committed
refactor: change default predictions to True
1 parent e86992b commit fd17931

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymc_extras/model_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ def predict(
530530
self,
531531
X_pred: np.ndarray | pd.DataFrame | pd.Series,
532532
extend_idata: bool = True,
533-
predictions: bool = False,
533+
predictions: bool = True,
534534
**kwargs,
535535
) -> np.ndarray:
536536
"""
@@ -704,7 +704,7 @@ def predict_posterior(
704704
X_pred: np.ndarray | pd.DataFrame | pd.Series,
705705
extend_idata: bool = True,
706706
combined: bool = True,
707-
predictions: bool = False,
707+
predictions: bool = True,
708708
**kwargs,
709709
) -> xr.DataArray:
710710
"""

0 commit comments

Comments
 (0)