Spaces:
Runtime error
Runtime error
Commit
·
f6799be
1
Parent(s):
5005732
fixed title
Browse files
app.py
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
description = "BigGAN text-to-image demo."
|
|
|
|
| 3 |
interface = gr.Interface.load("huggingface/osanseviero/BigGAN-deep-128",
|
| 4 |
description=description,
|
|
|
|
| 5 |
examples=[["american robin"]]
|
| 6 |
)
|
| 7 |
interface.launch()
|
|
|
|
| 1 |
+
|
| 2 |
import gradio as gr
|
| 3 |
description = "BigGAN text-to-image demo."
|
| 4 |
+
title = "BigGAN ImageNet"
|
| 5 |
interface = gr.Interface.load("huggingface/osanseviero/BigGAN-deep-128",
|
| 6 |
description=description,
|
| 7 |
+
title = title,
|
| 8 |
examples=[["american robin"]]
|
| 9 |
)
|
| 10 |
interface.launch()
|