anonymous5378 commited on
Commit
9cfd190
·
verified ·
1 Parent(s): 4b69a05

Update default values

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -58,11 +58,11 @@ demo = gr.Interface(
58
  lines = 2,
59
  ),
60
  gr.Dropdown(
61
- ["End2End", "Pipeline", "Multitask"], value=["End2End"], multiselect=False, label="AVG Approach", info="Select type of AVG approach."),
62
 
63
- gr.Radio(["T5-small", "T5-base", "T5-large", "Bart-base", "Bart-large"], value=['T5-small'], label="Base Model", info="Select base model."),
64
 
65
- gr.Radio(["AE-110K", "OA-Mine"], value=["AE-110K"], label="Dataset", info="Select dataset."),
66
 
67
  gr.Slider(1, 10, value=3, step=1, label="Number of Beams", info="Degree of exploration at inference.")
68
  ],
 
58
  lines = 2,
59
  ),
60
  gr.Dropdown(
61
+ ["End2End", "Pipeline", "Multitask"], value="End2End", multiselect=False, label="AVG Approach", info="Select type of AVG approach."),
62
 
63
+ gr.Radio(["T5-small", "T5-base", "T5-large", "Bart-base", "Bart-large"], value='T5-small', label="Base Model", info="Select base model."),
64
 
65
+ gr.Radio(["AE-110K", "OA-Mine"], value="AE-110K", label="Dataset", info="Select dataset."),
66
 
67
  gr.Slider(1, 10, value=3, step=1, label="Number of Beams", info="Degree of exploration at inference.")
68
  ],