-
Notifications
You must be signed in to change notification settings - Fork 4
/
error.py
20 lines (19 loc) · 1008 Bytes
/
error.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
global errors
errors = {
'ds_config':'Dataset configuration error',
'estimator_config':'Estimator configuration error',
'knn_config':'Knn configuration error',
'dt_config':'Decision tree configuration error',
'preprocess_config':'Preprocess configuration error',
'modelselection_config':'Cross-validation configuration error',
'missing_lower_limit':'Missing lower limit in .json file',
'missing_upper_limit':'Missing upper limit in .json file',
'output_config':'Output configuration error',
'output_permission': 'Could not export the files. There could be an open file, or dir in File Explorer',
'ann_config':'Neural network configuration error',
'unknown_scoring_attribute':'Scoring attribute unknown for this estimator: ',
'predict_config':'Predict configuration error',
'tscv_config':'TSCV configuration error',
'tripleES_wrong_nsplits' : 'n_splits is too high',
'miss_n_preds' : 'n_preds parameter is needed for predicting a time series'
}