Spaces:
Sleeping
Sleeping
elibrowne
commited on
Commit
·
e26395e
1
Parent(s):
b7408e6
State?
Browse files
app.py
CHANGED
@@ -261,7 +261,7 @@ with gr.Blocks(theme = theme) as user_eval:
|
|
261 |
def next_p(e0, e1, e2, e3, cur_step, mode, cr):
|
262 |
step = cur_step + 1
|
263 |
# Add user data to the current response
|
264 |
-
print(cr.values())
|
265 |
cr["e5_scores"].append([e0, e1, e2, e3])
|
266 |
# Next item
|
267 |
if step >= len(current_question["top10_e5"]): # should always be 10 (DEBUG: >= to avoid out of bounds)
|
|
|
261 |
def next_p(e0, e1, e2, e3, cur_step, mode, cr):
|
262 |
step = cur_step + 1
|
263 |
# Add user data to the current response
|
264 |
+
print(list(cr.values())[0])
|
265 |
cr["e5_scores"].append([e0, e1, e2, e3])
|
266 |
# Next item
|
267 |
if step >= len(current_question["top10_e5"]): # should always be 10 (DEBUG: >= to avoid out of bounds)
|