Spaces:
Sleeping
Sleeping
add description
Browse files
app.py
CHANGED
@@ -53,9 +53,10 @@ demo = gr.Interface(
|
|
53 |
inputs=[gr.Image(type="pil"), "text", gr.Slider(0, 1, value=0.2)],
|
54 |
outputs="annotatedimage",
|
55 |
title="OWL 🤝 SAM",
|
56 |
-
|
57 |
examples=[
|
58 |
["./cats.png", "cat", 0.1],
|
59 |
],
|
|
|
60 |
)
|
61 |
demo.launch(debug=True)
|
|
|
53 |
inputs=[gr.Image(type="pil"), "text", gr.Slider(0, 1, value=0.2)],
|
54 |
outputs="annotatedimage",
|
55 |
title="OWL 🤝 SAM",
|
56 |
+
description=description,
|
57 |
examples=[
|
58 |
["./cats.png", "cat", 0.1],
|
59 |
],
|
60 |
+
cache_examples=True
|
61 |
)
|
62 |
demo.launch(debug=True)
|