REVIEW 6 major objections 5 minor 2 cited by
MHAF-YOLO: Multi-Branch Heterogeneous Auxiliary Fusion YOLO for accurate object detection
T0 review · 6 major / 5 minor · reviewed 2026-08-08 · deepseek-v4-flash
Pith's one-line read This paper claims that a new neck design, MAFPN, lets a 7.1M-parameter YOLO reach 48.9% AP on COCO, beating YOLO11-s by 1.9 points with 24.4% fewer parameters.
desk verdict Genuine incremental architecture with clean internal ablations; the SOTA claim over YOLO11 rests on uncontrolled baselines and val-set tuning. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is MAFPN (Multi-Branch Auxiliary FPN), a neck that adds Superficial Assisted Fusion (SAF) and Advanced Assisted Fusion (AAF) to the standard bottom-up and top-down paths. SAF injects shallow backbone features into the neck's first fusion blocks to preserve small-object spatial detail; AAF densely connects four feature layers at the deeper output stages so the head receives richer gradients. Alongside it, RepHMS (Reparameterized Heterogeneous Multi-Scale) runs parallel small and large depthwise convolutions during training and folds them into a single kernel at inference, while GHFKS (Global Heterogeneous Flexible Kernel Selection) chooses larger kernels on higher-resolution layers to widen receptive fields. The mechanism's work is to make multi-scale information flow cheaply: no extra inference cost for the multi-kernel branches, and no extra parameters for the fusion paths beyond a few 1x1 convolutions.
What would settle it
Train MHAF-YOLO-s and YOLO11-s from scratch with the identical data pipeline, epochs, and optimizer on COCO train2017 and compare AP on COCO val2017; if the reported 1.9-point edge at 7.1M parameters does not replicate, the central advantage claim is not robust.
Extended reading notes
Core claim
On the paper's own terms, the central discovery is that a one-stage detector's neck can be rebuilt to fuse non-adjacent scales in both directions, letting shallow spatial detail survive into deep layers and giving small objects a disproportionate accuracy gain. Specifically, MHAF-YOLO-s achieves 48.9% AP (49.1% with one-to-many NMS training) at 7.1M parameters and 25.3 GFLOPs on COCO val2017, which the authors report as state-of-the-art among real-time detectors and as a 1.9 AP improvement over YOLO11-s at 24.4% fewer parameters. The same architecture transfers to instance segmentation (39.7% seg AP for the small variant) and rotated object detection (81.10% mAP on DOTA-v1.0 in multi-scale mode), which the authors offer as evidence of generalization.
Load-bearing premise
The claim rests on the published baseline numbers being accurate and fairly comparable, and on COCO val2017 serving both to tune the design and to score the final result, so a baseline run with a different training recipe could change the reported gaps.
Editorial extensions
If this is right
- Real-time object detectors can improve accuracy per parameter by redesigning the neck instead of scaling up the backbone or head.
- MAFPN as a plug-in reports AP gains on other detectors: +1.7 on YOLOv8n (with fewer parameters and 200 fewer epochs) and +1.2 on Faster R-CNN.
- RepHMS-style reparameterized heterogeneous kernels give multi-scale receptive fields at no additional inference cost, since training-time branches merge into a single convolution.
- The same detector body transfers to instance segmentation and rotated object detection with gains over YOLO11 counterparts.
Reading between the lines
- The ablations select hyperparameters on COCO val2017 and the final comparisons are also on val2017, so part of the reported gap may reflect tuning to that split; a test-dev evaluation would show whether the SOTA claim holds outside the selection set.
- The authors state that inference speed trails YOLOv10 and YOLO11; if latency rather than parameters is the deployment constraint, the practical advantage over those models is smaller than the AP-per-parameter numbers suggest.
- The training recipe differs from baselines (cached-mixup from RTMDet and lower-probability copy-paste), so a recipe-matched controlled comparison would isolate how much of the gain is architectural.
- Since MAFPN is plug-and-play and RepHMS can enter any network, the same design is a natural test in transformer-based detectors, not just convolutional YOLO variants.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes MHAF-YOLO, a YOLO-family detector built on three main architectural ingredients: a Multi-Branch Auxiliary FPN (MAFPN) neck with Superficial Assisted Fusion (SAF) and Advanced Assisted Fusion (AAF), a Reparameterized Heterogeneous Multi-Scale (RepHMS) feature-extraction block using reparameterized heterogeneous depthwise convolutions, and a Global Heterogeneous Flexible Kernel Selection (GHFKS) mechanism that assigns larger kernels to different feature scales. The authors report ablations on COCO val2017, comparisons against published real-time detector results on COCO and VOC, and transfer experiments to instance segmentation and rotated object detection. The central quantitative claim is that MHAF-YOLO-s reaches 48.9 AP at 7.1M parameters and 25.3 GFLOPs, surpassing YOLO11-s (47.0 AP, 9.4M) and YOLOv12-s (48.0 AP, 9.3M), and the paper concludes that MHAF-YOLO achieves state-of-the-art performance in real-time object detection.
Significance. If the empirical claims were established under a controlled protocol, this would be a practically valuable architecture paper. The internal ablations in Tables 2, 3, and 5 are systematic and show that each proposed component contributes positively under the authors' training recipe; the reparameterization identity in Eq. (6) is algebraic, and the code is publicly released. The transfer demonstrations to segmentation and rotated detection support the generality of the modules. However, the central SOTA claim currently rests on published baseline numbers from heterogeneous training protocols and on model selection and evaluation using the same COCO val2017 split, so the magnitude of the architectural gain over YOLO11/YOLOv12 is not yet established. The paper also never reports inference latency while calling itself real-time.
major comments (6)
- [§4.2, Table 6] The main SOTA claim is measured against published baseline numbers rather than models retrained under the paper's protocol. MHAF-YOLO is trained from scratch for 500 epochs with SGD, cached-mixup, and low-probability copy-paste, while YOLOv10, YOLO11, YOLOv12, Gold-YOLO, and MAF-YOLO results in Table 6 come from their own schedules and augmentation stacks; the 1.9 AP gap over YOLO11-s and 0.9 AP gap over YOLOv12-s therefore conflate architecture with training recipe. Please retrain at least YOLOv10-s, YOLO11-s, YOLOv12-s, Gold-YOLO-s, and MAF-YOLO-s under the identical 500-epoch recipe, or report official and same-recipe numbers side by side, and give full training hyperparameters such as batch size, input resolution, learning-rate schedule, and augmentation probabilities.
- [§4.3–§4.6, Table 6] The experimental protocol selects architecture hyperparameters on COCO val2017 in Sections 4.3–4.5 (RepHMS depths, GHFKS kernel sizes, SAF/AAF configurations) and then evaluates the final models on the same val2017 split in Section 4.6, Table 6. This selection-on-evaluation procedure can inflate both the ablations and the SOTA comparison, and the paper reports only APval with no COCO test-dev numbers. Please report test-dev AP, or make an explicit train/val separation for model selection and final evaluation, and state which reported numbers were used for architecture decisions.
- [§5 (Conclusions), §1, Fig. 2] The paper repeatedly frames MHAF-YOLO as a real-time detector, but no latency or FPS measurement appears anywhere, and the conclusion explicitly concedes that inference speed still lags behind cutting-edge models such as YOLOv10 and YOLO11 because of MAFPN complexity and large-kernel depthwise convolutions. The real-time claim is therefore unsupported by the evidence; please add latency measurements on identical hardware, batch size, and input resolution for all compared models and revise the SOTA claims to separate accuracy/parameter trade-off from speed.
- [§4.6.1, Table 6] The nano-scale result is internally inconsistent with the claim that MHAF-YOLO surpasses existing real-time detectors: MHAF-YOLO-n reaches 42.3 AP, while the authors' own MAF-YOLO-n in the same table reaches 42.4 AP despite having more parameters. If MHAF-YOLO is meant to improve on MAF-YOLO, the table should be explained in terms of training recipe or capacity target; otherwise the claim of uniform superiority across N/S/M scales should be qualified.
- [§4.4.2, Table 4] The plug-and-play claim for MAFPN is partly confounded in the YOLOv8n experiment: YOLOv8n-MAFPN is trained for 300 epochs while YOLOv8n-PAFPN is trained for 500 epochs, and its channel count is changed to make the model smaller, so the +1.7 AP gain cannot be attributed solely to the neck. Please provide an equal-epoch, equal-capacity comparison for YOLOv8n and specify the training schedule, resolution, and augmentation used for the Faster R-CNN comparison.
- [§4.2, Table 6] Section 4.2 states that all scales of MHAF-YOLO are trained from scratch without relying on large-scale datasets such as ImageNet or pre-trained weights, but Table 6 includes rows MHAF-YOLO-n* and MHAF-YOLO-s* whose footnote says they are trained with a pretrained backbone. The text never explains how these starred models are pretrained or why they are included, and the table presents their higher numbers alongside the from-scratch results. Please remove the starred rows or describe the pretraining protocol explicitly, and keep the from-scratch claim consistent with the tables.
minor comments (5)
- [Table 6, References] YOLO11-n and YOLO11-s are cited as reference [16] in Table 6, but reference [16] is the authors' MAF-YOLO paper; YOLO11 should be cited as [18] as in Table 7, otherwise the provenance of the baseline numbers is unclear.
- [§4.2] The implementation details list the optimizer, hardware, and epoch count but omit batch size, input resolution, learning rate, momentum/weight decay, and the actual cached-mixup/copy-paste probabilities; these details are needed to reproduce the 500-epoch runs and to verify the claimed parameter-accuracy trade-offs.
- [Eq. (6)] The notation in Eq. (6) is ambiguous: the kernel indices K_{2n-1} and K_{2n-(2i+1)} are not defined precisely, and the step of zero-padding smaller depthwise kernels before summation should be stated explicitly, since the correctness of the reparameterization merge relies on that padding.
- [§4.3.2, Table 2] The phrase saying that the Cascade strategy achieves 'lossless performance improvement' is inaccurate if 'lossless' refers to accuracy, because adding Cascade changes AP from 41.9 to 42.3 in Table 2; if the intended meaning is 'no extra parameters/FLOPs', the wording should say so.
- [Table 9, §4.6.4] Table 9 contains the label 'YOLOv11-n-obb' while the model is YOLO11-n-obb, and the rotated-detection section does not state the exact crop overlap and test-time augmentation settings for the MHAF rows beyond the default description; please align notation and protocol descriptions.
Circularity Check
No significant circularity: the reparameterization identity is algebraic and the SOTA claims are anchored to external baselines; MAF-YOLO self-citations are not load-bearing.
full rationale
The paper's derivation chain does not reduce to its own inputs. Equation (6) is a direct algebraic identity: BN-folded small depthwise kernels are zero-padded and summed to form a large kernel, with no fitted parameter or target result assumed. The ablations in Tables 1-5 are incremental, controlled changes from a YOLOv10n baseline with AP measured on COCO; none of the reported gains is a fitted quantity renamed as a prediction. The main SOTA claims in Table 6 are comparisons against externally published detectors (YOLO11, YOLOv12, Gold-YOLO, RTMDet, etc.), so the central claim does not depend on the authors' prior MAF-YOLO paper. MAF-YOLO [16] appears as a baseline row and as the RepHELAN block in Table 1, but those citations are not load-bearing: removing them would not change the YOLO11/YOLOv12 comparisons or the internal ablations. The use of COCO val2017 for both ablations and final reporting, and the reliance on published baseline numbers, are experimental-comparability and model-selection concerns rather than definitional circularity, and no equation-level reduction from output to input is exhibited. Therefore no circular steps are identified.
Assumptions & free parameters
free parameters (6)
- RepHMS branch count N and block depth M =
not stated; default used in experiments
- GHFKS kernel-size schedule =
3,5,7,9 in backbone; 5,7,9 in MAFPN
- SAF shallow-channel ratio =
half the deep-layer channels
- AAF channel equalization =
equal channels across layers
- RepHConv kernel combination =
large kernel (e.g., 7x7) plus small kernels (3x3, 5x5)
- Training augmentation and schedule =
500 epochs, cached-mixup, lower-probability copy-paste, 10-epoch decay off
assumptions (5)
- standard math Addition of zero-padded depthwise convolution kernels after BN fusion yields an equivalent single kernel.
- domain assumption Larger receptive fields improve detection, while smaller receptive fields are preferable for small objects.
- domain assumption Published baseline results in Tables 6-9 are accurate and were obtained under sufficiently comparable conditions.
- domain assumption COCO val2017 is an acceptable target for both model selection and final reporting.
- ad hoc to paper AAF channel equalization is valid because initial guiding information is already embedded in shallow MAFPN layers.
Cite this review
Pith. "Pith review of MHAF-YOLO: Multi-Branch Heterogeneous Auxiliary Fusion YOLO for accurate object detection." pith.science (2026). https://pith.science/paper/J7EZUN37
@misc{pith2026250204656,
author = {Pith},
title = {Pith review of: MHAF-YOLO: Multi-Branch Heterogeneous Auxiliary Fusion YOLO for accurate object detection},
year = {2026},
howpublished = {\url{https://pith.science/paper/J7EZUN37}},
note = {Machine review of arXiv:2502.04656}
}
read the original abstract
Due to the effective multi-scale feature fusion capabilities of the Path Aggregation FPN (PAFPN), it has become a widely adopted component in YOLO-based detectors. However, PAFPN struggles to integrate high-level semantic cues with low-level spatial details, limiting its performance in real-world applications, especially with significant scale variations. In this paper, we propose MHAF-YOLO, a novel detection framework featuring a versatile neck design called the Multi-Branch Auxiliary FPN (MAFPN), which consists of two key modules: the Superficial Assisted Fusion (SAF) and Advanced Assisted Fusion (AAF). The SAF bridges the backbone and the neck by fusing shallow features, effectively transferring crucial low-level spatial information with high fidelity. Meanwhile, the AAF integrates multi-scale feature information at deeper neck layers, delivering richer gradient information to the output layer and further enhancing the model learning capacity. To complement MAFPN, we introduce the Global Heterogeneous Flexible Kernel Selection (GHFKS) mechanism and the Reparameterized Heterogeneous Multi-Scale (RepHMS) module to enhance feature fusion. RepHMS is globally integrated into the network, utilizing GHFKS to select larger convolutional kernels for various feature layers, expanding the vertical receptive field and capturing contextual information across spatial hierarchies. Locally, it optimizes convolution by processing both large and small kernels within the same layer, broadening the lateral receptive field and preserving crucial details for detecting smaller targets. The source code of this work is available at: https://github.com/yang-0201/MHAF-YOLO.
Figures
Figures from the paper (8 more)
Forward citations
Cited by 2 Pith papers
-
CollabOD: Collaborative Multi-Backbone with Cross-scale Vision for UAV Small Object Detection
CollabOD improves UAV small-object detection via dual-path detail preservation, dense aggregation, bilateral reweighting, and a reparameterized detail-aware head, reporting 52.4 AP50 on VisDrone at 65.5 GFLOPs.
-
MambaNeXt-YOLO: A Hybrid State Space Model for Real-time Object Detection
MambaNeXt-YOLO, a hybrid CNN-Mamba detector, reports 66.6% mAP on PASCAL VOC from scratch and 27.8% on DOTA v1.5, with marginal gains over Mamba-YOLO and lower frame rates than several lightweight YOLO variants.
Reference graph
Works this paper leans on
-
[1]
J. Redmon, You only look once: Unified, real-time object detection, in: Proceedings of the IEEE conference on computer vision and pattern recognition, 2016
work page 2016
-
[2]
Redmon, A
J. Redmon, A. Farhadi, Yolo9000: better, faster, stronger, in: Proceed- ings of the IEEE conference on computer vision and pattern recognition, 2017, pp. 7263–7271
2017
-
[3]
Redmon, Yolov3: An incremental improvement, arXiv preprint arXiv:1804.02767 (2018)
J. Redmon, Yolov3: An incremental improvement, arXiv preprint arXiv:1804.02767 (2018)
arXiv 2018
-
[4]
A. Bochkovskiy, C.-Y. Wang, H.-Y. M. Liao, Yolov4: Optimal speed and accuracy of object detection, arXiv preprint arXiv:2004.10934 (2020)
arXiv 2020
- [5]
-
[6]
Z. Ge, S. Liu, F. Wang, Z. Li, J. Sun, Yolox: Exceeding yolo series in 2021, arXiv preprint arXiv:2107.08430 (2021)
arXiv 2021
-
[7]
C. Li, L. Li, Y. Geng, et al, Yolov6 v3. 0: A full-scale reloading, arXiv preprint arXiv:2301.05586 (2023)
arXiv 2023
-
[8]
C.-Y. Wang, A. Bochkovskiy, H.-Y. M. Liao, Yolov7: Trainable bag-of- freebies sets new state-of-the-art for real-time object detectors, in: Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2023, pp. 7464–7475
work page 2023
Show all 51 references
-
[9]
Jocher, A
G. Jocher, A. Chaurasia, J. Qiu, Yolo by ultralytics, URL: https://github.com/ultralytics/ultralytics/tree/v8.2.0 (2023)
2023
-
[10]
X. Xu, Y. Jiang, W. Chen, et al, Damo-yolo: A report on real-time object detection design, arXiv preprint arXiv:2211.15444 (2022)
2022 arXiv
-
[11]
C. Lyu, W. Zhang, H. Huang, et al, Rtmdet: An empirical study of designing real-time object detectors, arXiv preprint arXiv:2212.07784 (2022). 30
2022 arXiv
-
[12]
S. Xu, X. Wang, W. Lv, Q. Chang, C. Cui, K. Deng, G. Wang, Q. Dang, S. Wei, Y. Du, et al., Pp-yoloe: An evolved version of yolo, arXiv preprint arXiv:2203.16250 (2022)
2022 arXiv
-
[13]
C. Wang, W. He, Y. Nie, et al, Gold-yolo: Efficient object detector via gather-and-distribute mechanism, arXiv preprint arXiv:2309.11331 (2023)
2023 arXiv
-
[14]
Y. Chen, X. Yuan, R. Wu, et al, Yolo-ms: Rethinking multi-scale representation learning for real-time object detection, arXiv preprint arXiv:2308.05480 (2023)
2023 arXiv
-
[15]
Wang, I.-H
C.-Y. Wang, I.-H. Yeh, H.-Y. M. Liao, Yolov9: Learning what you want to learn using programmable gradient information, arXiv preprint arXiv:2402.13616 (2024)
2024 arXiv
-
[16]
Z. Yang, Q. Guan, K. Zhao, J. Yang, X. Xu, H. Long, Y. Tang, Multi-branch auxiliary fusion yolo with re-parameterization hetero- geneous convolutional for accurate object detection, arXiv preprint arXiv:2407.04381 (2024)
2024 arXiv
-
[17]
A. Wang, H. Chen, L. Liu, K. Chen, Z. Lin, J. Han, G. Ding, Yolov10: Real-time end-to-end object detection, arXiv preprint arXiv:2405.14458 (2024)
2024 arXiv
-
[18]
Jocher, A
G. Jocher, A. Chaurasia, J. Qiu, Yolo by ultralytics, URL: https://github.com/ultralytics/ultralytics (2024)
2024
-
[19]
Y. Tian, Q. Ye, D. Doermann, Yolov12: Attention-centric real-time object detectors, arXiv preprint arXiv:2502.12524 (2025)
2025 arXiv
-
[20]
T.-Y. Lin, P. Doll´ ar, R. Girshick, et al, Feature pyramid networks for object detection, in: Proceedings of the IEEE conference on computer vision and pattern recognition, 2017, pp. 2117–2125
2017
-
[21]
K. Wang, J. H. Liew, Y. Zou, D. Zhou, J. Feng, Panet: Few-shot image semantic segmentation with prototype alignment, in: proceedings of the IEEE/CVF international conference on computer vision, 2019, pp. 9197–9206. 31
2019
-
[22]
Wang, H.-Y
C.-Y. Wang, H.-Y. M. Liao, Y.-H. Wu, P.-Y. Chen, J.-W. Hsieh, I.-H. Yeh, Cspnet: A new backbone that can enhance learning capability of cnn, in: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition workshops, 2020, pp. 390–391
2020
-
[23]
C. Feng, Y. Zhong, Y. Gao, M. R. Scott, W. Huang, Tood: Task-aligned one-stage object detection, in: 2021 IEEE/CVF International Confer- ence on Computer Vision (ICCV), IEEE Computer Society, 2021, pp. 3490–3499
2021
-
[24]
Z. Sun, M. Lin, X. Sun, Z. Tan, H. Li, R. Jin, Mae-det: Revisiting max- imum entropy principle in zero-shot nas for efficient object detection, arXiv preprint arXiv:2111.13336 (2021)
2021 arXiv
-
[25]
G. Yang, J. Lei, Z. Zhu, S. Cheng, Z. Feng, R. Liang, Afpn: Asymptotic feature pyramid network for object detection, in: 2023 IEEE Interna- tional Conference on Systems, Man, and Cybernetics (SMC), IEEE, 2023, pp. 2184–2189
2023
-
[26]
Y. Li, Y. Chen, N. Wang, Z. Zhang, Scale-aware trident networks for object detection, in: Proceedings of the IEEE/CVF international con- ference on computer vision, 2019, pp. 6054–6063
2019
-
[27]
X. Ding, X. Zhang, N. Ma, et al, Repvgg: Making vgg-style convnets great again, in: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2021, pp. 13733–13742
2021
-
[28]
X. Ding, X. Zhang, J. Han, G. Ding, Scaling up your kernels to 31x31: Revisiting large kernel design in cnns, in: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 11963– 11975
2022
-
[29]
X. Ding, Y. Zhang, Y. Ge, S. Zhao, L. Song, X. Yue, Y. Shan, Unire- plknet: A universal perception large-kernel convnet for audio video point cloud time-series and image recognition, in: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2024, p...
2024
-
[30]
T.-Y. Lin, M. Maire, S. Belongie, et al, Microsoft coco: Common objects in context, in: Computer Vision–ECCV 2014: 13th European Confer- 32 ence, Zurich, Switzerland, September 6-12, 2014, Proceedings, Part V 13, Springer, 2014, pp. 740–755
2014
-
[31]
Everingham, S
M. Everingham, S. A. Eslami, L. Van Gool, C. K. Williams, J. Winn, A. Zisserman, The pascal visual object classes challenge: A retrospec- tive, International journal of computer vision 111 (2015) 98–136
2015
-
[32]
G.-S. Xia, X. Bai, J. Ding, Z. Zhu, S. Belongie, J. Luo, M. Datcu, M. Pelillo, L. Zhang, Dota: A large-scale dataset for object detection in aerial images, in: Proceedings of the IEEE conference on computer vision and pattern recognition, 2018, pp. 3974–3983
2018
-
[33]
J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, L. Fei-Fei, Imagenet: A large-scale hierarchical image database, in: 2009 IEEE conference on computer vision and pattern recognition, Ieee, 2009, pp. 248–255
2009
-
[34]
Ghiasi, Y
G. Ghiasi, Y. Cui, A. Srinivas, R. Qian, T.-Y. Lin, E. D. Cubuk, Q. V. Le, B. Zoph, Simple copy-paste is a strong data augmentation method for instance segmentation, in: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2021, pp. 2918–2928
2021
-
[35]
S. Ren, K. He, R. Girshick, J. Sun, Faster r-cnn: Towards real-time object detection with region proposal networks, IEEE transactions on pattern analysis and machine intelligence 39 (6) (2016) 1137–1149
2016
-
[36]
M. Tan, R. Pang, Q. V. Le, Efficientdet: Scalable and efficient object detection, in: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2020, pp. 10781–10790
2020
-
[37]
W. Lv, Y. Zhao, Q. Chang, K. Huang, G. Wang, Y. Liu, Rt-detrv2: Im- proved baseline with bag-of-freebies for real-time detection transformer, arXiv preprint arXiv:2407.17140 (2024)
2024 arXiv
-
[38]
Z. Liu, Y. Lin, Y. Cao, H. Hu, Y. Wei, Z. Zhang, S. Lin, B. Guo, Swin transformer: Hierarchical vision transformer using shifted windows, in: Proceedings of the IEEE/CVF international conference on computer vision, 2021, pp. 10012–10022
2021
-
[39]
Z. Cai, N. Vasconcelos, Cascade r-cnn: High quality object detection and instance segmentation, IEEE transactions on pattern analysis and machine intelligence 43 (5) (2019) 1483–1498. 33
2019
-
[40]
Z. Liu, H. Mao, C.-Y. Wu, C. Feichtenhofer, T. Darrell, S. Xie, A con- vnet for the 2020s, in: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 11976–11986
2022
-
[41]
X. Zhu, W. Su, L. Lu, B. Li, X. Wang, J. Dai, Deformable detr: De- formable transformers for end-to-end object detection, arXiv preprint arXiv:2010.04159 (2020)
2020 arXiv
-
[42]
Y. Li, H. Mao, R. Girshick, K. He, Exploring plain vision transformer backbones for object detection, in: European conference on computer vision, Springer, 2022, pp. 280–296
2022
-
[43]
Zhang, F
H. Zhang, F. Li, S. Liu, et al, Dino: Detr with improved denoising anchor boxes for end-to-end object detection, arXiv preprint arXiv:2203.03605 (2022)
2022 arXiv
-
[44]
K. Chen, J. Pang, J. Wang, Y. Xiong, X. Li, S. Sun, W. Feng, Z. Liu, J. Shi, W. Ouyang, et al., Hybrid task cascade for instance segmentation, in: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2019, pp. 4974–4983
2019
-
[45]
X. Wang, R. Zhang, T. Kong, L. Li, C. Shen, Solov2: Dynamic and fast instance segmentation, Advances in Neural information processing systems 33 (2020) 17721–17732
2020
-
[46]
X. Xie, G. Cheng, J. Wang, X. Yao, J. Han, Oriented r-cnn for object detection, in: Proceedings of the IEEE/CVF international conference on computer vision, 2021, pp. 3520–3529
2021
-
[47]
X. Cai, Q. Lai, Y. Wang, W. Wang, Z. Sun, Y. Yao, Poly kernel inception network for remote sensing detection, in: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2024, pp. 27706–27716
2024
-
[48]
X. Yang, Y. Zhou, G. Zhang, J. Yang, W. Wang, J. Yan, X. Zhang, Q. Tian, The kfiou loss for rotated object detection, arXiv preprint arXiv:2201.12558 (2022)
2022 arXiv
-
[49]
D. Wang, Q. Zhang, Y. Xu, J. Zhang, B. Du, D. Tao, L. Zhang, Advanc- ing plain vision transformer toward remote sensing foundation model, IEEE Transactions on Geoscience and Remote Sensing 61 (2022) 1–15. 34
2022
-
[50]
Zhang, Y
Q. Zhang, Y. Xu, J. Zhang, D. Tao, Vitaev2: Vision transformer ad- vanced by exploring inductive bias for image recognition and beyond, International Journal of Computer Vision 131 (5) (2023) 1141–1162
2023
-
[51]
Y. Li, X. Li, Y. Dai, Q. Hou, L. Liu, Y. Liu, M.-M. Cheng, J. Yang, Lsknet: A foundation lightweight backbone for remote sensing, Interna- tional Journal of Computer Vision (2024) 1–22. 35
2024
Reviewed August 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.