-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support lag transformations from coreforecast (#265)
- Loading branch information
Showing
19 changed files
with
1,506 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# AUTOGENERATED! DO NOT EDIT! File to edit: ../nbs/compat.ipynb. | ||
|
||
# %% auto 0 | ||
__all__ = [] | ||
|
||
# %% ../nbs/compat.ipynb 1 | ||
try: | ||
import coreforecast.lag_transforms as core_tfms | ||
from coreforecast.grouped_array import GroupedArray as CoreGroupedArray | ||
|
||
from mlforecast.lag_transforms import BaseLagTransform, Lag | ||
|
||
CORE_INSTALLED = True | ||
except ImportError: | ||
core_tfms = None | ||
CoreGroupedArray = None | ||
|
||
class BaseLagTransform: | ||
... | ||
|
||
Lag = None | ||
|
||
CORE_INSTALLED = False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.