-
Notifications
You must be signed in to change notification settings - Fork 6
Let a pipeline pair any detector with any classifier, and add a general insect-detection pipeline #160
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
Open
mihow
wants to merge
19
commits into
main
Choose a base branch
from
feat/anybug-detector
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Let a pipeline pair any detector with any classifier, and add a general insect-detection pipeline #160
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
455f866
feat(api): scaffold anybug YOLO26 detector and staged pipeline registry
mihow b0ea995
feat(anybug): wire uploaded YOLO26 weight, pin ultralytics 8.4.0, fix…
mihow 1afa2b6
fix(worker): route the anybug pipeline through the worker's execution…
mihow c67cfad
feat(worker): run any registry pipeline via the shared stage engine
mihow 7f52240
fix(anybug): feed YOLO26 detector HWC uint8 on the async worker path
mihow 692786c
fix(anybug): make YOLO26 input-format conversion an asserted contract
mihow 0ca45e5
fix(anybug): tag uncroppable detections and align crop bounds across …
mihow 5c034bc
chore(anybug): lock ultralytics into uv.lock
mihow ce742f4
fix(api): cap reported insect-order confidence at 0.9 instead of halv…
mihow 9ba91c6
test(api): pin one localization algorithm per advertised pipeline
mihow e562567
fix(api): build the pipeline config test from the pipeline registry
mihow f18832d
test: request a Wikimedia thumbnail width that Wikimedia still serves
mihow 0771a85
test(api): pick test images in filename order so selection is determi…
mihow e2b6fe4
docs(test): say which half of the one-detector invariant each test co…
mihow 7a54c27
fix(api): give each pipeline its own name so the picker shows them apart
mihow 35c8d95
docs: drop the claim that the anybug weight and dependency are missing
mihow 1a9df18
docs: describe score_scale as a constant scale, not a cap
mihow a6fc571
fix(anybug): pin YOLO26 inference resolution to the trained 1024
mihow d1cab07
feat(anybug): swap the server detector to the larger YOLO26x flavor
mihow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
Pass an explicit
strict=tozip.item_idsandbatch_outputare expected to be equal length; making that explicit (strict=True) turns a silent truncation into a loud error if they ever diverge (and clears the Ruff B905 warning). The same applies to the identicalAPIMothDetector.save_resultsat Line 52.Proposed change
📝 Committable suggestion
🧰 Tools
🪛 Ruff (0.15.21)
[warning] 113-113:
zip()without an explicitstrict=parameterAdd explicit value for parameter
strict=(B905)
🤖 Prompt for AI Agents
Source: Linters/SAST tools