Decoupled Pipeline with Proposal Reranking and Score Fusion for Positive-Unlabeled Marine Species Detection
Summary
DS@GT ARC developed a multi-stage system for the FathomNetCLEF 2026 competition, which challenges participants with positive-unlabeled marine species detection under sparse training labels and an out-of-distribution hidden test set. Their approach, which secured 12th place out of 102 teams, utilized a frozen Megalodon YOLOv8x detector for class-agnostic proposal generation. It combined global and tiled inference with tile-edge filtering, then classified expanded proposal crops using a LoRA-finetuned DINOv3 ViT-H classifier. Predictions were finally ranked via weighted geometric fusion of detector and classifier confidence. A key finding was the unreliability of train-derived validation and detector-only metrics for model selection, leading the team to rely on proxy datasets, leaderboard feedback, and targeted ablations. Experiments showed that preserving proposal recall, avoiding over-aggressive filtering, and improving downstream ranking were more effective than detector fine-tuning or direct training on noisy pseudo-labels.
Key takeaway
For Machine Learning Engineers developing positive-unlabeled object detection systems, relying solely on train-derived validation metrics can be misleading. You should prioritize robust validation using proxy datasets and leaderboard feedback to guide model selection. Focus your efforts on preserving proposal recall, carefully managing filtering thresholds, and enhancing downstream prediction ranking through techniques like weighted confidence fusion, rather than just fine-tuning the base detector.
Key insights
For positive-unlabeled object detection, robust validation and effective proposal reranking are crucial given sparse labels and distribution shifts.
Principles
- Train-derived validation can be unreliable.
- Prioritize proposal recall and ranking.
- Avoid over-aggressive filtering.
Method
The system uses a frozen YOLOv8x for proposals, combines global/tiled inference, classifies with a LoRA-finetuned DINOv3 ViT-H, and ranks predictions via weighted geometric fusion of confidences.
In practice
- Use proxy datasets for validation.
- Implement weighted confidence fusion.
- Explore reranking signals like validity heads.
Topics
- Marine Species Detection
- Positive-Unlabeled Learning
- Object Detection Pipelines
- Proposal Reranking
- Score Fusion
- Out-of-Distribution Detection
Code references
Best for: Research Scientist, AI Scientist, Machine Learning Engineer, Computer Vision Engineer
Related on AIssential
See Counsel's argued verdicts on the open AI decisions leaders are weighing →
Editorial summary, takeaway, and curation by AIssential. Original article published by Artificial Intelligence.