Ihor Bilyk commited on
Commit
566a28f
·
1 Parent(s): 64c3a8c
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -71,13 +71,12 @@ inputs = [
71
  outputs = gr.outputs.Image(type="filepath", label="Output Image")
72
  title = "Ultralytics YOLOv8: State-of-the-Art YOLO Models"
73
 
74
- examples = [['highway.jpg', 'kadirnar/yolov8m-v8.0', 640, 0.25, 0.45], ['highway1.jpg', 'kadirnar/yolov8l-v8.0', 640, 0.25, 0.45], ['small-vehicles1.jpeg', 'kadirnar/yolov8x-v8.0', 1280, 0.25, 0.45]]
75
  demo_app = gr.Interface(
76
  fn=yolov8_inference,
77
  inputs=inputs,
78
  outputs=outputs,
79
  title=title,
80
- examples=examples,
81
  cache_examples=True,
82
  theme='huggingface',
83
  )
 
71
  outputs = gr.outputs.Image(type="filepath", label="Output Image")
72
  title = "Ultralytics YOLOv8: State-of-the-Art YOLO Models"
73
 
 
74
  demo_app = gr.Interface(
75
  fn=yolov8_inference,
76
  inputs=inputs,
77
  outputs=outputs,
78
  title=title,
79
+ examples=None,
80
  cache_examples=True,
81
  theme='huggingface',
82
  )