Harika12323 commited on
Commit
601789e
·
verified ·
1 Parent(s): ffaadf8
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ import yolov5
6
  from yolov5 import YOLOv5
7
 
8
  # Initialize YOLOv5 model
9
- model = YOLOv5('best.pt') # Replace with your model path
10
 
11
  def detect_number_plate(frame):
12
  results = model(frame)
 
6
  from yolov5 import YOLOv5
7
 
8
  # Initialize YOLOv5 model
9
+ model = YOLOv5.load('best.pt') # Replace with your model path
10
 
11
  def detect_number_plate(frame):
12
  results = model(frame)