Cartinoe5930 commited on
Commit
1fd5965
·
1 Parent(s): 5a557ba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -252,7 +252,7 @@ with gr.Blocks() as demo:
252
 
253
  with gr.Tab("Math"):
254
  math_cot = gr.Checkbox(label="CoT", info="If you want to see CoT result, please check the box.")
255
- math_question_list = gr.Dropdown(choices=math_questions, value=math_questions[0], label="Math Question")
256
 
257
  with gr.Column():
258
  with gr.Row(elem_id="model1_response"):
@@ -287,7 +287,7 @@ with gr.Blocks() as demo:
287
 
288
  with gr.Tab("GSM8K"):
289
  gsm_cot = gr.Checkbox(label="CoT", info="If you want to see CoT result, please check the box.")
290
- gsm_question_list = gr.Dropdown(choices=gsm_questions, value=gsm_questions[0], label="GSM8K Question")
291
 
292
  with gr.Column():
293
  with gr.Row(elem_id="model1_response"):
@@ -322,7 +322,7 @@ with gr.Blocks() as demo:
322
 
323
  with gr.Tab("MMLU"):
324
  mmlu_cot = gr.Checkbox(label="CoT", info="If you want to see CoT result, please check the box.")
325
- mmlu_question_list = gr.Dropdown(choices=mmlu_questions, value=mmlu_questions[0], label="MMLU Question")
326
 
327
  with gr.Column():
328
  with gr.Row(elem_id="model1_response"):
 
252
 
253
  with gr.Tab("Math"):
254
  math_cot = gr.Checkbox(label="CoT", info="If you want to see CoT result, please check the box.")
255
+ math_question_list = gr.Dropdown(math_questions, label="Math Question")
256
 
257
  with gr.Column():
258
  with gr.Row(elem_id="model1_response"):
 
287
 
288
  with gr.Tab("GSM8K"):
289
  gsm_cot = gr.Checkbox(label="CoT", info="If you want to see CoT result, please check the box.")
290
+ gsm_question_list = gr.Dropdown(gsm_questions, label="GSM8K Question")
291
 
292
  with gr.Column():
293
  with gr.Row(elem_id="model1_response"):
 
322
 
323
  with gr.Tab("MMLU"):
324
  mmlu_cot = gr.Checkbox(label="CoT", info="If you want to see CoT result, please check the box.")
325
+ mmlu_question_list = gr.Dropdown(mmlu_questions, label="MMLU Question")
326
 
327
  with gr.Column():
328
  with gr.Row(elem_id="model1_response"):