demand-forecasting / src /avtive_models.py
zhang qiao
Upload folder using huggingface_hub
9ddee9f
raw
history blame contribute delete
406 Bytes
'''
'ceif_plus' : 2023 Sep. currently the model is under review, so not recommended to use this mode - by idsc
'''
active_models = {
'intermittent':
[
'prophet_plus',
'ceif_plus'
],
'continuous':
[
'fft_plus',
'holt_winters_plus',
'auto_arima_plus',
'prophet',
'prophet_plus',
]
}