Spaces:
Runtime error
Runtime error
| 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() | |