-
Notifications
You must be signed in to change notification settings - Fork 0
Jm/face #4
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: main
Are you sure you want to change the base?
Jm/face #4
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,9 +7,11 @@ DEFAULT: | |
| Reader: | ||
| style: numpy | ||
| LetterBox: | ||
| # yolov8m-face.pt's own embedded train_args records imgsz: 960, unlike | ||
| # every other face-detection size/family, which train at 640. | ||
| img_size: | ||
| - 640 | ||
| - 640 | ||
| - 960 | ||
| - 960 | ||
|
Comment on lines
+13
to
+14
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Changing the YOLOv8m/YOLOv8l preprocessing default from 640 to 960 is a durable model-behavior change affecting normal inference and compilation, but this commit updates none of the required agent guide, canonical skill, Claude guidance, or relevant README. Update those maintained surfaces in the same change so package documentation and future compatibility work do not continue assuming the old geometry. AGENTS.md reference: AGENTS.md:L160-L163 Useful? React with 👍 / 👎. |
||
| SetOrder: | ||
| shape: HWC | ||
| Normalize: | ||
|
|
||
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.
Existing code importing
YOLOv6m_faceorYOLOv6n_facefrom eithermblt_vision.face_detectionor the lazy top-level namespace now fails at import time because these entries are removed from__all__. Even if their YAML artifacts must be withdrawn, retain deprecated compatibility classes—the existingcreate_model_classmissing-YAML path can provide an actionable construction error—rather than silently deleting public names.AGENTS.md reference: AGENTS.md:L41-L43
Useful? React with 👍 / 👎.