Skip to content

Commit

Permalink
Update main_M4.py
Browse files Browse the repository at this point in the history
  • Loading branch information
OrigamiSL authored Dec 5, 2023
1 parent 5111efc commit 0f9ba73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main_M4.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@

smape = np.asarray(smape_total)
owa = np.asarray(owa_total)
avg_smape = np.min(smape)
avg_smape = np.mean(smape)
std_smape = np.std(smape)
avg_owa = np.min(owa)
avg_owa = np.mean(owa)
std_owa = np.std(owa)

print('|Mean|smape:{}, owa:{}|Std|smape:{}, owa:{}'.format(avg_smape, avg_owa, std_smape, std_owa))
Expand Down

0 comments on commit 0f9ba73

Please sign in to comment.