merve HF staff commited on
Commit
762fe16
1 Parent(s): cea1b53

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import gradio as gr
3
+ description = "BigGAN text-to-image demo."
4
+ article = ""
5
+ interface = gr.Interface.load("huggingface/osanseviero/BigGAN-deep-128",
6
+ description=description,
7
+ examples=["american robin"]
8
+ )
9
+ interface.launch()