eagle0504 commited on
Commit
748331b
·
verified ·
1 Parent(s): e0e0ab1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -116,10 +116,6 @@ if submit_button:
116
  """
117
  )
118
 
119
- # Stopping rule
120
- passed_or_not = 1 if '8' in judge_comments else 0
121
- if '8' in judge_comments:
122
- break
123
 
124
  # Collect all responses
125
  list_of_iters.append(iter)
@@ -138,6 +134,11 @@ if submit_button:
138
  with st.expander("See explanation"):
139
  st.table(results_tab)
140
 
 
 
 
 
 
141
  # Checkpoint
142
  iter += 1
143
 
 
116
  """
117
  )
118
 
 
 
 
 
119
 
120
  # Collect all responses
121
  list_of_iters.append(iter)
 
134
  with st.expander("See explanation"):
135
  st.table(results_tab)
136
 
137
+ # Stopping rule
138
+ passed_or_not = 1 if '8' in judge_comments else 0
139
+ if '8' in judge_comments:
140
+ break
141
+
142
  # Checkpoint
143
  iter += 1
144