Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -27,9 +27,9 @@ demo_app = gr.Interface(
|
|
27 |
inputs=inputs,
|
28 |
outputs=gr.outputs.Image(type="filepath", label="Output Image"),
|
29 |
title="Detection of jar lid defects (Yolov7)",
|
30 |
-
description = "App detecting jar lids that are damaged
|
31 |
article = "<p style='text-align: center'><a href='https://www.rrighart.com' target='_blank'>Webpage</a></p> <p style='text-align: center'><a href='https://www.kaggle.com/code/rrighart/detection-of-product-defects-using-yolov7' target='_blank'>Kaggle</a></p>",
|
32 |
-
examples=[['
|
33 |
cache_examples=True,
|
34 |
)
|
35 |
demo_app.launch(debug=False, enable_queue=True)
|
|
|
27 |
inputs=inputs,
|
28 |
outputs=gr.outputs.Image(type="filepath", label="Output Image"),
|
29 |
title="Detection of jar lid defects (Yolov7)",
|
30 |
+
description = "App detecting jar lids that are damaged versus intact. Type of damage is deformation, hole or scratch | Ruthger Righart ",
|
31 |
article = "<p style='text-align: center'><a href='https://www.rrighart.com' target='_blank'>Webpage</a></p> <p style='text-align: center'><a href='https://www.kaggle.com/code/rrighart/detection-of-product-defects-using-yolov7' target='_blank'>Kaggle</a></p>",
|
32 |
+
examples=[['example1.JPG', 0.50], ['example2.JPG', 0.50], ['example3.JPG', 0.50]],
|
33 |
cache_examples=True,
|
34 |
)
|
35 |
demo_app.launch(debug=False, enable_queue=True)
|