Jonathan Hugenschmidt
Jonathan Hugenschmidt
## Reference Issues/PRs Fixes #205 ### Summary This pull request introduces the initial implementation of the `lags=None` feature, which currently only functions with the `strategy="recursive"` setting. If this approach meets...
**Description:** I am proposing an enhancement for the `Forecaster` class in the `functime` library, specifically to support setting `lags=0` in classes that inherit from `Forecaster`, such as `linear_model`. Currently, it...
**Background and Problem Statement** Incorporating economic data into models is often challenging, particularly in deciding which features to include. This decision-making process can benefit from a more standardized and automated...
Fixes #227 ## What does this implement/fix? Explain your changes. This pull request resolves an issue in the `transform_new` function of the scale transformer module, where an error occurred during...
Fixes #225 ## Summary Changes precision from float32 to float64 for conversion from polars DataFrame to numpy ndarray
**Describe the bug** The use of `float32` precision in the `X_to_numpy` and `y_to_numpy` functions leads to numerical problems when fitting the elastic_net_cv forecaster. This reduced precision causes a ValueError in...
**Describe the bug** The `transform_new` function of the scale transformer in the functime preprocessing module fails during execution. This issue arises when the function attempts to join the `X` DataFrame...