Kseniia-Kholina commited on
Commit
a0ba8b5
·
verified ·
1 Parent(s): be331b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -1,21 +1,21 @@
1
  import gradio as gr
 
2
 
3
  def topn_tokens(sequence, n):
4
- chars = []
5
- for char in sequence:
6
- chars.append(char)
7
- return chars
8
-
9
-
10
  demo = gr.Interface(
11
  topn_tokens,
12
  [
13
  "text",
14
- gr.Dropdown(["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20"]),
15
  ],
16
  "dataframe",
17
  description="Choose a number between 1-20 to display n tokens",
18
  )
19
 
20
  if __name__ == "__main__":
21
- demo.launch()
 
1
  import gradio as gr
2
+ import pandas as pd
3
 
4
  def topn_tokens(sequence, n):
5
+ chars = list(sequence)
6
+ n_column = [n] * len(chars) # Create a column with the chosen integer repeated
7
+ df = pd.DataFrame({'Character': chars, 'N': n_column}) # Create the DataFrame
8
+ return df
9
+
 
10
  demo = gr.Interface(
11
  topn_tokens,
12
  [
13
  "text",
14
+ gr.Dropdown([int(i) for i in range(1, 21)]), # Dropdown with numbers from 1 to 20
15
  ],
16
  "dataframe",
17
  description="Choose a number between 1-20 to display n tokens",
18
  )
19
 
20
  if __name__ == "__main__":
21
+ demo.launch()