Spaces:
Runtime error
Runtime error
File size: 604 Bytes
e2aeeda |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
title = "RoBERTa"
description = "Gradio Demo for RoBERTa. 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/1907.11692' target='_blank'>RoBERTa: A Robustly Optimized BERT Pretraining Approach</a></p>"
examples = [
['The goal of life is <mask>.']
]
gr.Interface.load("huggingface/roberta-base", inputs=gr.inputs.Textbox(lines=5, label="Input Text"),title=title,description=description,article=article, examples=examples).launch(enable_queue=True)
|