5cf5457 409a8a3 5cf5457
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr from BpeTokenizer import bpe_tokenizer iface = gr.Interface( fn = bpe_tokenizer, inputs=[ gr.Textbox(label="SMILES"), ], outputs=["text", "text"] ) iface.launch()