-
Notifications
You must be signed in to change notification settings - Fork 3.1k
fix: FIT-756: Ongoing Annotator Evaluation front‑loads Ground Truth tasks under Uniform Sampling #8587
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
Merged
Conversation
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
…asks under Uniform Sampling
✅ Deploy Preview for label-studio-docs-new-theme canceled.
|
✅ Deploy Preview for label-studio-storybook canceled.
|
✅ Deploy Preview for label-studio-playground canceled.
|
✅ Deploy Preview for heartex-docs canceled.
|
✅ Deploy Preview for heartex-docs canceled.
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #8587 +/- ##
============================================
+ Coverage 67.41% 79.69% +12.28%
============================================
Files 782 238 -544
Lines 60005 21540 -38465
Branches 10161 0 -10161
============================================
- Hits 40451 17167 -23284
+ Misses 19551 4373 -15178
+ Partials 3 0 -3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
/fm sync |
makseq
approved these changes
Oct 7, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request updates the task selection logic in
label_studio/projects/functions/next_task.py
to ensure that ground truth (GT) annotations are not prioritized when using the breadth-first strategy, unless the project is in onboarding mode. The main changes involve updating the_try_breadth_first
function to accept theproject
parameter and modifying the annotation counting logic to exclude GT annotations when appropriate.Task selection logic improvements:
_try_breadth_first
to accept aproject
parameter and adjusted the annotation counting to exclude ground truth annotations when the project is not set to show ground truth tasks first, preventing GT tasks from being prioritized in the breadth-first queue._try_breadth_first
inget_next_task_without_dm_queue
to pass theproject
parameter.