pwilczewski commited on
Commit
b9d1dbd
·
1 Parent(s): 4eff4df

ImageNet test

Browse files
Files changed (1) hide show
  1. app.py +8 -13
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
- def greet(name):
11
- return "Hello " + name + "!!"
12
-
13
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
14
- iface.launch()
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()