LucyintheSky commited on
Commit
21ea9ec
·
verified ·
1 Parent(s): 079c515

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
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, inputs=gr.Image(type='filepath'), outputs="text")
 
 
 
 
 
 
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()