Spaces:
Sleeping
Sleeping
update
Browse files
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 |
|