Rodrigo_Cobo
commited on
Commit
·
93ce85d
1
Parent(s):
23e9852
testing
Browse files
app.py
CHANGED
@@ -1,7 +1,14 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
def greet(name):
|
4 |
-
return "Hello " + name + "!!"
|
5 |
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
iface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
|
|
|
|
3 |
|
4 |
+
def predict(image):
|
5 |
+
predictions = image
|
6 |
+
return {image}
|
7 |
+
|
8 |
+
iface = gr.Interface(
|
9 |
+
predict,
|
10 |
+
inputs=gr.inputs.Image(label="Upload hot dog candidate", type="filepath"),
|
11 |
+
outputs=gr.outputs,
|
12 |
+
title="Hot Dog? Or Not?",
|
13 |
+
)
|
14 |
iface.launch()
|