Kseniia-Kholina commited on
Commit
9fd8384
·
verified ·
1 Parent(s): d8c7623

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ demo = gr.Interface(
24
  row_count=(1, "fixed"),
25
  col_count=(2, "fixed"),
26
  ),
27
- gr.Dropdown([str(i) for i in range(1, 21)]), # Dropdown with numbers from 1 to 20
28
  ],
29
  outputs="dataframe",
30
  description="Choose a number between 1-20 to predict n tokens for each position. Choose the start and end index of the domain of interest (indexing starts at 1).",
 
24
  row_count=(1, "fixed"),
25
  col_count=(2, "fixed"),
26
  ),
27
+ gr.Dropdown([int(i) for i in range(1, 21)]), # Dropdown with numbers from 1 to 20
28
  ],
29
  outputs="dataframe",
30
  description="Choose a number between 1-20 to predict n tokens for each position. Choose the start and end index of the domain of interest (indexing starts at 1).",