-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathorion_lstmdt.json
More file actions
84 lines (84 loc) · 2.74 KB
/
orion_lstmdt.json
File metadata and controls
84 lines (84 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"primitives": [
"mlstars.custom.timeseries_preprocessing.time_segments_aggregate",
"sklearn.impute.SimpleImputer",
"sklearn.preprocessing.MinMaxScaler",
"mlstars.custom.timeseries_preprocessing.rolling_window_sequences",
"keras.Sequential.LSTMTimeSeriesRegressor",
"orion.primitives.timeseries_errors.regression_errors",
"orion.primitives.timeseries_anomalies.find_anomalies"
],
"init_params": {
"mlstars.custom.timeseries_preprocessing.time_segments_aggregate#1": {
"time_column": "timestamp",
"interval": 21600,
"method": "mean"
},
"sklearn.preprocessing.MinMaxScaler#1": {
"feature_range": [
-1,
1
]
},
"mlstars.custom.timeseries_preprocessing.rolling_window_sequences#1": {
"target_column": 0,
"window_size": 250
},
"keras.Sequential.LSTMTimeSeriesRegressor": {
"epochs": 35
},
"orion.primitives.timeseries_anomalies.find_anomalies#1": {
"window_size_portion": 0.33,
"window_step_size_portion": 0.1,
"fixed_threshold": true
}
},
"input_names": {
"orion.primitives.timeseries_anomalies.find_anomalies#1": {
"index": "target_index"
}
},
"output_names": {
"keras.Sequential.LSTMTimeSeriesRegressor#1": {
"y": "y_hat"
}
},
"outputs": {
"default": [
{
"name": "events",
"variable": "orion.primitives.timeseries_anomalies.find_anomalies#1.y"
}
],
"visualization": [
{
"name": "X_raw",
"variable": "sklearn.impute.SimpleImputer#1.X"
},
{
"name": "raw_index",
"variable": "mlstars.custom.timeseries_preprocessing.time_segments_aggregate#1.index"
},
{
"name": "X_nm",
"variable": "sklearn.preprocessing.MinMaxScaler#1.X"
},
{
"name": "target_index",
"variable": "mlstars.custom.timeseries_preprocessing.rolling_window_sequences#1.target_index"
},
{
"name": "y",
"variable": "mlstars.custom.timeseries_preprocessing.rolling_window_sequences#1.y"
},
{
"name": "y_hat",
"variable": "keras.Sequential.LSTMTimeSeriesRegressor#1.y_hat"
},
{
"name": "es",
"variable": "orion.primitives.timeseries_errors.regression_errors#1.errors"
}
]
}
}