-
Notifications
You must be signed in to change notification settings - Fork 921
Added yolo detection notebook #3080
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: latest
Are you sure you want to change the base?
Added yolo detection notebook #3080
Conversation
Added notebook verified that it runs as expected created readme
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
matched overall style to other notebooks with cell and step descriptions
@aleksandr-mokrov Hey Aleksander - could you take a look at this PR? |
@@ -0,0 +1,670 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line #1. %pip install -q "openvino>=2023.1.0" "ultralytics==8.3.0" opencv-python matplotlib Pillow ipywidgets --extra-index-url https://download.pytorch.org/whl/cpu
Update please openvino version to the latest release: 2025.3
Reply via ReviewNB
@@ -0,0 +1,670 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
YOLOv11n-cls -> YOLOv11n-cls
to pass the spell-check or add the word cls to .ci\spellcheck\.pyspelling.wordlist.txt
Reply via ReviewNB
@@ -0,0 +1,670 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't add please image in the repo. You can add the images to any comment in PR and use that link for downloading.
Reply via ReviewNB
@@ -0,0 +1,670 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line #3. if detect_device.value != "CPU":
Could you try to use intel device for inference for detect and classification models, like it is in yolov11-object-detection (without quantization):
res = det_model(IMAGE_PATH, device=f"intel:{device.value.lower()}")
It should simplify and reduce the number of extra code lines.
Reply via ReviewNB
Added notebook
verified that it runs as expected
created readme