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

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -0
app.py ADDED
@@ -0,0 +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()