elibrowne commited on
Commit
0bdb316
·
1 Parent(s): 341ec3c
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -261,8 +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)
265
- print(cr.keys())
266
  cr["e5_scores"].append([e0, e1, e2, e3])
267
  # Next item
268
  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(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)