stanimirovb commited on
Commit
ba25596
·
verified ·
1 Parent(s): 1c51725

experiment

Browse files
Files changed (1) hide show
  1. app.py +13 -3
app.py CHANGED
@@ -1,7 +1,17 @@
1
  import gradio as gr
 
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
 
 
 
 
5
 
6
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
 
 
 
 
 
7
  iface.launch()
 
1
  import gradio as gr
2
+ import numpy as np
3
 
4
+ def on_submit(img):
5
+ img = img['composite']
6
+ print(img.shape)
7
+ print(img.dtype)
8
+ print(img[:3, :3])
9
+ return f"Sum: {np.sum(img)}"
10
 
11
+ iface = gr.Interface(
12
+ title = "LeNet",
13
+ fn = on_submit,
14
+ inputs=gr.Sketchpad(image_mode='P'),
15
+ outputs=gr.Label(),
16
+ )
17
  iface.launch()