demand-forecasting / src /active_models.py
zhang qiao
Upload folder using huggingface_hub
8cf4695
raw
history blame contribute delete
508 Bytes
'''
'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'
]