forked from waico/tsad
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
85a8f0c
commit 50f97a5
Showing
6 changed files
with
282 additions
and
503 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,26 @@ | ||
from tsad.tasks.eda import HighLevelDatasetAnalysisTask, TimeDiscretizationTask | ||
from tsad.tasks.eda import FindNaNTask, EquipmentDowntimeTask | ||
from tsad.tasks.preprocess import ScalingTask, ValueRangeProcessingTask, ResampleProcessingTask | ||
from tsad.tasks.preprocess import FeatureProcessingTask, SplitByNaNTask, PrepareSeqSamplesTask | ||
from tsad.tasks.deep_learning_anomaly_detection import ResidualAnomalyDetectionTask | ||
from tsad.tasks.deep_learning_forecasting import DeepLeaningTimeSeriesForecastingTask | ||
|
||
from tsad.base.pipeline import Pipeline | ||
from tsad.base.wrappers import SklearnWrapper | ||
|
||
from sklearn.preprocessing import StandardScaler | ||
|
||
StandardScalerTask = SklearnWrapper(StandardScaler) | ||
|
||
multivatiateTimeSeriesDeepLearningForecastingTaskSet = [ | ||
HighLevelDatasetAnalysisTask(), | ||
TimeDiscretizationTask(freq_tobe_approach='most_frequent'), | ||
FindNaNTask(), | ||
EquipmentDowntimeTask(), | ||
ResampleProcessingTask(), | ||
StandardScalerTask(), | ||
FeatureProcessingTask(), | ||
SplitByNaNTask(), | ||
PrepareSeqSamplesTask(len_seq=10), | ||
DeepLeaningTimeSeriesForecastingTask(), | ||
] |
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