mpolanco commited on
Commit
ac26a06
1 Parent(s): 39c1ebe

Create new file

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from gradio import inputs
3
+ description = "Shakespeare generation with GPT-2"
4
+ interface = gr.Interface.load("huggingface/lewtun/distilgpt2-finetuned-shakespeare",
5
+ title = "Shakespeare Generation with GPT-2",
6
+ inputs = [
7
+ gr.inputs.Textbox(lines=7, label="Story"),
8
+ ],
9
+ description=description,
10
+ examples=[["HAMLET: To be or not to be"]]
11
+ )
12
+ interface.launch()