Spaces:
Runtime error
Runtime error
pwilczewski
commited on
Commit
·
b9d1dbd
1
Parent(s):
4eff4df
ImageNet test
Browse files
app.py
CHANGED
@@ -1,15 +1,10 @@
|
|
1 |
-
# -*- coding: utf-8 -*-
|
2 |
-
"""
|
3 |
-
Created on Tue Jan 24 18:17:06 2023
|
4 |
-
|
5 |
-
@author: Paul
|
6 |
-
"""
|
7 |
|
8 |
import gradio as gr
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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()
|