Spaces:
Sleeping
Sleeping
init
Browse files
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)
|