rrighart commited on
Commit
7f9c76e
1 Parent(s): f443390

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 (deformation, hole, scratch) versus intact. | 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=[['t1.JPG', 0.50]],
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)