Update app.py
Browse files
app.py
CHANGED
@@ -4,8 +4,9 @@ import pandas as pd
|
|
4 |
def topn_tokens(sequence, domain_bounds, n):
|
5 |
example_dict = {}
|
6 |
chars = list(sequence)
|
7 |
-
|
8 |
-
|
|
|
9 |
|
10 |
for i in range(len(sequence)):
|
11 |
if start_index <= i <= end_index:
|
@@ -24,7 +25,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).",
|
|
|
4 |
def topn_tokens(sequence, domain_bounds, n):
|
5 |
example_dict = {}
|
6 |
chars = list(sequence)
|
7 |
+
# Convert to integer after extracting from domain_bounds
|
8 |
+
start_index = int(domain_bounds['start'][0]) - 1
|
9 |
+
end_index = int(domain_bounds['end'][0]) - 1
|
10 |
|
11 |
for i in range(len(sequence)):
|
12 |
if start_index <= i <= end_index:
|
|
|
25 |
row_count=(1, "fixed"),
|
26 |
col_count=(2, "fixed"),
|
27 |
),
|
28 |
+
gr.Dropdown([str(i) for i in range(1, 21)]), # Dropdown with numbers from 1 to 20 as strings
|
29 |
],
|
30 |
outputs="dataframe",
|
31 |
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).",
|