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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
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
- start_index = domain_bounds['start'][0] - 1
8
- end_index = domain_bounds['end'][0] - 1
 
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([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).",
 
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).",