Update app.py
Browse files
app.py
CHANGED
@@ -24,7 +24,7 @@ demo = gr.Interface(
|
|
24 |
row_count=(1, "fixed"),
|
25 |
col_count=(2, "fixed"),
|
26 |
),
|
27 |
-
gr.Dropdown([
|
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).",
|