akhaliq HF staff commited on
Commit
ca94ff5
1 Parent(s): 1d6e526

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ title="RoBERTa"
4
+
5
+ description="Gradio demo for RoBERTa"
6
+
7
+ examples=[["The goal of life is <mask>."]]
8
+
9
+ gr.Interface.load("huggingface/roberta-base",title=title,description=description,examples=examples).launch(enable_queue=True,cache_examples=True)