-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy patharima.json
60 lines (60 loc) · 1.69 KB
/
arima.json
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
{
"primitives": [
"mlstars.custom.timeseries_preprocessing.time_segments_aggregate",
"sklearn.impute.SimpleImputer",
"sklearn.preprocessing.MinMaxScaler",
"mlstars.custom.timeseries_preprocessing.rolling_window_sequences",
"numpy.reshape",
"statsmodels.tsa.arima_model.Arima",
"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": 100
},
"numpy.reshape#1": {
"newshape": [
-1,
100
]
},
"statsmodels.tsa.arima_model.Arima#1": {
"steps": 10,
"d": 1,
"q": 1,
"p": 1
},
"orion.primitives.timeseries_anomalies.find_anomalies#1": {
"fixed_threshold": true
}
},
"input_names": {
"orion.primitives.timeseries_anomalies.find_anomalies#1": {
"index": "index"
},
"numpy.reshape#1": {
"y": "X"
}
},
"output_names": {
"statsmodels.tsa.arima_model.Arima#1": {
"y": "y_hat"
},
"numpy.reshape#1": {
"y": "X"
}
}
}