David Driscoll
commited on
Commit
·
ea6f081
1
Parent(s):
6754f93
Bug fix, examples list
Browse files
app.py
CHANGED
@@ -303,7 +303,7 @@ facemesh_interface = gr.Interface(
|
|
303 |
<button onclick="document.getElementById('confidence_slider').value = 0.5; document.getElementById('confidence_slider').dispatchEvent(new Event('change'))" style="margin-left:10px;">Reset to Default</button>
|
304 |
</div>
|
305 |
""",
|
306 |
-
examples=SAMPLE_IMAGES,
|
307 |
live=False
|
308 |
)
|
309 |
|
|
|
303 |
<button onclick="document.getElementById('confidence_slider').value = 0.5; document.getElementById('confidence_slider').dispatchEvent(new Event('change'))" style="margin-left:10px;">Reset to Default</button>
|
304 |
</div>
|
305 |
""",
|
306 |
+
examples=[[img, 0.5] for img in SAMPLE_IMAGES],
|
307 |
live=False
|
308 |
)
|
309 |
|