REVIEW 5 major objections 6 minor 69 references
Enhancing Parameter-Efficient Fine-Tuning of Vision Transformers through Frequency-Based Adaptation
T0 review · 5 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read Frequency filter lifts fine-tuning accuracy by 1 to 16 points: the paper claims inserting a learnable FFT-based module between frozen ViT blocks lets parameter-efficient methods capture high-frequency image details, with gains from 1% to…
desk verdict The headline 16% Adapter gain is a baseline artifact; the paper's honest contribution is a ~1-2% gain over scale-shift, undermined by an internally inconsistent theory section. 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 central object is the FreqFit layer: a learnable complex filter $K \in \mathbb{C}^{H \times W \times D}$ that is multiplied elementwise with the 2D fast Fourier transform of the feature map $X \in \mathbb{R}^{H \times W \times D}$ along the spatial dimensions, after which an inverse FFT, a per-channel scale $\alpha$ and shift $\beta$, and a residual connection return the result to the spatial domain. The layer does spectral modulation: because the FFT mixes information across all spatial positions, a single filter can amplify or suppress whole frequency bands in a way that per-token spatial updates cannot. The paper's Theorem 1 claims that FreqFit with $O(1)$ parameters per channel produces transformations that spatial-domain PEFT methods cannot replicate, and Theorem 2 claims FreqFit and spatial PEFT are complementary; both proofs rely on the contrast between FreqFit's within-channel, across-token mixing and LoRA-style within-token, across-channel updates.
What would settle it
Re-run Table 1 on VTAB-1k with ImageNet-21K weights while tuning the Adapter baseline's reduction factor per published practice, then add FreqFit and measure the gain; if the re-tuned Adapter baseline rises to around 70 mean accuracy and the FreqFit-Adapter gain shrinks to the roughly 1-2% seen with LoRA, the strongest reported result fails.
Extended reading notes
Core claim
FreqFit is a frequency fine-tuning module inserted between ViT blocks, computing $\hat{X} = X + \alpha \odot F^{-1}(F(X) \odot K) + \beta$, where $F$ is the 2D fast Fourier transform along the spatial dimensions, $K \in \mathbb{C}^{H \times W \times D}$ is a learnable filter with one complex weight per frequency per channel, and $\alpha, \beta$ are learned per-channel scale and shift. The paper's central claim is that this module, with $O(1)$ parameters per channel, changes feature maps in ways spatial-domain PEFT methods cannot, because the FFT couples all spatial positions while a low-rank or per-token update does not. Combining FreqFit with methods such as LoRA, Adapter, VPT, BOFT, VeRA, and FourierFT is claimed to give consistent accuracy gains on 24 datasets, with mean gains of 0.8% to 16.4% on VTAB-1k with ImageNet-21K weights and a gain above 10% for FreqFit-LoRA on CIFAR-100. The largest reported gains occur with the weakest spatial baselines and the smallest with already-strong methods, consistent with the paper's complementarity argument.
Load-bearing premise
The reported gains assume the baseline PEFT methods, especially the Adapter-64 configuration that scores 56.0 mean accuracy on VTAB-1k, are implemented and tuned at a representative level; if that baseline is undertuned, the +16.4% headline gain comes from the comparison rather than from FreqFit.
Editorial extensions
If this is right
- Any spatial-domain PEFT method can be upgraded by inserting FreqFit before each ViT block, with the largest relative gains where the base method is weakest (Adapter and Linear) and smaller gains where it is already strong (LoRA, VeRA).
- FreqFit used alone with a linear head rivals or beats full fine-tuning on some VTAB-1k tasks, meaning frequency modulation can substitute for updating the backbone.
- FreqFit can be placed inside self-attention after the QKV projection, giving gains up to 6% on KITTI-Dist with no attention-weight updates.
- The learned filters specialize per task and per layer into high-pass, low-pass, and band-pass patterns, supporting the claim that the model adapts its frequency response to the data.
- FreqFit outperforms scale-and-shift feature transformation by about 1.2% mean accuracy across the same methods, so the frequency modulation, not merely scaling and shifting, carries the benefit.
Reading between the lines
- Because the proofs hinge on the FFT's global across-token mixing, the same complementarity should hold for any global linear token-mixing operator, such as a learned global convolution, so the frequency framing is plausibly one instance of a broader global-versus-token-local decomposition of PEFT design space.
- The near-parameter-free cost of the filter suggests a testable extension where FreqFit is added to fully fine-tuned or heavily tuned models; the paper only tests frozen-backbone PEFT settings.
- The above-10% CIFAR-100 gain for FreqFit-LoRA without Mixup or strong augmentation hints that spectral modulation may substitute for part of what augmentation provides, predicting that FreqFit's gain shrinks when strong augmentation is used.
- Since the paper reports FreqFit combined with CLIP, a natural unstated extension is applying the module to dense prediction and multi-modal heads, where high-frequency detail matters for segmentation and detection.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes FreqFit, a plug-in module inserted between ViT blocks that transforms features with an FFT, a learnable frequency-domain filter, an inverse FFT, and a per-channel scale-and-shift, followed by a residual connection. The module is designed to be combined with existing PEFT methods such as Linear probing, Bias tuning, Adapter, VPT, LoRA, BOFT, VeRA, and FourierFT. The authors report extensive experiments on VTAB-1k and FGVC tasks with ImageNet-21K, MAE, MoCo, and CLIP pretrained ViT-B/16 models, claiming consistent improvements of 1% to 16% over the base PEFT methods, with the largest gain being +16.4% for FreqFit-Adapter-64 on VTAB-1k. The paper also provides two theorems intended to show that FreqFit performs transformations that spatial-domain PEFT methods cannot replicate.
Significance. If the central claims held, FreqFit would be a simple, architecture-agnostic module with broad applicability, and the paper would be a useful contribution to the PEFT literature. The paper does make a genuine effort to cover many datasets, multiple pretraining strategies, and several PEFT families, and it provides source code. However, the empirical evidence as presented does not support the headline gain: the largest reported improvement is an artifact of an implausibly weak Adapter baseline, the abstract's 'consistently improves' claim is contradicted by the paper's own tables, and the theoretical argument contains a clear error about parameter complexity. The comparison against a simple scale-shift control, which the paper itself includes, reduces the claimed benefit of the frequency-filtering mechanism to roughly 1-2% on average, with no error bars on the main tables.
major comments (5)
- [Table 1 and Section 4] Table 1 reports an Adapter-64 baseline of 56.0 mean accuracy on VTAB-1k with ImageNet-21K weights, which is about 16 points below every other PEFT row in the same table (VPT 72.0, LoRA 73.1, BOFT 71.2, VeRA 72.8, FourierFT 72.8) and well below published Adapter results on this benchmark. Section 4 states that a single default configuration was used with no search over the Adapter reduction factor. The headline gain of +16.4% for FreqFit-Adapter is therefore likely an artifact of an undertuned baseline rather than evidence for the method. The supplementary Table 6 confirms this concern: adding a plain scale-shift to the same Adapter-64 baseline yields +14.8, leaving FreqFit's edge over scale-shift at only +1.6.
- [Abstract vs. Tables 1 and 2] The abstract claims that FreqFit 'consistently improves performance' with gains ranging from 1% to 16%. This is contradicted by the paper's own results: Table 2 shows FreqFit-Bias on MAE degrades to 53.8 from 54.6 (-0.8), and Table 1 contains multiple negative per-task differences, such as FreqFit-Linear on Retinopathy at 72.9 versus 74.0. The word 'consistently' is not supported by the data, and the lower bound of the claimed gain range is not respected by these entries.
- [Section 3 and Appendix, Theorem 1] Theorem 1 and the surrounding text state that FreqFit uses O(1) parameters. This is incorrect: the learnable filter K in Eq. (5) has H x W x D trainable entries, and Algorithm 1 in the appendix defines a parameter tensor of shape h x w x dim x 2, which scales with the feature map and embedding dimensions. The claim that the filter can be 'parameterized efficiently ... regardless the input dimensions' is not reflected in the implementation. This error undermines the theoretical contribution as stated.
- [Fig. 4 and supplementary Table 6] The paper's own comparison against scale-shift shows that most of the gain over the raw baselines is captured by the scale-shift components alone. In supplementary Table 6, scale-shift raises Adapter-64 from 56.0 to 70.8, while FreqFit-Adapter reaches 72.4; the incremental gains of FreqFit over scale-shift are 1.6 for Adapter, 2.6 for LoRA, 1.4 for VPT, and 0.1 for Bias. Since scale-shift (alpha, beta) is the final stage of FreqFit in Eq. (7), the experiments do not isolate the effect of frequency-domain modulation, and the central mechanism of the paper is not established as the cause of the reported improvements.
- [Tables 1 and 2] Tables 1 and 2 report no error bars or number of seeds for the VTAB-1k results. Several claimed gains are small (FreqFit-LoRA +1.6, FreqFit-VeRA +0.8, FreqFit-FourierFT +1.4), and without variance estimates these differences cannot be distinguished from training noise. Only Table 3 reports standard deviations, for a subset of FGVC experiments, and the main benchmark tables do not allow the reader to assess the stability of the improvements.
minor comments (6)
- [Section 3] There is a typo: 'consituents' should be 'constituents' in the paragraph on the Fourier transform.
- [Appendix, Algorithm 1] Algorithm 1 initializes a parameter named 'self.filter_weight' but then uses 'self.complex_weight' in the forward pass; the code as written would not run.
- [Table 2] The column header 'Sun395' should be 'Sun397' to match the VTAB-1k dataset naming used elsewhere in the paper.
- [Throughout] The paper alternates between the spellings 'FreqFit' and 'FreqFiT' (e.g., the title uses 'FreqFit' while Sections 5 and 6 use 'FreqFiT'); please use one consistent spelling.
- [Section 5] In the paragraph on Adapter, the text says the improvement is with 'Imagenet-1K pre-trained weights,' but Table 1 is based on ImageNet-21K; this inconsistency should be corrected.
- [Appendix, Theorem 1 proof] The proof notation in Eqs. (15)-(17) is confusing: the inverse transform uses U_H^H and U_W^H but the text calls them conjugate transposes, and the claim that F is a 'full-rank diagonal matrix' is inconsistent with K being a general 3D filter; the proof would benefit from clearer definitions.
Circularity Check
No significant circularity: FreqFit's gains are measured against external PEFT baselines, and its theoretical claims are algebraic expressiveness arguments rather than fitted re-predictions.
full rationale
The paper's central claim is empirical: adding the FreqFit module to existing PEFT methods raises downstream accuracy on VTAB-1k and FGVC benchmarks. These gains are computed against external baselines (Adapter, LoRA, VPT, BOFT, VeRA, FourierFT) and are therefore not derived from the paper's own fitted parameters or definitions. No parameter is fit to a subset of data and then reported as a prediction of a closely related quantity; the baselines are control conditions, not constructions derived from FreqFit. Theorems 1 and 2 are algebraic/complexity arguments: FreqFit is a full-rank frequency-domain filter (via unitary FFT matrices) while LoRA has rank at most r, and the two operation classes are shown, by their defining equations, to capture different dependencies. Even if those theorems are debatable on correctness grounds (e.g., the O(1) parameter claim is not matched by the h*w*dim filter implementation), their conclusions do not reduce to the measured accuracy values or to post-hoc fits. The high-frequency visualization in Sec. 6 is observational support for a hypothesis, not an input that forces the reported gains; the paper explicitly says the plots 'suggest' and 'potentially' explain the improvements. There are no load-bearing self-citations: the cited works on high-frequency features are independent prior literature, and no uniqueness theorem from the authors' own previous work is invoked to forbid alternatives. The concern that the Adapter-64 baseline (56.0) is much weaker than other rows and that a plain scale-shift recovers most of its gain (+14.8, leaving FreqFit +1.6 over scale-shift) is a threat to the validity of the headline +16.4% comparison, but it is a benchmarking/correctness issue, not circularity: the baseline is not obtained from FreqFit's equations or fitted values. Accordingly, the derivation chain is self-contained against external evidence and no step reduces to its own inputs by construction.
Assumptions & free parameters
free parameters (4)
- K (learnable frequency filter) =
H x W x D tensor, optimized by SGD
- alpha and beta (scale and shift) =
D-dimensional, initialized to ones and zeros, learned
- per-task learning rate and weight decay =
grid searched per task, ranges in Table 5
- filter initialization scale =
0.02
assumptions (4)
- standard math FFT is unitary and preserves rank when the filter has no zero entries
- domain assumption High-frequency features are important for classification performance
- domain assumption LoRA and other spatial-domain PEFT methods do not aggregate information across spatial positions
- ad hoc to paper A frequency-domain diagonal filter is not replicable by a channel-wise low-rank update
invented entities (1)
-
FreqFit module
Cite this review
Pith. "Pith review of Enhancing Parameter-Efficient Fine-Tuning of Vision Transformers through Frequency-Based Adaptation." pith.science (2026). https://pith.science/paper/PJCK3TXL
@misc{pith2026241119297,
author = {Pith},
title = {Pith review of: Enhancing Parameter-Efficient Fine-Tuning of Vision Transformers through Frequency-Based Adaptation},
year = {2026},
howpublished = {\url{https://pith.science/paper/PJCK3TXL}},
note = {Machine review of arXiv:2411.19297}
}
read the original abstract
Adapting vision transformer foundation models through parameter-efficient fine-tuning (PEFT) methods has become increasingly popular. These methods optimize a limited subset of parameters, enabling efficient adaptation without the need to fine-tune the entire model while still achieving competitive performance. However, traditional PEFT methods may limit the model's capacity to capture complex patterns, especially those associated with high-frequency spectra. This limitation becomes particularly problematic as existing research indicates that high-frequency features are crucial for distinguishing subtle image structures. To address this issue, we introduce FreqFit, a novel Frequency Fine-tuning module between ViT blocks to enhance model adaptability. FreqFit is simple yet surprisingly effective, and can be integrated with all existing PEFT methods to boost their performance. By manipulating features in the frequency domain, our approach allows models to capture subtle patterns more effectively. Extensive experiments on 24 datasets, using both supervised and self-supervised foundational models with various state-of-the-art PEFT methods, reveal that FreqFit consistently improves performance over the original PEFT methods with performance gains ranging from 1% to 16%. For instance, FreqFit-LoRA surpasses the performances of state-of-the-art baselines on CIFAR100 by more than 10% even without applying regularization or strong augmentation. For reproducibility purposes, the source code is available at https://github.com/tsly123/FreqFiT.
Figures
Figures from the paper (10 more)
Reference graph
Works this paper leans on
-
[1]
Novel dataset for fine-grained image cate- gorization
Khosla Aditya, Jayadevaprakash Nityananda, Yao Bangpe ng, and Fei-Fei Li. Novel dataset for fine-grained image cate- gorization. In Proceedings of the First W orkshop on Fine- Grained Visual Categorization, IEEE Conference on Com- puter Vision and Pattern Recognition. IEEE, Springs, USA , 2011. 4
work page 2011
-
[2]
Exploring visual prompts for adapting large - scale models
Hyojin Bahng, Ali Jahanian, Swami Sankaranarayanan, an d Phillip Isola. Exploring visual prompts for adapting large - scale models. arXiv:2203.17274, 2022. 2
arXiv 2022
-
[3]
Improving vision transformers by revis- iting high-frequency components
Jiawang Bai, Li Y uan, Shu-Tao Xia, Shuicheng Yan, Zhifeng Li, and Wei Liu. Improving vision transformers by revis- iting high-frequency components. In European Conference on Computer Vision, pages 1–18. Springer, 2022. 1, 3, 6, 7
work page 2022
-
[4]
Visual prompting via image inpaint- ing
Amir Bar, Y ossi Gandelsman, Trevor Darrell, Amir Glober - son, and Alexei Efros. Visual prompting via image inpaint- ing. NIPS, 35:25005–25017, 2022. 2
work page 2022
-
[5]
Tinytl: Reduce memory, not parameters for efficient on-device learn - ing
Han Cai, Chuang Gan, Ligeng Zhu, and Song Han. Tinytl: Reduce memory, not parameters for efficient on-device learn - ing. NIPS, 33:11285–11297, 2020. 1, 2, 4, 6
work page 2020
-
[6]
Visual prompting for adversarial robustness
Aochuan Chen, Peter Lorenz, Y uguang Yao, Pin-Y u Chen, and Sijia Liu. Visual prompting for adversarial robustness . In ICASSP, pages 1–5. IEEE, 2023. 2
work page 2023
-
[7]
Conv- adapter: Exploring parameter efficient transfer learning f or convnets
Hao Chen, Ran Tao, Han Zhang, Yidong Wang, Wei Ye, Jindong Wang, Guosheng Hu, and Marios Savvides. Conv- adapter: Exploring parameter efficient transfer learning f or convnets. arXiv:2208.07463, 2022. 2
arXiv 2022
-
[8]
Adaptformer: Adapting vision transformers for scalable visual recognit ion
Shoufa Chen, Chongjian Ge, Zhan Tong, Jiangliu Wang, Yibing Song, Jue Wang, and Ping Luo. Adaptformer: Adapting vision transformers for scalable visual recognit ion. arXiv:2205.13535, 2022. 1, 2, 4
arXiv 2022
Show all 69 references
-
[9]
An empirical study of training self-supervised vision transformers
Xinlei Chen, Saining Xie, and Kaiming He. An empirical study of training self-supervised vision transformers. arXiv preprint arXiv:2104.02057, 2021. 4, 6, 8
2021 arXiv
-
[10]
Vision transformer adapter for dense predictions
Zhe Chen, Y uchen Duan, Wenhai Wang, Junjun He, Tong Lu, Jifeng Dai, and Y u Qiao. Vision transformer adapter for dense predictions. arXiv:2205.08534, 2022. 2
2022 arXiv
-
[11]
Fast fourier convolu - tion
Lu Chi, Borui Jiang, and Yadong Mu. Fast fourier convolu - tion. Advances in Neural Information Processing Systems , 33:4479–4488, 2020. 2, 7
2020
-
[12]
Imagenet: A large-scale hierarchical image database
Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pages 248–255. Ieee, 2009. 4, 6
2009
-
[13]
Circnn: accelerating and compressing deep neural net - works using block-circulant weight matrices
Caiwen Ding, Siyu Liao, Yanzhi Wang, Zhe Li, Ning Liu, Y ouwei Zhuo, Chao Wang, Xuehai Qian, Y u Bai, Geng Y uan, et al. Circnn: accelerating and compressing deep neural net - works using block-circulant weight matrices. In Proceedings of the 50th Annual IEEE/ACM International...
2017
-
[14]
Lpt: Long-tailed prompt tuning for image classifica- tion
Bowen Dong, Pan Zhou, Shuicheng Yan, and Wangmeng Zuo. Lpt: Long-tailed prompt tuning for image classifica- tion. arXiv:2210.01033, 2022. 2
2022 arXiv
-
[15]
Attention is not all you need: Pure attention loses rank dou- bly exponentially with depth
Yihe Dong, Jean-Baptiste Cordonnier, and Andreas Louk as. Attention is not all you need: Pure attention loses rank dou- bly exponentially with depth. In ICML, pages 2793–2803. PMLR, 2021. 5
2021
-
[16]
An image is worth 16x16 words: Trans- formers for image recognition at scale
Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesniko v, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Syl- vain Gelly, et al. An image is worth 16x16 words: Trans- formers for image recognition at scale. arXiv:2010.1192...
2010 arXiv
-
[17]
Parameter-efficient fine- tuning with discrete fourier transform
Ziqi Gao, Qichao Wang, Aochuan Chen, Zijing Liu, Bingzh e Wu, Liang Chen, and Jia Li. Parameter-efficient fine- tuning with discrete fourier transform. arXiv preprint arXiv:2405.03003, 2024. 2, 15
2024 arXiv
-
[18]
Fine-grained car detection for vi- sual census estimation
Timnit Gebru, Jonathan Krause, Yilun Wang, Duyun Chen, Jia Deng, and Li Fei-Fei. Fine-grained car detection for vi- sual census estimation. In Proceedings of the AAAI Confer- ence on Artificial Intelligence , 2017. 4
2017
-
[19]
Adaptive fourier neural operators: Efficient token mixers for transformers
John Guibas, Morteza Mardani, Zongyi Li, Andrew Tao, An - ima Anandkumar, and Bryan Catanzaro. Adaptive fourier neural operators: Efficient token mixers for transformers. arXiv preprint arXiv:2111.13587, 2021. 1, 2, 6, 7
2021 arXiv
-
[20]
Masked autoencoders are scalable vision learners
Kaiming He, Xinlei Chen, Saining Xie, Yanghao Li, Piotr Doll´ ar, and Ross Girshick. Masked autoencoders are scalable vision learners. In CVPR, pages 16000–16009, 2022. 4, 6, 8
2022
-
[21]
Parameter-efficient transfe r learning for nlp
Neil Houlsby, Andrei Giurgiu, Stanislaw Jastrzebski, Bruna Morrone, Quentin De Laroussilhe, Andrea Gesmundo, Mona Attariyan, and Sylvain Gelly. Parameter-efficient transfe r learning for nlp. In ICML, pages 2790–2799. PMLR, 2019. 1, 2, 4
2019
-
[22]
Lora: Low-rank adaptation of large language models
Edward J Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen- Zhu, Y uanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. Lora: Low-rank adaptation of large language models. arXiv:2106.09685, 2021. 1, 2, 4, 6
2021 arXiv
-
[23]
Vi- sual prompt tuning
Menglin Jia, Luming Tang, Bor-Chun Chen, Claire Cardie , Serge Belongie, Bharath Hariharan, and Ser-Nam Lim. Vi- sual prompt tuning. In ECCV, pages 709–727. Springer, 2022. 1, 2, 4, 5, 8, 13, 14 9
2022
-
[24]
V era: V ector-based random matrix adaptation.arXiv preprint arXiv:2310.11454, 2023
Dawid J Kopiczko, Tijmen Blankevoort, and Y uki M Asano. V era: V ector-based random matrix adaptation.arXiv preprint arXiv:2310.11454, 2023. 2, 4, 6
2023 arXiv
-
[25]
Single-image depth estimation based on fourier do- main analysis
Jae-Han Lee, Minhyeok Heo, Kyung-Rae Kim, and Chang- Su Kim. Single-image depth estimation based on fourier do- main analysis. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition , pages 330–339, 2018. 2, 7
2018
-
[26]
Fnet: Mixing tokens with fourier transforms
James Lee-Thorp, Joshua Ainslie, Ilya Eckstein, and Sa nti- ago Ontanon. Fnet: Mixing tokens with fourier transforms. arXiv preprint arXiv:2105.03824, 2021. 2
2021 arXiv
-
[27]
Scaling & shifting your features: A new baseline for efficien t model tuning
Dongze Lian, Daquan Zhou, Jiashi Feng, and Xinchao Wang . Scaling & shifting your features: A new baseline for efficien t model tuning. arXiv:2210.08823, 2022. 1, 2, 4
2022 arXiv
-
[28]
Hierar- chical side-tuning for vision transformers
Weifeng Lin, Ziheng Wu, Jiayu Chen, Wentao Yang, Mingxin Huang, Jun Huang, and Lianwen Jin. Hierar- chical side-tuning for vision transformers. arXiv preprint arXiv:2310.05393, 2023. 4
2023 arXiv
-
[29]
Parameter-efficient orthogonal finetuning via b ut- terfly factorization
Weiyang Liu, Zeju Qiu, Yao Feng, Y uliang Xiu, Y uxuan Xue, Longhui Y u, Haiwen Feng, Zhen Liu, Juyeon Heo, Songyou Peng, et al. Parameter-efficient orthogonal finetuning via b ut- terfly factorization. arXiv preprint arXiv:2311.06243, 2023. 2, 4, 6
2023 arXiv
-
[30]
Peft: State-of-the-art parameter-efficient fine-tuning me th- ods
Sourab Mangrulkar, Sylvain Gugger, Lysandre Debut, Y ounes Belkada, Sayak Paul, and Benjamin Bossan. Peft: State-of-the-art parameter-efficient fine-tuning me th- ods. https://github.com/huggingface/peft ,
-
[31]
Automated flower classification over a large number of classes
Maria-Elena Nilsback and Andrew Zisserman. Automated flower classification over a large number of classes. In 2008 Sixth Indian conference on computer vision, graphics & im- age processing, pages 722–729. IEEE, 2008. 4
2008
-
[32]
How do vision transformers work? arXiv preprint arXiv:2202.06709, 2022
Namuk Park and Songkuk Kim. How do vision transformers work? arXiv preprint arXiv:2202.06709, 2022. 1, 3, 6, 7
2022 arXiv
-
[33]
Adapterfusion: Non-destructive task composition for transfer learning
Jonas Pfeiffer, Aishwarya Kamath, Andreas R¨ uckl´ e, Kyunghyun Cho, and Iryna Gurevych. Adapterfusion: Non-destructive task composition for transfer learning. arXiv:2005.00247, 2020. 2, 4
2005 arXiv
-
[34]
Adapterhub: A framework for adapting transformers
Jonas Pfeiffer, Andreas R¨ uckl´ e, Clifton Poth, Aishwarya Ka- math, Ivan Vuli´ c, Sebastian Ruder, Kyunghyun Cho, and Iryna Gurevych. Adapterhub: A framework for adapting transformers. arXiv:2007.07779, 2020. 2, 4
2007 arXiv
-
[35]
Learn- ing transferable visual models from natural language super - vision
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learn- ing transferable visual models from natural language super - vision. In ICML, pages 8748–8763. PMLR, 2021. 5
2021
-
[36]
Global filter networks for image classification
Y ongming Rao, Wenliang Zhao, Zheng Zhu, Jiwen Lu, and Jie Zhou. Global filter networks for image classification. Advances in neural information processing systems , 34:980– 993, 2021. 1, 2, 5, 6, 7
2021
-
[37]
Fast-fnet: Accelerating transformer en- coder models via efficient fourier layers
Nurullah Sevim, Ege Ozan ¨Ozyedek, Furkan S ¸ ahinuc ¸, and Aykut Koc ¸. Fast-fnet: Accelerating transformer en- coder models via efficient fourier layers. arXiv preprint arXiv:2209.12816, 2022. 2
2022 arXiv
-
[38]
Mul- titask vision-language prompt tuning
Sheng Shen, Shijia Yang, Tianjun Zhang, Bohan Zhai, Joseph E Gonzalez, Kurt Keutzer, and Trevor Darrell. Mul- titask vision-language prompt tuning. arXiv:2211.11720,
-
[39]
Inception transformer
Chenyang Si, Weihao Y u, Pan Zhou, Yichen Zhou, Xinchao Wang, and Shuicheng Yan. Inception transformer. Advances in Neural Information Processing Systems, 35:23495–23509,
-
[40]
Fft-based dynamic toke n mixer for vision
Y uki Tatsunami and Masato Taki. Fft-based dynamic toke n mixer for vision. arXiv preprint arXiv:2303.03932, 2023. 2, 6, 7
2023 arXiv
-
[41]
Mlp- mixer: An all-mlp architecture for vision
Ilya O Tolstikhin, Neil Houlsby, Alexander Kolesnikov , Lu- cas Beyer, Xiaohua Zhai, Thomas Unterthiner, Jessica Y ung, Andreas Steiner, Daniel Keysers, Jakob Uszkoreit, et al. Mlp- mixer: An all-mlp architecture for vision. Advances in neu- ral information processing systems ...
2021
-
[42]
Building a bird recognition app and large scale dataset with citizen scientists: The fine print in fine-grain ed dataset collection
Grant V an Horn, Steve Branson, Ryan Farrell, Scott Habe r, Jessie Barry, Panos Ipeirotis, Pietro Perona, and Serge Be- longie. Building a bird recognition app and large scale dataset with citizen scientists: The fine print in fine-grain ed dataset collection. In Proceedings of ...
2015
-
[43]
Attention is all you need
Ashish V aswani, Noam Shazeer, Niki Parmar, Jakob Uszko - reit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. NIPS, 30, 2017. 5
2017
-
[44]
Pivot: Prompting for video con- tinual learning
Andr´ es Villa, Juan Le´ on Alc´ azar, Motasem Alfarra, Kumail Alhamoud, Julio Hurtado, Fabian Caba Heilbron, Alvaro Soto, and Bernard Ghanem. Pivot: Prompting for video con- tinual learning. In CVPR, pages 24214–24223, 2023. 2
2023
-
[45]
The caltech-ucsd birds-200-2011 dataset
Catherine Wah, Steve Branson, Peter Welinder, Pietro P er- ona, and Serge Belongie. The caltech-ucsd birds-200-2011 dataset. 2011. 4
2011
-
[46]
Anti-oversmoothing in deep vision trans- formers via the fourier domain analysis: From theory to prac - tice
Peihao Wang, Wenqing Zheng, Tianlong Chen, and Zhangyang Wang. Anti-oversmoothing in deep vision trans- formers via the fourier domain analysis: From theory to prac - tice. arXiv:2203.05962, 2022. 1, 3, 6
2022 arXiv
-
[47]
P2p: Tuning pre-trained image models for point cloud analysis with point-to-pixel prompting
Ziyi Wang, Xumin Y u, Y ongming Rao, Jie Zhou, and Jiwen Lu. P2p: Tuning pre-trained image models for point cloud analysis with point-to-pixel prompting. NIPS, 35:14388– 14402, 2022. 2
2022
-
[48]
Dualprompt: Complementary prompting for rehearsal-free continual learning
Zifeng Wang, Zizhao Zhang, Sayna Ebrahimi, Ruoxi Sun, Han Zhang, Chen-Y u Lee, Xiaoqi Ren, Guolong Su, Vin- cent Perot, Jennifer Dy, et al. Dualprompt: Complementary prompting for rehearsal-free continual learning. In ECCV, pages 631–648. Springer, 2022. 2
2022
-
[49]
Learning to prompt for continual learning
Zifeng Wang, Zizhao Zhang, Chen-Y u Lee, Han Zhang, Ruoxi Sun, Xiaoqi Ren, Guolong Su, Vincent Perot, Jen- nifer Dy, and Tomas Pfister. Learning to prompt for continual learning. In CVPR, pages 139–149, 2022. 1, 2
2022
-
[50]
Generative visual prompt: Unifying distributional control of pre-trained generative models
Chen Henry Wu, Saman Motamed, Shaunak Srivastava, and Fernando D De la Torre. Generative visual prompt: Unifying distributional control of pre-trained generative models. NIPS, 35:22422–22437, 2022. 2
2022
-
[51]
Fda: Fourier domain adaptation for semantic segmentation
Yanchao Yang and Stefano Soatto. Fda: Fourier domain adaptation for semantic segmentation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recog- nition, pages 4085–4095, 2020. 2, 7 10
2020
-
[52]
Improving visual prompt tun- ing for self-supervised vision transformers
Seungryong Y oo, Eunji Kim, Dahuin Jung, Jungbeom Lee, and Sungroh Y oon. Improving visual prompt tun- ing for self-supervised vision transformers. arXiv preprint arXiv:2306.05067, 2023. 2, 4, 5, 7, 8, 14
2023 arXiv
-
[53]
Bit fit: Simple parameter-efficient fine-tuning for transformer-ba sed masked language-models
Elad Ben Zaken, Shauli Ravfogel, and Y oav Goldberg. Bit fit: Simple parameter-efficient fine-tuning for transformer-ba sed masked language-models. arXiv:2106.10199, 2021. 1, 2, 4, 6
2021
-
[54]
A large-scale study of representation learn ing with the visual task adaptation benchmark
Xiaohua Zhai, Joan Puigcerver, Alexander Kolesnikov, Pierre Ruyssen, Carlos Riquelme, Mario Lucic, Josip Djo- longa, Andre Susano Pinto, Maxim Neumann, Alexey Doso- vitskiy, et al. A large-scale study of representation learn ing with the visual task adaptation benchmark. arXiv...
1910 arXiv
-
[55]
mixup: Beyond empirical risk minimizati on
Hongyi Zhang. mixup: Beyond empirical risk minimizati on. arXiv preprint arXiv:1710.09412, 2017. 4, 5
2017 arXiv
-
[56]
Point- clip: Point cloud understanding by clip
Renrui Zhang, Ziyu Guo, Wei Zhang, Kunchang Li, Xupeng Miao, Bin Cui, Y u Qiao, Peng Gao, and Hongsheng Li. Point- clip: Point cloud understanding by clip. In CVPR, pages 8552–8562, 2022. 2
2022
-
[57]
Neural prompt search
Y uanhan Zhang, Kaiyang Zhou, and Ziwei Liu. Neural prompt search. arXiv:2206.04673, 2022. 2 11 Enhancing Parameter-Efficient Fine-Tuning of Vision Trans formers through Frequency-Based Adaptation Supplementary Material The Supplementary Material is organized as follows:
2022 arXiv
-
[58]
Proofs for Theorem 1 and Theorem 2, Sec. 8
-
[59]
Augmentation and Hyper-parameters for all experiments, Sec. 9
-
[60]
FreqFit pseudo-code, Alg. 1
-
[61]
Per task result for Scaling Shifting, FreqFit-FourierFT , Tab. 6
-
[62]
More visualization of the relative log amplitudes of Four ier- transformed feature maps of different PEFT methods, Fig. 6
-
[63]
More visualization of FreqFit filters on different settin gs
-
[64]
We re-introduce FreqFit and LoRA equations to facilitate the proofs below
Proofs Here, we employ LoRA to ease the proof as this can be general- ized to other PEFT methods. We re-introduce FreqFit and LoRA equations to facilitate the proofs below. Given the input the feature map X∈ RH×W ×D, where each token is a D-dimensional vector spread across an ...
-
[65]
Filter K and BA operate in different domains, i.e., frequency domains and spatial domains, respectively
-
[66]
For each position (in frequency domains) in the H× W grid, K contains a unique filter for each of the D channels
K is a 3D filter that modulates information in both the tokens 2-dimensional H× W and the channel dimension D. For each position (in frequency domains) in the H× W grid, K contains a unique filter for each of the D channels
-
[67]
12 is a token-specific modification, where the D- dimensional representation of each token is updated
AB, in Eq. 12 is a token-specific modification, where the D- dimensional representation of each token is updated. This modification captures relationships within and across chan nels, such as correlations or dependencies among the features in D . As a result, FreqFit introduces i...
-
[68]
12 is the same across all tokens, meaning it only introduces channel-wise dependencies
Whereas, the product BA, Eq. 12 is the same across all tokens, meaning it only introduces channel-wise dependencies. This means XLoRA[h, w, d ] depends only on XLoRA[h, w, d ′] as in Eq. 19. Mathematically: XF reqF iT [h, w, d ]‖ XF reqF it[h′, w ′, d ] ∀h′, w ′ (18) XLoRA[h, ...
-
[69]
Following [ 23], we conduct a grid search to find the tuning-specific hyper-parameters, learning rate, and weig ht decay values using val set of each task, as shown in Tab
Augmentation and Hyper-parameters We use PyTorch to implement all experiments on NVIDIA V100- 32GB GPUs. Following [ 23], we conduct a grid search to find the tuning-specific hyper-parameters, learning rate, and weig ht decay values using val set of each task, as shown in Tab. 5...
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.