Spaces:
Sleeping
Sleeping
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' |