Pith. sign in

REVIEW 3 major objections 5 minor 42 references

Multi-Point Positional Insertion Tuning for Small Object Detection

T0 review · 3 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read Adding a small set of learnable positional embeddings to a frozen object detector matches prompt-tuning performance for small objects while using about 0.5 million learnable parameters.

desk verdict The empirical parity claim at 0.5M parameters holds on the reported numbers, but the 'positional' mechanism is really an input-independent bias, and the paper needs a bias-only control before that interpretation is taken seriously. read the letter →

arxiv 2412.18090 v1 pith:TXNZ6OMC submitted 2024-12-24 cs.CV cs.AI

classification cs.CVcs.AI
keywords parameter-efficientfinetuningsmallobjectdetectionpositionalembeddingGroundingDINOprompttuningmulti-headencoderSODA-Dvision-languagemodel
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper proposes multi-point positional insertion (MPI) tuning, a parameter-efficient way to adapt a frozen pretrained object detector to small-object detection. Instead of updating the backbone or head, it inserts lightweight learnable positional embeddings at 26 points inside a frozen Grounding DINO model, so the model gains precise positional information for latent features. On the SODA-D street-scene benchmark, MPI reaches 25.7 mAP with only 0.50M learnable parameters, matching CoOp with a finetuned decoder (25.8 mAP, 12.00M) and VPT with a finetuned decoder (25.4 mAP, 11.98M). The claim is that positional insertion alone can do the work of prompt or adapter tuning for small objects, making full-model finetuning unnecessary.

What carries the argument

The load-bearing object is the multi-head positional encoder (MHP encoder). It takes sinusoidal positional embeddings (with $D=64$, $L=80{,}000$, $C=10{,}000$), passes them through $M$ tiny MLPs of two linear-LayerNorm-SwiGLU blocks, and then combines the $M$ streams into $N=26$ embeddings via a learnable multi-head mixer with weights $A_{ij}$. Each result is shaped by a linear layer and added to a latent feature as $h'_i(x) = h_i(x) + p_i$. The multi-point placement is what connects the parameter budget to the architecture: two points after the BERT and Swin encoders, two per feature-enhancer block (twelve total), and two per decoder block (twelve total). The mixer is what keeps the parameter count low, letting $M<N$ streams share the $N$ insertion positions.

What would settle it

Run the identical MPI protocol on a second small-object benchmark (or on a sampled subset of a general detection dataset) with the same 26 insertion points and 0.50M parameter budget, and check whether the validation mAP gap relative to CoOp with a decoder stays within about one point. Alternatively, replace the sinusoidal embeddings with fixed random embeddings of the same shape and see whether the feature-enhancer ablation drop (26.5 to 24.6) disappears, which would show that the positional format, not just the additive perturbation, is what carries the benefit.

Watch

Extended reading notes

Core claim

The central discovery is that a frozen vision-language detector can be adapted to a small-object benchmark by adding learned position-dependent vectors to its latent features at selected layers, with no other parameter updates. MPI tuning trains only a multi-head positional encoder whose outputs $p_i$ are added to each selected latent feature $h_i(x)$. On the SODA-D test set this yields 25.7 mAP with 0.50M parameters, effectively matching CoOp w/ dec and VPT w/ dec while using roughly 1/24 of their learnable parameters. The paper also reports that the feature-enhancer insertion points carry most of the benefit: removing them drops validation mAP from 26.5 to 24.6, while removing the decoder insertion points leaves mAP unchanged.

Load-bearing premise

The method assumes that a frozen pretrained detector can be adapted to small-object detection by adding learnable position-dependent vectors to 26 selected latent features, and that this additive form can express the needed feature changes; if that assumption fails on other datasets, the observed parity with prompt tuning may not persist.

Editorial extensions

If this is right

  • MPI tuning's parameter count scales with the number of tiny MLPs $M$: halving $M$ from 24 to 12 roughly halves the learnable parameters to 0.50M while losing only 0.2 mAP (26.7 to 26.5), offering a direct accuracy-versus-parameter knob.
  • Inserting position at the feature enhancer is the critical decision, since the ablation drops about 1.9 mAP when those points are removed, identifying where positional adaptation matters most in a vision-language detector.
  • MPI tuning transfers across image-encoder backbones (Swin-T, Swin-B, Swin-L), beating CoOp without decoder finetuning at the same 0.50M parameter budget.
  • Because the pretrained detector stays frozen, the method avoids backpropagation through the full 173M-parameter model during finetuning, cutting memory and compute relative to full finetuning.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • A natural next test is whether the positional content itself matters: replacing the sinusoidal inputs with random-but-fixed embeddings of the same shape, while keeping the insertion layout, would isolate whether the gain comes from position information or merely from an additive perturbation.
  • The method has been validated on only one street-scene dataset, so whether 26 hand-picked insertion points generalize to other small-object domains remains open; an automatic procedure for selecting insertion depths would be a direct extension.
  • Because the mixer linearly combines $M$ learned streams into $N$ positions, the effective correction to the latent trajectory is low-rank; this suggests MPI could be combined with adapter or prompt tuning rather than only competing with them, since it occupies a different, additive subspace.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The paper proposes multi-point positional insertion (MPI) tuning, a parameter-efficient fine-tuning method for small object detection. The method inserts learnable positional embeddings at 26 selected points of a frozen Grounding DINO model, using a multi-head positional encoder built from sinusoidal embeddings, tiny MLPs, and a linear mixer. The adapted features are computed as h'_i(x) = h_i(x) + p_i, where p_i depends on the sinusoidal position index and learned weights but not on the input. On the SODA-D dataset, MPI tuning reports 25.7 mAP with 0.50M learnable parameters, comparable to CoOp (25.8 mAP, 12.00M) and VPT (25.4 mAP, 11.98M) with decoder fine-tuning, while using far fewer parameters. The paper includes ablations on insertion-point groups, the number of tiny MLPs, and three Swin backbones.

Significance. If the empirical results are reliable, MPI tuning is a useful PEFT variant for small object detection: it reaches parity with prompt-tuning baselines at a substantially lower parameter count and shows consistent behavior across backbones. The paper's strengths are its direct comparison against several PEFT baselines, the inclusion of parameter counts, and ablations on module placement and capacity. However, the central mechanistic claim that the gains come from 'precise positional information' is not yet established, because the inserted term p_i is input-independent and could act as a learned bias. The reported 0.1 mAP difference between MPI and CoOp in Table I is also within the range of typical run-to-run variation, and no error bars, multiple seeds, or significance tests are provided.

major comments (3)
  1. [Sec. III-C, Eqs. (1)-(3)] The MHP encoder consumes only the sinusoidal positional embedding e and never the input x or the latent feature h_i(x). Consequently, after training, each p_i is a fixed, input-independent tensor at each insertion point, and Eq. (1) is an additive per-point bias. The paper attributes the improvement to 'providing precise positional information to latent features,' but no control experiment replaces the MHP encoder with a directly learned bias tensor at the same 26 points and the same 0.50M parameter budget. Without that control, the results in Table I are equally consistent with a standard bias-tuning PEFT, and the positional interpretation is unsupported.
  2. [Sec. IV-B, Table I] The main comparison reports a single run per method with no error bars, multiple seeds, or significance tests. The central claim of comparability rests on a 0.1 mAP difference between MPI (25.7) and CoOp with decoder (25.8), which is smaller than typical seed-to-seed variation for detection fine-tuning. At minimum, the authors should report the standard deviation over at least three seeds for the main configurations, or otherwise provide evidence that the observed parity is not due to noise.
  3. [Sec. III-D and Table II] The choice of the 26 insertion points is described as manually selected, but the paper provides no sensitivity analysis over the insertion-point selection itself. Table II shows that removing the feature-enhancer positions degrades mAP from 26.5 to 24.6, while removing the decoder positions has no effect, but this does not establish that the specific 26 points, or the 12+12+2 split, are preferable to, say, a uniform or random sampling of candidate positions. A comparison with a simpler selection rule would strengthen the 'multi-point' contribution.
minor comments (5)
  1. [Sec. III-C] There is a typo in the sentence 'Each linear layer is designed to match the shapes of pi and hi(x) ti ensure that pi can be added to hi(x)'; 'ti' should be 'to'.
  2. [Eq. (2)] The index range for k is written as k = 0, 2, ..., D/2 - 1. Standard sinusoidal embeddings use k = 0, 1, ..., D/2 - 1; the printed formula would skip odd indices and is likely a typo.
  3. [Sec. III-D and Fig. 1] Figure 1 states that the frozen model is shown with N sequential modules, but the actual 26 insertion points are distributed over components with very different roles (text encoder, image encoder, feature enhancer, decoder). Calling them 'sequential modules' is misleading and should be reworded.
  4. [Eq. (3) and Sec. III-C] The notation 'Aij ∈ R^{N×M}' is confusing: A_{ij} with subscripts suggests a scalar entry, while the text uses it as a matrix. Use A ∈ R^{N×M} with entries A_{ij}, or an equivalent clearer notation.
  5. [Sec. IV-B, Table II] The ablation row 'w/o input pos.' is not defined in the text. If it refers to removing the two insertion points after BERT and Swin, the caption or text should say so explicitly.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: MPI tuning is an empirical comparison against external baselines, with no prediction that reduces to its fitted inputs by construction.

full rationale

This is an empirical methods paper rather than a derivation chain. The central claim is that MPI tuning achieves performance comparable to CoOp and VPT on the SODA-D test set while using fewer learnable parameters. That claim is supported by Table I, which reports test-set mAP against external baselines, and by ablations and backbone studies on the validation set. The learnable parameters of the MHP encoder are optimized on the training split, hyperparameters such as the number of tiny MLPs are selected on the validation split, and the headline results are reported on the held-out test split, so no reported number is constructed to equal a fitted value by definition. Equations (1)-(3) define the proposed adaptation mechanism, but they are architectural definitions rather than a derivation of the empirical mAP, and the experimental outcome is not forced by those definitions. The only self-citation, Ref. [33] by Otake, Kawakami, and Inoue, appears in the related-work discussion as an example of layer adapter tuning and is not load-bearing for the proposed method or its evaluation. The skeptical concern that p_i is input-independent because the MHP encoder consumes only sinusoidal positional embeddings is a legitimate experimental-design critique about missing bias-only controls, but it is not circularity: the paper's comparison against CoOp, VPT, and adapter tuning remains an externally benchmarked empirical result and does not reduce by equation to the fitted parameters. No circular step can be quoted or exhibited, so the appropriate finding is no significant circularity.

Assumptions & free parameters 5 free parameters · 5 assumptions · 0 invented entities

The method introduces a new learned module, the MHP encoder, but that is a parameterized component rather than a postulated entity like a new particle or force. No independent falsifiable handles outside the paper exist for it, and the authors do not claim any new physical or conceptual entity. The free parameters listed are hyperparameters chosen by hand or by validation, and they affect the central empirical claim.

free parameters (5)
  • M (number of tiny MLPs) = 12
    Selected from validation hyperparameter study in Table III; M=12 gives 26.5 mAP with 0.50M params, while M=24 gives 26.7 with 1.01M params.
  • N (number of insertion points) = 26
    Chosen manually based on GDINO architecture: 2 from BERT/Swin, 12 in feature enhancer, 12 in decoder. No ablation studies varying N are reported.
  • D (positional embedding dimension) = 64
    Set as a default with no ablation or justification beyond following the sinusoidal encoding convention.
  • L (number of position indices) = 80,000
    Set as a default value for the sinusoidal position table; no task-specific tuning is described.
  • C (sinusoidal wavelength constant) = 10,000
    Taken from the standard Vaswani et al. sinusoidal encoding; not tuned for small object detection.
assumptions (5)
  • domain assumption Adding learned positional embeddings to latent features of a frozen pretrained detector is sufficient to adapt it to small object detection.
    The entire method rests on the premise that h'_i = h_i + p_i can express the needed adaptation. No theoretical analysis or alternative perturbation forms are given.
  • domain assumption The SODA-D dataset and its official splits are correct and representative for evaluating small object detection methods.
    All conclusions are drawn from this single benchmark; no other dataset or cross-dataset validation is provided.
  • ad hoc to paper The 26 manually selected insertion points cover the locations where positional information is most useful.
    The choice is based on architectural intuition and the ablation in Table II, but no systematic search over insertion point subsets is performed.
  • standard math Standard sinusoidal positional embeddings are a useful input representation for learning task-specific positional corrections.
    Borrowed from Vaswani et al. without modification; this is a background mathematical tool, not newly derived.
  • domain assumption The chosen training hyperparameters (AdamW, lr 1e-4, 12 epochs, batch 16) are equally fair for all compared methods.
    No sensitivity analysis is reported, so it is unknown whether the comparison would change under different training budgets.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Multi-Point Positional Insertion Tuning for Small Object Detection." pith.science (2026). https://pith.science/paper/TXNZ6OMC

@misc{pith2026241218090,
  author       = {Pith},
  title        = {Pith review of: Multi-Point Positional Insertion Tuning for Small Object Detection},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/TXNZ6OMC}},
  note         = {Machine review of arXiv:2412.18090}
}
read the original abstract

Small object detection aims to localize and classify small objects within images. With recent advances in large-scale vision-language pretraining, finetuning pretrained object detection models has emerged as a promising approach. However, finetuning large models is computationally and memory expensive. To address this issue, this paper introduces multi-point positional insertion (MPI) tuning, a parameter-efficient finetuning (PEFT) method for small object detection. Specifically, MPI incorporates multiple positional embeddings into a frozen pretrained model, enabling the efficient detection of small objects by providing precise positional information to latent features. Through experiments, we demonstrated the effectiveness of the proposed method on the SODA-D dataset. MPI performed comparably to conventional PEFT methods, including CoOp and VPT, while significantly reducing the number of parameters that need to be tuned.

Figures

Figures reproduced from arXiv: 2412.18090 by the authors.

Figure 1
Figure 1. Multi-point positional insertion (MPI) tuning for small object [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. (a) Multi-head positional encoder consisting of sinusoidal positional [PITH_FULL_IMAGE:figures/full_fig_p002_2.png] view at source ↗
Figure 3
Figure 3. Application to GDINO. The points to insert embeddings [PITH_FULL_IMAGE:figures/full_fig_p003_3.png] view at source ↗
Figures from the paper (1 more)
Figure 4
Figure 4. Figure 4: Qualitative examples V. CONCLUSION We proposed MPI tuning, a novel PEFT method for small object detection. The MHP encoder was introduced to incorpo￾rate positional information into the latent features in a frozen pretrained model. In experiments, MPI tuning was applie…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

42 extracted references · 37 canonical work pages

  1. [1]

    Better to follow, follow to be better: Towards precise supervision of feature super-resolution for small object detection,

    J. Noh, W. Bae, W. Lee, J. Seo, and G. Kim, “Better to follow, follow to be better: Towards precise supervision of feature super-resolution for small object detection,” in IEEE/CVF International Conference on Computer Vision (ICCV) , 2019, pp. 9725–9734

  2. [2]

    SOD-MTGAN: Small object detection via multi-task generative adversarial network,

    Y . Bai, Y . Zhang, M. Ding, and B. Ghanem, “SOD-MTGAN: Small object detection via multi-task generative adversarial network,” in European Conference on Computer Vision (ECCV) , 2018

  3. [3]

    Small object detection via coarse-to-fine proposal generation and imitation learning,

    X. Yuan, G. Cheng, K. Yan, Q. Zeng, and J. Han, “Small object detection via coarse-to-fine proposal generation and imitation learning,” in IEEE/CVF International Conference on Computer Vision (ICCV) , 2023

  4. [4]

    Robust small-scale pedestrian detec- tion with cued recall via memory learning,

    J.-U. Kim, S. Park, and Y . M. Ro, “Robust small-scale pedestrian detec- tion with cued recall via memory learning,” in IEEE/CVF International Conference on Computer Vision (ICCV) , 2021, pp. 3030–3039

  5. [5]

    Self-mimic learning for small-scale pedestrian detection,

    J. Wu, C. Zhou, Q. Zhang, M. Yang, and J. Yuan, “Self-mimic learning for small-scale pedestrian detection,” in ACM International Conference on Multimedia (ACMMM) , 2020, pp. 2012–2020

  6. [6]

    Dynamic local and global context exploration for small object detection,

    Z. Zhang, P. Gong, H. Sun, P. Wu, and X. Yang, “Dynamic local and global context exploration for small object detection,” in IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), 2023, pp. 1–5

  7. [7]

    Grounded language-image pre-training,

    L. H. Li, P. Zhang, H. Zhang, J. Yang, C. Li, Y . Zhong, L. Wang, L. Yuan, L. Zhang, J.-N. Hwang, K.-W. Chang, and J. Gao, “Grounded language-image pre-training,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , 2022

  8. [8]

    GLIPv2: Unifying localization and vision-language understanding,

    H. Zhang, P. Zhang, X. Hu, Y .-C. Chen, L. H. Li, X. Dai, L. Wang, L. Yuan, J.-N. Hwang, and J. Gao, “GLIPv2: Unifying localization and vision-language understanding,” in Annual Conference on Neural Information Processing Systems (NeurIPS) , 2022

Show all 42 references
  1. [9]

    Grounding dino: Marrying dino with grounded pre-training for open-set object detection,

    S. Liu, Z. Zeng, T. Ren, F. Li, H. Zhang, J. Yang, C. Li, J. Yang, H. Su, J. Zhu, et al., “Grounding dino: Marrying dino with grounded pre-training for open-set object detection,” in European Conference on Computer Vision (ECCV), 2024

  2. [10]

    An open and comprehensive pipeline for unified object grounding and detection,

    X. Zhao, Y . Chen, S. Xu, X. Li, X. Wang, Y . Li, and H. Huang, “An open and comprehensive pipeline for unified object grounding and detection,” arXiv preprint arXiv:2401.02361 , 2024

  3. [11]

    Multiway- adapter: Adapting multimodal large language models for scalable image- text retrieval,

    Z. Long, G. Killick, R. McCreadie, and G. A. Camarasa, “Multiway- adapter: Adapting multimodal large language models for scalable image- text retrieval,” in IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) , 2024

  4. [12]

    Automatic design of adapter architectures for enhanced parameter-efficient fine-tuning,

    H. Zhou, X. Wan, I. Vuli ´c, and A. Korhonen, “Automatic design of adapter architectures for enhanced parameter-efficient fine-tuning,” in IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), 2024

  5. [13]

    Test-time distribution learning adapter for cross-modal visual reasoning,

    Y . Zhang and C. Zhang, “Test-time distribution learning adapter for cross-modal visual reasoning,” in IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) , 2024

  6. [14]

    Adapter-based incremental learning for face forgery detection,

    C. Gao, Q. Xu, P. Qiao, K. Xu, X. Qian, and Y . Dou, “Adapter-based incremental learning for face forgery detection,” in IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) , 2024

  7. [15]

    Parameter-efficient transfer learning for nlp,

    N. Houlsby, A. Giurgiu, S. Jastrzebski, B. Morrone, Q. De Laroussilhe, A. Gesmundo, M. Attariyan, and S. Gelly, “Parameter-efficient transfer learning for nlp,” in International Conference on Machine Learning (ICML), 2019, pp. 2790–2799

  8. [16]

    Learning to prompt for vision- language models,

    K. Zhou, J. Yang, C. C. Loy, and Z. Liu, “Learning to prompt for vision- language models,” International Journal of Computer Vision (IJCV) , 2022

  9. [17]

    Conditional prompt learning for vision-language models,

    K. Zhou, J. Yang, C. C. Loy, and Z. Liu, “Conditional prompt learning for vision-language models,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , 2022, pp. 16816–16825

  10. [18]

    Visual prompt tuning,

    M. Jia, L. Tang, B.-C. Chen, C. Cardie, S. Belongie, B. Hariharan, and S.-N. Lim, “Visual prompt tuning,” in European Conference on Computer Vision (ECCV) , 2022

  11. [19]

    Visual prompt tuning for weakly supervised phrase grounding,

    P. Lin, Z. Yu, M. Lu, F. Feng, R. Li, and X. Wang, “Visual prompt tuning for weakly supervised phrase grounding,” in IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) , 2024

  12. [20]

    Enhanced transfer learning with efficient modeling and adaptive fusion of knowledge via prompt tuning,

    M. Xu, Z. Guo, Y . Zeng, and D. Xiong, “Enhanced transfer learning with efficient modeling and adaptive fusion of knowledge via prompt tuning,” in IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) , 2024

  13. [21]

    Cophtc: Contrastive learning with prompt tuning for hierarchical text classification,

    F. Cai, Z. Zhang, D. Liu, X. Fang, and J. Tong, “Cophtc: Contrastive learning with prompt tuning for hierarchical text classification,” in IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), 2024

  14. [22]

    To- wards large-scale small object detection: Survey and benchmarks,

    G. Cheng, X. Yuan, X. Yao, K. Yan, Q. Zeng, X. Xie, and J. Han, “To- wards large-scale small object detection: Survey and benchmarks,” IEEE Transactions on Pattern Analysis and Machine Intelligence (TPAMI), pp. 1–20, 2023

  15. [23]

    Focal loss for dense object detection,

    T.-Y . Lin, P. Goyal, R. Girshick, K. He, and P. Doll ´ar, “Focal loss for dense object detection,” in IEEE/CVF International Conference on Computer Vision (ICCV) , 2017, pp. 2980–2988

  16. [24]

    FCOS: Fully convolutional one-stage object detection,

    Z. Tian, C. Shen, H. Chen, and T. He, “FCOS: Fully convolutional one-stage object detection,” in IEEE/CVF International Conference on Computer Vision (ICCV) , 2019, pp. 9627–9636

  17. [25]

    Faster R-CNN: Towards real-time object detection with region proposal networks,

    S. Ren, K. He, R. Girshick, and J. Sun, “Faster R-CNN: Towards real-time object detection with region proposal networks,” in Annual Conference on Neural Information Processing Systems (NeurIPS) , 2015

  18. [26]

    Sparse R-CNN: End-to-end object detection with learnable proposals,

    P. Sun, R. Zhang, Y . Jiang, T. Kong, C. Xu, W. Zhan, M. Tomizuka, L. Li, Z. Yuan, C. Wang, and P. Luo, “Sparse R-CNN: End-to-end object detection with learnable proposals,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , 2021

  19. [27]

    End-to-end object detection with transformers,

    N. Carion, F. Massa, G. Synnaeve, N. Usunier, A. Kirillov, and S. Zagoruyko, “End-to-end object detection with transformers,” in European Conference on Computer Vision (ECCV) , 2020

  20. [28]

    Deformable DETR: Deformable transformers for end-to-end object detection,

    X. Zhu, W. Su, L. Lu, B. Li, X. Wang, and J. Dai, “Deformable DETR: Deformable transformers for end-to-end object detection,” in International Conference on Learning Representations (ICLR) , 2020

  21. [29]

    Srp-uod: Multi-branch hybrid network framework based on structural re-parameterization for underwater small object detection,

    J. Shi and W. Wu, “Srp-uod: Multi-branch hybrid network framework based on structural re-parameterization for underwater small object detection,” in IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) , 2024, pp. 2715–2719

  22. [30]

    Sod-uav: Small object detection for unmanned aerial vehicle images via improved yolov7,

    Y . Li, Y . Wang, Z. Ma, X. Wang, and Y . Tang, “Sod-uav: Small object detection for unmanned aerial vehicle images via improved yolov7,” in IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), 2024

  23. [31]

    Small object detection on the water surface based on radar and camera fusion,

    J. Zhu, Y . Yang, and Y . Cheng, “Small object detection on the water surface based on radar and camera fusion,” in IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) , 2024

  24. [32]

    Dynamic local and global context exploration for small object detection,

    Z. Zhang, P. Gong, H. Sun, P. Wu, and X. Yang, “Dynamic local and global context exploration for small object detection,” in IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), 2023

  25. [33]

    Parameter efficient transfer learning for various speech processing tasks,

    S. Otake, R. Kawakami, and N. Inoue, “Parameter efficient transfer learning for various speech processing tasks,” in IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) , 2023

  26. [34]

    Attention is all you need,

    A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, L. Kaiser, and I. Polosukhin, “Attention is all you need,” in Annual Conference on Neural Information Processing Systems (NeurIPS) , 2017, pp. 6000–6010

  27. [35]

    Layer normalization,

    J. L. Ba, J. R. Kiros, and G. E. Hinton, “Layer normalization,” in NeurIPS Deep Learning Symposium , 2016

  28. [36]

    GLU variants improve transformer models,

    N. Shazeer, “GLU variants improve transformer models,” arXiv preprint arXiv:2002.05202, 2020

  29. [37]

    Bert: Pre-training of deep bidirectional transformers for language understanding,

    J. Devlin, M.-W. Chang, K. Lee, and K. Toutanova, “Bert: Pre-training of deep bidirectional transformers for language understanding,” in Annual Conference of the North American Chapter of the Association for Computational Linguistics (NAACL) , 2019

  30. [38]

    Swin transformer: Hierarchical vision transformer using shifted windows,

    Z. Liu, Y . Lin, Y . Cao, H. Hu, Y . Wei, Z. Zhang, S. Lin, and B. Guo, “Swin transformer: Hierarchical vision transformer using shifted windows,” in IEEE/CVF International Conference on Computer Vision (ICCV), 2021

  31. [39]

    Objects365: A large-scale, high-quality dataset for object detection,

    S. Shao, Z. Li, T. Zhang, C. Peng, G. Yu, X. Zhang, J. Li, and J. Sun, “Objects365: A large-scale, high-quality dataset for object detection,” in IEEE/CVF International Conference on Computer Vision (ICCV) , 2019

  32. [40]

    Mdetr-modulated detection for end-to-end multi- modal understanding,

    A. Kamath et al., “Mdetr-modulated detection for end-to-end multi- modal understanding,” in IEEE/CVF International Conference on Computer Vision (ICCV) , 2021, pp. 1780–1790

  33. [41]

    Kosmos-2: Grounding multimodal large language models to the world,

    Z. Peng, W. Wang, L. Dong, Y . Hao, S. Huang, S. Ma, and F. Wei, “Kosmos-2: Grounding multimodal large language models to the world,” arXiv preprint arXiv:2306.14824 , 2023

  34. [42]

    V3det: Vast vocabulary visual detection dataset,

    J. Wang, P. Zhang, T. Chu, Y . Cao, Y . Zhou, T. Wu, B. Wang, C. He, and D. Lin, “V3det: Vast vocabulary visual detection dataset,” in IEEE/CVF International Conference on Computer Vision (ICCV) , 2023, pp. 19844– 19854

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.