Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
4 |
-
|
|
|
5 |
|
6 |
def predict(image):
|
7 |
predictions = pipeline(image)
|
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
4 |
+
def greet(name):
|
5 |
+
return "What if I told you there was an app on the market.... " + name + "!!"
|
6 |
|
7 |
def predict(image):
|
8 |
predictions = pipeline(image)
|