Spaces:
Sleeping
Sleeping
saicharan2804
commited on
Commit
•
8975cfc
1
Parent(s):
088e004
Fixed error
Browse files
app.py
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
-
|
3 |
|
4 |
-
def
|
5 |
return name*num
|
6 |
|
7 |
|
8 |
-
iface = gr.Interface(fn=
|
9 |
iface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
from KmerTokenizer import kmer_tokenizer
|
3 |
|
4 |
+
def tem(name, num =3):
|
5 |
return name*num
|
6 |
|
7 |
|
8 |
+
iface = gr.Interface(fn=tem, inputs=["text", "Dropdown" ], outputs="text")
|
9 |
iface.launch()
|