osanseviero HF staff commited on
Commit
69dbcee
1 Parent(s): 5fdc86f

Create app.py

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