taesiri commited on
Commit
a7efc81
1 Parent(s): 3d77ade
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -144,7 +144,7 @@ def load_sample(data, current_index):
144
 
145
  rounded_up_score = math.ceil(top_1_score)
146
  rounded_up_score = int(rounded_up_score)
147
- question = q_template.format(top_1, str(rounded_up_score), top_1)
148
 
149
  accept_reject = current_datapoint["Accept/Reject"]
150
 
 
144
 
145
  rounded_up_score = math.ceil(top_1_score)
146
  rounded_up_score = int(rounded_up_score)
147
+ question = q_template.format(top_1.replace('_',' '), str(rounded_up_score), top_1.replace('_',' '))
148
 
149
  accept_reject = current_datapoint["Accept/Reject"]
150