File size: 898 Bytes
b0e7b5d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
class Config():

    def __init__(self):
        pass

    target = 'demand'

    not_include_features = [
        target,
        'date'
    ]

    cat_features = [
        'product_id',
        'product_application',
        'product_marketing_name',
        'product_main_family',
        'planning_method_latest'
    ]

    # production
    MAIN_TITLE = 'Infineon Product Demand Forecasting System'
    SUB_TITLE = 'Data Analytics in Applications'
    ICON_PATH = 'images/infineon-icon-1.png'

    FORECAST_START_DATE = '01-11-2023'
    FORECAST_END_DATE = '01-07-2024'

    FORECAST_BUTTON_TEXT = 'Predict'

    LINE_PLOT_SELECTBOX_TEXT = 'Filter at product level'
    BAR_PLOT_SELECTBOX_TEXT = 'Filter at category level'
    
    SAVE_CHECKBOX_TEXT = 'Save predictions'
    SAVE_BUTTON_TEXT = 'Apply'
    SAVE_BUTTON_SUCCESS_TEXT = 'File successfully saved'