From 447b26ebf74a8ddaeb878f42476941ba46f5fba8 Mon Sep 17 00:00:00 2001 From: Shamal Date: Fri, 21 Jun 2024 17:38:21 +0530 Subject: [PATCH] AttributeError: np.float_ fixed --- python/prophet/forecaster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/prophet/forecaster.py b/python/prophet/forecaster.py index 12caabf..4616bb5 100644 --- a/python/prophet/forecaster.py +++ b/python/prophet/forecaster.py @@ -456,7 +456,7 @@ class Prophet(object): dates: pd.Series, period: Union[int, float], series_order: int, - ) -> NDArray[np.float_]: + ) -> NDArray[np.float64]: """Provides Fourier series components with the specified frequency and order.