elibrowne commited on
Commit
341ec3c
·
1 Parent(s): 99095f4
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -261,8 +261,8 @@ 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
- cr_dummy = cr
265
- print(cr_dummy)
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)
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)