更改预警类型字段

This commit is contained in:
workpc 2024-11-19 13:48:55 +08:00
parent 52113fb5e5
commit 6050f47242
4 changed files with 5 additions and 3 deletions

View File

@ -159,7 +159,7 @@ warning_data = {
"funcModule":'原油特征停更预警', "funcModule":'原油特征停更预警',
"funcOperation":'原油特征停更预警', "funcOperation":'原油特征停更预警',
"data":{ "data":{
'WARNING_TYPE_NAME':'特征数据停更预警test', 'WARNING_TYPE_NAME':'特征数据停更预警',
'WARNING_CONTENT':'', 'WARNING_CONTENT':'',
'WARNING_DATE':'' 'WARNING_DATE':''
} }
@ -181,7 +181,7 @@ warning_data = {
### 开关 ### 开关
is_train = True # 是否训练 is_train = True # 是否训练
is_debug = False # 是否调试 is_debug = False # 是否调试
is_eta = True # 是否使用eta接口 is_eta = False # 是否使用eta接口
is_timefurture = True # 是否使用时间特征 is_timefurture = True # 是否使用时间特征
is_fivemodels = False # 是否使用之前保存的最佳的5个模型 is_fivemodels = False # 是否使用之前保存的最佳的5个模型
is_edbcode = False # 特征使用edbcoding列表中的 is_edbcode = False # 特征使用edbcoding列表中的

Binary file not shown.

Binary file not shown.

View File

@ -138,7 +138,7 @@ def upload_warning_info(last_update_times_df,y_last_update_time):
if len(warning_data_df) > 0: if len(warning_data_df) > 0:
content = '原油特征指标预警信息:\n\n' content = '原油特征指标预警信息:\n\n'
warning_data_df = warning_data_df.sort_values(by='停更周期',ascending=False) warning_data_df = warning_data_df.sort_values(by='停更周期',ascending=False)
fixed_length = 30 fixed_length = 20
warning_data_df['特征名称'] = warning_data_df['特征名称'].str.replace(" ", "") warning_data_df['特征名称'] = warning_data_df['特征名称'].str.replace(" ", "")
content = warning_data_df.to_string(index=False, col_space=fixed_length) content = warning_data_df.to_string(index=False, col_space=fixed_length)
@ -194,6 +194,8 @@ def create_feature_last_update_time(df):
except KeyError: except KeyError:
time_diff = 0 time_diff = 0
early_warning_date = end_time early_warning_date = end_time
continue
values = values + [time_diff,early_warning_date,stop_update_period] values = values + [time_diff,early_warning_date,stop_update_period]
last_update_times_df.loc[len(last_update_times_df)] = values last_update_times_df.loc[len(last_update_times_df)] = values