Isabel Gwara commited on
Commit
268e4c6
·
1 Parent(s): e39233a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -90,8 +90,8 @@ def get_feat():
90
  idx = feats.index(max_val)
91
  return data.columns[idx]
92
 
93
- acc = str(round(metrics.accuracy_score(y_test, y_pred) * 100, 1)) + '%**'
94
- most_imp_feat = get_feat() + "**"
95
  # info = get_article(acc, most_imp_feat)
96
 
97
 
 
90
  idx = feats.index(max_val)
91
  return data.columns[idx]
92
 
93
+ acc = str(round(metrics.accuracy_score(y_test, y_pred) * 100, 1))
94
+ most_imp_feat = get_feat()
95
  # info = get_article(acc, most_imp_feat)
96
 
97