From Spectre

master
sanginnwoo 2023-01-11 18:02:32 +09:00
parent 261f1d8e95
commit a97dd09a68
1 changed files with 2 additions and 3 deletions

View File

@ -38,8 +38,7 @@ for input_file in input_files:
for i in range(20, 100, 10): for i in range(20, 100, 10):
# 침하 예측을 수행하고 반환값 저장 # 침하 예측을 수행하고 반환값 저장
return_values = settle_prediction_steps_main. \ return_values = settle_prediction_steps_main.run_settle_prediction_from_file(input_file=input_file)
run_settle_prediction(,
# 데이터프레임에 일단 및 다단 성토를 포함한 예측의 에러를 저장 # 데이터프레임에 일단 및 다단 성토를 포함한 예측의 에러를 저장
df_overall.loc[len(df_overall.index)] = [input_file, i, return_values[0], return_values[1], df_overall.loc[len(df_overall.index)] = [input_file, i, return_values[0], return_values[1],
@ -53,4 +52,4 @@ for input_file in input_files:
# 에러 파일을 출력 # 에러 파일을 출력
df_overall.to_csv('error_overall.csv') df_overall.to_csv('error_overall.csv')
df_multi_step.to_csv('error_multi_step.csv') df_multi_step.to_csv('error_multi_step.csv')