mirror of
https://github.com/webclinic017/drift.git
synced 2026-07-29 03:37:45 +00:00
79d84cf0a3
* feat(Model): added own `Model` class, SkLearnModel wrapper and StaticMomentumModel * fix(Tests): added missing Model variable * fix(Tests): added missing clone method()
7 lines
185 B
Python
7 lines
185 B
Python
from typing import Callable, Union
|
|
import pandas as pd
|
|
|
|
|
|
Period = int
|
|
IsLogReturn = bool
|
|
FeatureExtractor = Callable[[pd.DataFrame, Period, IsLogReturn], Union[pd.DataFrame, pd.Series]] |