import gradio as gr title = "XLM-RoBERTa" description = "Gradio Demo for XLM-RoBERTa. To use it, simply add your text, or click one of the examples to load them. Read more at the links below." article = "

Unsupervised Cross-lingual Representation Learning at Scale

" examples = [ ["Hello I'm a model."] ] gr.Interface.load("huggingface/xlm-roberta-base", inputs=gr.inputs.Textbox(lines=5, label="Input Text"),title=title,description=description,article=article, examples=examples).launch(enable_queue=True)