wassemgtk commited on
Commit
0dc240c
1 Parent(s): 3269ca5

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from sentencepiece import SentencePieceProcessor
2
+ import gradio as gr
3
+
4
+ sp = SentencePieceProcessor(model_file="tokenizer.model")
5
+
6
+ def tokenize(input_text):
7
+ tokens = sp.EncodeAsIds(input_text)
8
+ return f"Number of tokens: {len(tokens)}"
9
+
10
+ iface = gr.Interface(fn=tokenize, inputs=gr.inputs.Textbox(lines=7), outputs="text")
11
+ iface.launch()