File size: 508 Bytes
8cf4695
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
'''
'ceif_plus' : 2023 Sep. currently the model is under review, so not recommended to use this mode - by idsc
'''

active_models = {
    'intermittent':
        [
            'prophet_i',
            'ceif'
        ],
    'continuous':
        [
            'fft_i',
            # 'holt_winters',
            # 'auto_arima',
            'prophet',  # Original prophet
            'prophet_i',
        ]
}

idsc_models = [
    'prophet_i',
    'ceif',
    'fft_i',
    'holt_winters_i',
    'auto_arima_i'
]