File size: 197 Bytes
2918cfd
8975cfc
2918cfd
8975cfc
2cc9210
2918cfd
2cc9210
8975cfc
2918cfd
1
2
3
4
5
6
7
8
9
10
import gradio as gr
from KmerTokenizer import kmer_tokenizer

def tem(name, num =3):
    return name*num


iface = gr.Interface(fn=tem, inputs=["text", "Dropdown" ], outputs="text")
iface.launch()