You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example loads a pretrained YOLOv5s model from PyTorch Hub as model and passes an image for inference. 'yolov5s' is the lightest and fastest YOLOv5 model. For details on all available models please see the README.
👋 Hello, this issue has been automatically marked as stale because it has not had recent activity. Please note it will be closed if no further activity occurs.
Feel free to inform us of any other issues you discover or feature requests that come to mind in the future. Pull Requests (PRs) are also always welcomed!
Thank you for your contributions to YOLOv5 🚀 and Vision AI ⭐!
Search before asking
Question
Hello,
Thanks G-d i success to build a working object detector as i need.
however i need more information about the detection that the model found..
i run this command to detect-
!python detect.py --weights runs/train/exp/weights/best.pt --img 640 --conf 0.1 --source {dataset.location}/test/images
and i try this script too-
model = torch.hub.load('/content/yolov5', 'custom', path='/content/yolov5/runs/train/exp/weights/best.pt', force_reload=True, source='local')
img = '/content/datasets/final-hebrew-1/test/images/test.jpeg'
results = model(img)
results.print()
=> image 1/1: 640x640 1 Aleph
Speed: 23.9ms pre-process, 87.7ms inference, 2.6ms NMS per image at shape (1, 3, 640, 640)
i cant understand from this infoemation were the detection was in my image..
please help!!
Thanks
Additional
No response
The text was updated successfully, but these errors were encountered: