Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -53,5 +53,11 @@ def predict_features(image_path):
|
|
53 |
def greet(image):
|
54 |
return str(predict_features(image))
|
55 |
|
56 |
-
demo = gr.Interface(fn=greet,
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
demo.launch()
|
|
|
53 |
def greet(image):
|
54 |
return str(predict_features(image))
|
55 |
|
56 |
+
demo = gr.Interface(fn=greet,
|
57 |
+
title='Feature Predict',
|
58 |
+
description="""
|
59 |
+
[Model](https://huggingface.co/LucyintheSky/lucy-feature-prediction)
|
60 |
+
""",
|
61 |
+
inputs=gr.Image(type='filepath'),
|
62 |
+
outputs="text")
|
63 |
demo.launch()
|