xlm-mlm-en-2048 / app.py
Ahsen Khaliq
Update app.py
d176fcf
raw history blame
No virus
1.08 kB
import gradio as gr
title = "XLM"
description = "Gradio Demo for XLM. To use it, simply add your text, or click one of the examples to load them. Read more at the links below."
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/1901.07291' target='_blank'>Cross-lingual Language Model Pretraining</a></p>"
examples = [
['Paris is the <special1> of France.','xlm-mlm-en-2048']
]
io1 = gr.Interface.load("huggingface/xlm-mlm-en-2048")
io2 = gr.Interface.load("huggingface/xlm-clm-ende-1024")
def inference(inputtext, model):
if model == "xlm-mlm-en-2048":
outlabel = io1(inputtext)
else:
outlabel = io2(inputtext)
return outlabel
gr.Interface(
inference,
[gr.inputs.Textbox(label="Context",lines=10),gr.inputs.Dropdown(choices=["xlm-mlm-en-2048","xlm-clm-ende-1024"], type="value", default="xlm-mlm-en-2048", label="model")],
[gr.outputs.Label(label="Output")],
examples=examples,
article=article,
title=title,
description=description).launch(enable_queue=True, cache_examples=True)