REVIEW 4 major objections 4 minor 59 references
TADFormer : Task-Adaptive Dynamic Transformer for Efficient Multi-Task Learning
T0 review · 4 major / 4 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read TADFormer claims that input-conditioned task prompts and a dynamic task filter let a frozen Swin encoder outperform full fine-tuning on multi-task dense prediction while training up to about 8 times fewer parameters.
desk verdict The headline numbers are strong and the ablations are clean, but the TPC operator is underspecified for Swin's windowed attention, so the paper needs a clarifying revision before it can be fully trusted. 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 objects are the Task-Prompt Conditional (TPC) operator and the Dynamic Task Filter (DTF). The TPC operator takes the attention map $A_{TAM} \in \mathbb{R}^{H \times T \times N}$ between $T$ task prompts and $N$ patch tokens from the last MHSA of each stage and produces a task-adapted feature $f_i = f_{qkv} + S_{inv}(a_i \otimes \hat{f}_{qkv})$ for each task $i$; this is what injects task identity into the frozen encoder without training the encoder. The DTF sits between the low-rank down- and up-projections of the task-aware module, generates kernels $\theta_i = \phi(f_i W_{down})$ from global-average-pooled down-projected features, and applies channel-wise convolution so the output is $\tilde{F}_i = \Phi(f_i) + (\theta_i \odot (f_i W_{down})) W_{up}$, with FilterNorm stabilizing training. The two act in sequence: the TPC operator decouples per-task features from task-agnostic ones, and the DTF adapts those features to the specific input while a cross-task projection lets tasks exchange information; a gated skip connection then mixes the task-adapted feature with the block output before the task-specific decoder.
What would settle it
Run the rank-32 TADFormer on PASCAL-Context with the task attention map $A_{TAM}$ replaced by a fixed random map of the same shape, keeping all trained weights fixed; if the reported $\Delta m$ of $+3.63$ does not fall by roughly the $0.39$ points the ablation attributes to the TAM, then the TPC operator is not contributing through the attention it claims to compute.
Extended reading notes
Core claim
At rank 16, TADFormer reports $\Delta m = +2.44\%$ with 3.56M trainable parameters, against $+2.23\%$ with 30.06M for full fine-tuning, and at rank 64 it reports $+4.24\%$ with 7.38M parameters, against $+2.55\%$ with 8.34M for MTLoRA at the same rank. The claim is that this gain comes from two interacting mechanisms: the Task-Prompt Conditional (TPC) operator, which computes per-task attention maps between task prompts and image patch tokens inside the last multi-head self-attention of each stage and rescales patch features with them, and the Dynamic Task Filter (DTF), which generates channel-wise convolution kernels from global-average-pooled, down-projected task-adapted features, so that task-specific filtering adapts to the input context. Ablations attribute roughly $+1.65\,\Delta m$ to the DTF, $+0.49$ to the TPC operator plus task prompts, and $+0.39$ specifically to the task attention map, with the two components together adding $+2.33$ over a LoRA-only baseline. The paper also claims the design transfers to larger backbones and pretraining datasets and can be grafted onto adapter-based PEFT methods, improving their multi-task accuracy.
Load-bearing premise
The design assumes that the attention weights between the task prompts and image patch tokens, read from the last self-attention layer of each stage, still carry task-relevant context after passing through earlier frozen layers, and that global average pooling of down-projected features does not discard the spatial cues the dynamic filters need.
Editorial extensions
If this is right
- At rank 64, TADFormer reaches $\Delta m = +4.24\%$ on PASCAL-Context with 7.38M trainable parameters, exceeding both full fine-tuning's $+2.23\%$ with 30.06M parameters and MTLoRA's $+2.55\%$ with 8.34M parameters.
- The DTF alone contributes about $+1.65\,\Delta m$ over the LoRA-only baseline, and the TPC operator with task prompts contributes about $+0.49\,\Delta m$; the task attention map itself is worth about $0.39\,\Delta m$ at equal parameter counts.
- Switching the backbone from Swin-T on ImageNet-1k to Swin-B or to ImageNet-22k pretraining increases the relative gain, indicating the method scales with model and data size rather than saturating.
- Grafting the TPC-plus-DTF design onto adapter-based PEFT frameworks improves their multi-task accuracy, e.g., AdaptFormer with the design reaches $\Delta m = +2.69\%$ versus $-0.63\%$ for AdaptFormer alone at comparable parameter counts.
Reading between the lines
- The paper does not test whether the task attention map would survive insertion of prompts at every stage rather than only the first; a natural follow-up is to measure whether prompt information is diluted by layer depth, which would directly probe the weakest assumption.
- Because the DTF generates kernels from global-average-pooled features, a spatially sensitive variant that pools per region or uses multi-scale pooling might recover spatial cues the current GAP discards; the paper's own framing suggests this as a testable extension, but it does not investigate it.
- The reported 0.39-point gap induced by the attention map is measured at equal trainable parameter counts, so it isolates the information content of the TAM; an adversarial test that corrupts or shuffles the TAM at inference would tell whether the model has learned to rely on it or has found a shortcut.
- If the same recipe transfers to other frozen backbones that expose per-head attention maps, the mechanism could become a generic plug-in for multi-task PEFT beyond the Swin and HRNet combination used here; the paper only demonstrates Swin backbones.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper proposes TADFormer, a parameter-efficient fine-tuning method for multi-task dense prediction. It prepends task prompts to image patch tokens, uses LoRA-style task-shared modules in most Swin Transformer blocks, and introduces a Task-Prompt Conditional (TPC) operator plus a Dynamic Task Filter (DTF) in the last block of each stage. The TPC operator uses attention between task prompts and patch tokens to produce task-adapted features, while the DTF generates channel-wise convolutional filters conditioned on input features. Experiments on PASCAL-Context with four dense prediction tasks report higher Δm than MTLoRA and full fine-tuning with fewer trainable parameters, and the paper also provides ablations, decoder/backbone variants, and an adapter-based extension.
Significance. If the reported results are reproducible, TADFormer is a useful contribution: it combines prompt-based task adaptation with input-conditioned filters in a parameter-efficient multi-task framework, and the ablation study gives per-component evidence for the TPC operator and DTF. The paper provides full per-task tables, multiple rank settings, decoder/backbone variants, computational cost analysis, and attention-map visualizations. However, the central mechanism is underspecified for the Swin windowed-attention backbone, the main code and seed-level statistics are not provided, and the adapter extension contains severely degraded parallel configurations that are presented too positively. These issues currently prevent verification of the headline claim that TADFormer consistently outperforms existing PEFT methods.
major comments (4)
- [3.3.1 / Eq. (2) / 4.1] The TPC operator is underspecified for the Swin-T backbone. The text defines a global attention map A in R^{H x (T+N) x (T+N)} and extracts ATAM in R^{H x T x N} between task prompts and every patch token, but Swin's windowed MHSA only produces per-window attention matrices. If task prompts are simply prepended to the patch-token sequence, the prompts lie in one window and most patch tokens have no direct prompt attention, making Eq. (2) not evaluable as written. If a modified global attention or per-window prompt insertion is used, this is a significant architectural change that must be stated and reflected in Figure 4 and the equations. Relative position bias for prompt tokens also needs to be defined. This issue is load-bearing because Table 2 credits the task attention map with +0.39 Δm and the full TPC+DTF combination with +2.33 Δm over the baseline.
- [Supplementary Section 8, Table 4] The adapter extension is presented as evidence of generality, but the parallel configurations show a severe performance collapse. AdaptFormer parallel rows A2 and A4 have semantic segmentation mIoU 55.28 and 55.18 with Δm -10.54 and -11.06; TADFormer versions AO2 and AO4 improve to 61.41 and 60.37 with Δm -5.02 and -6.25, still far below the MTL full-fine-tuning baseline (+2.23, semseg 67.56). The text's conclusion that TADFormer yields an overall enhancement in parallel configurations is true only in the narrow sense of making a badly degraded configuration less degraded. Please diagnose this failure or remove the parallel-configuration claim; as it stands, the claim that TADFormer is compatible with adapter-based frameworks is not supported.
- [Table 1 and Section 4.1] All main results are single-run numbers without error bars, seed counts, or released main-experiment code. The headline differences (e.g., TADFormer r=16 Δm +2.44 vs MTLoRA r=16 +1.35, and the reported 1.2-1.7 Δm gains at r=32/64) are small enough that seed variance in multi-task dense prediction could affect the ranking. Please report mean and standard deviation over at least three seeds for the main comparisons and make the main training/evaluation code available. Without this, the central claim of consistent superiority over MTLoRA cannot be verified.
- [3.4.1 / Eqs. (3)-(4)] The DTF is motivated by the need to capture input context, but its parameter generation network uses global average pooling of the down-projected feature, which discards spatial structure before generating the channel-wise filters. The paper does not explain how spatially global statistics preserve the fine-grained, input-dependent features that the method claims to extract, and no analysis is provided beyond the single ablation row and the Grad-CAM figure. A mechanism analysis or an ablation comparing GAP with spatial pooling would be needed to support the design claim.
minor comments (4)
- [3.5 / Eq. (5)] With g initialized to zero, sigmoid(g)=0.5, so Eq. (5) begins by averaging fi and the frozen-path output rather than starting from the frozen path; please clarify whether this is intended and, if so, motivate the equal-weight initialization.
- [4.2 / References] The Adapter baseline is cited as [17], but [17] is the 'Towards a unified view' paper; the original adapter citation should be checked and corrected.
- [Figure 2] The label 'TCP-operator' in Figure 2(b) is inconsistent with the 'TPC-operator' used throughout the text; please fix the acronym.
- [3.3.1] The notation fqkv is introduced as the output of the 'QKV module' without specifying whether it refers to the value features, the projected output, or the entire QKV concatenation; please define it precisely to make Eq. (2) unambiguous.
Circularity Check
No significant circularity: the reported gains are held-out empirical measurements, and the self-citations are non-load-bearing.
full rationale
The paper makes no first-principles prediction whose value is forced by its own definitions. The TPC operator is defined by Eq. 2 from the MHSA attention map and the DTF by Eqs. 3-4, but neither equation is fitted to the evaluation metric Δm; Table 1 and Table 2 report measured test-set numbers across configurations. The task weights are borrowed from [44] and the training setup from [1], but these are external inputs to the experiment, not quantities that analytically determine the reported Δm values. The self-citations ([8], [9], [10], [29], [30], [31]) appear in related work and as inspiration in Section 3.3; none is invoked as a theorem, a uniqueness claim, or the sole justification for a central result. The Swin windowed-attention underspecification raised by the skeptical review is a reproducibility or correctness concern, not a circular reduction: it does not make Eq. 2 equivalent to the headline improvement. No quoted step exhibits a fitted parameter renamed as a prediction or a definition that reduces to the target result, so no circularity is established under the required standard.
Assumptions & free parameters
free parameters (4)
- rank r of TS/TA low-rank projections =
16, 32, 64
- DTF convolution kernel size k =
not reported
- gating parameter g initial value =
0
- task loss weights w_i =
from MTI-Net [44]
assumptions (4)
- domain assumption Attention weights between task prompts and patch tokens in the last MHSA of each stage are a usable task-relevant map.
- domain assumption Channel-wise convolution filters generated by global average pooling of down-projected features capture task-specific input context.
- domain assumption Comparing against MTLoRA under 'the same experimental setup as [1]' is a fair baseline.
- domain assumption One benchmark (PASCAL-Context with four tasks) supports conclusions about MTL PEFT generally.
invented entities (2)
-
Dynamic Task Filter (DTF)
-
Task-Prompt Conditional (TPC) operator
Cite this review
Pith. "Pith review of TADFormer : Task-Adaptive Dynamic Transformer for Efficient Multi-Task Learning." pith.science (2026). https://pith.science/paper/DY6LZREW
@misc{pith2026250104293,
author = {Pith},
title = {Pith review of: TADFormer : Task-Adaptive Dynamic Transformer for Efficient Multi-Task Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/DY6LZREW}},
note = {Machine review of arXiv:2501.04293}
}
read the original abstract
Transfer learning paradigm has driven substantial advancements in various vision tasks. However, as state-of-the-art models continue to grow, classical full fine-tuning often becomes computationally impractical, particularly in multi-task learning (MTL) setup where training complexity increases proportional to the number of tasks. Consequently, recent studies have explored Parameter-Efficient Fine-Tuning (PEFT) for MTL architectures. Despite some progress, these approaches still exhibit limitations in capturing fine-grained, task-specific features that are crucial to MTL. In this paper, we introduce Task-Adaptive Dynamic transFormer, termed TADFormer, a novel PEFT framework that performs task-aware feature adaptation in the fine-grained manner by dynamically considering task-specific input contexts. TADFormer proposes the parameter-efficient prompting for task adaptation and the Dynamic Task Filter (DTF) to capture task information conditioned on input contexts. Experiments on the PASCAL-Context benchmark demonstrate that the proposed method achieves higher accuracy in dense scene understanding tasks, while reducing the number of trainable parameters by up to 8.4 times when compared to full fine-tuning of MTL models. TADFormer also demonstrates superior parameter efficiency and accuracy compared to recent PEFT methods.
Figures
Figures from the paper (8 more)
Reference graph
Works this paper leans on
-
[1]
Mtlora: Low-rank adaptation approach for efficient multi-task learn- ing
Ahmed Agiza, Marina Neseem, and Sherief Reda. Mtlora: Low-rank adaptation approach for efficient multi-task learn- ing. In Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition , pages 16196–16205,
-
[2]
Adversarial training for multi-context joint entity and relation extraction
Giannis Bekoulis, Johannes Deleu, Thomas Demeester, and Chris Develder. Adversarial training for multi- context joint entity and relation extraction. arXiv preprint arXiv:1808.06876, 2018. 3
work page Pith review arXiv 2018
-
[3]
Mult: An end-to-end multitask learning transformer
Deblina Bhattacharjee, Tong Zhang, Sabine S ¨usstrunk, and Mathieu Salzmann. Mult: An end-to-end multitask learning transformer. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 12031– 12041, 2022. 1, 3
work page 2022
-
[4]
Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al
Tom Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared D. Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Lan- guage models are few-shot learners. In Advances in Neural Information Processing Systems, 2020. 1
work page 2020
-
[5]
End-to- end object detection with transformers
Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and Sergey Zagoruyko. End-to- end object detection with transformers. In European confer- ence on computer vision, pages 213–229. Springer, 2020. 3
2020
-
[6]
Liang-Chieh Chen, Yukun Zhu, George Papandreou, Florian … Task attention map Task-agnostic Feature Task-Adapted Feature … Pretrained Module down up Task-agnostic Feature + Task-Shared Module … Pretrained Module DTF down up + … Pretrained Module DTF down up + TA-Module (Projection) TA-Module (Linear 1,2) Frozen Tuned Task-Agnostic Feature route Task-Specif...
work page 2018
-
[7]
Adaptformer: Adapting vision transformers for scalable visual recogni- tion
Shijie Chen, Chongjian Ge, Zhanhong Tong, Jianmin Wang, Yang Song, Jianbo Wang, and Ping Luo. Adaptformer: Adapting vision transformers for scalable visual recogni- tion. In Advances in Neural Information Processing Systems, pages 16664–16678, 2022. 3, 8, 2, 4
work page 2022
-
[8]
Improving Generative Pre-Training: An In-depth Study of Masked Image Modeling and Denoising Models
Hyesong Choi, Daeun Kim, Sungmin Cha, Kwang Moo Yi, and Dongbo Min. Improving generative pre-training: An in- depth study of masked image modeling and denoising mod- els. arXiv preprint arXiv:2412.19104, 2024. 3
work page Pith review arXiv 2024
Show all 59 references
-
[9]
Emerging property of masked token for effective pre-training
Hyesong Choi, Hunsang Lee, Seyoung Joung, Hyejin Park, Jiyeong Kim, and Dongbo Min. Emerging property of masked token for effective pre-training. arXiv preprint arXiv:2404.08330, 2024
2024 arXiv
-
[10]
Salience-based adaptive masking: revisit- ing token dynamics for enhanced pre-training
Hyesong Choi, Hyejin Park, Kwang Moo Yi, Sungmin Cha, and Dongbo Min. Salience-based adaptive masking: revisit- ing token dynamics for enhanced pre-training. In European Conference on Computer Vision , pages 343–359. Springer,
-
[11]
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. 6
2009
-
[12]
Bert: Pre-training of deep bidirectional trans- formers for language understanding
Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional trans- formers for language understanding. In Proceedings of the Annual Conference of the North American Chapter of the Association for Computational Linguistics, 2018. 1
2018
-
[13]
An image is worth 16x16 words: Transformers for image recognition at scale, 2021
Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Syl- vain Gelly, Jakob Uszkoreit, and Neil Houlsby. An image is worth 16x16 words: Transformers for image recognition ...
2021
-
[14]
Llama-adapter v2: Parameter-efficient vi- sual instruction model
Peng Gao, Jiaming Han, Renrui Zhang, Ziyi Lin, Shijie Geng, Aojun Zhou, Wei Zhang, Pan Lu, Conghui He, Xi- angyu Yue, et al. Llama-adapter v2: Parameter-efficient vi- sual instruction model. arXiv preprint arXiv:2304.15010 ,
-
[15]
Yihang Gao, Jun Ma, Mingbo Zhao, Wei Liu, and Alan L. Yuille. Nddr-cnn: Layerwise feature fusing in multi-task cnns by neural discriminative dimensionality reduction. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition (CVPR), 2019. 3
2019
-
[16]
Sensitivity-aware visual parameter-efficient fine-tuning
Haotao He, Jianfei Cai, Jing Zhang, Dacheng Tao, and Bo- han Zhuang. Sensitivity-aware visual parameter-efficient fine-tuning. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 11825–11835, 2023. 3
2023
-
[17]
Towards a unified view of parameter-efficient transfer learning
Junxian He, Chunting Zhou, Xuezhe Ma, Taylor Berg- Kirkpatrick, and Graham Neubig. Towards a unified view of parameter-efficient transfer learning. arXiv preprint arXiv:2110.04366, 2021. 6, 7
2021 arXiv
-
[18]
Masked autoencoders are scalable vision learners
Kaiming He, Xinlei Chen, Saining Xie, Yanghao Li, Piotr Dollar, and Ross Girshick. Masked autoencoders are scalable vision learners. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2022. 1
2022
-
[19]
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 Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages 16000– 16009, 2022. 3
2022
-
[20]
Parameter-efficient transfer learning for nlp
Neil Houlsby, Andrei Giurgiu, Stanislaw Jastrzebski, Bruna Morrone, Quentin De Laroussilhe, Andrea Gesmundo, Mona Attariyan, and Sylvain Gelly. Parameter-efficient transfer learning for nlp. In International Conference on Machine Learning, pages 2790–2799. PMLR, 2019. 1, 2, 3
2019
-
[21]
Hu et al
Edward J. Hu et al. Lora: Low-rank adaptation of large lan- guage models. arXiv preprint arXiv:2106.09685, 2021. 1, 2, 3, 4, 6, 7, 8
2021 arXiv
-
[22]
Llm-adapters: An adapter family for parameter- efficient fine-tuning of large language models.arXiv preprint arXiv:2304.01933, 2023
Zhiqiang Hu, Yihuai Lan, Lei Wang, Wanyu Xu, Ee- Peng Lim, Roy Ka-Wei Lee, Lidong Bing, and Soujanya Poria. Llm-adapters: An adapter family for parameter- efficient fine-tuning of large language models.arXiv preprint arXiv:2304.01933, 2023. 1
2023 arXiv
-
[23]
Going beyond multi-task dense pre- diction with synergy embedding models
Huimin Huang et al. Going beyond multi-task dense pre- diction with synergy embedding models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, page to appear, 2024. 1, 2, 3
2024
-
[24]
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 European Conference on Computer Vision, pages 709–727. Springer, 2022. 3, 4, 6, 7
2022
-
[25]
Dynamic filter networks
Xu Jia, Bert De Brabandere, Tinne Tuytelaars, and Luc V Gool. Dynamic filter networks. Advances in neural informa- tion processing systems, 29, 2016. 5
2016
-
[26]
Compacter: Efficient low-rank hypercomplex adapter layers
Rabeeh Karimi Mahabadi, James Henderson, and Sebastian Ruder. Compacter: Efficient low-rank hypercomplex adapter layers. In Advances in Neural Information Processing Sys- tems, pages 1022–1035, 2021. 6, 7
2021
-
[27]
Parameter-efficient multi-task fine-tuning for transformers via shared hypernetworks.arXiv preprint arXiv:2106.04489, 2021
Rabeeh Karimi Mahabadi, Sebastian Ruder, Mostafa De- hghani, and James Henderson. Parameter-efficient multi-task fine-tuning for transformers via shared hypernetworks.arXiv preprint arXiv:2106.04489, 2021. 1, 6, 7
2021 arXiv
-
[28]
Multi-task learning using uncertainty to weigh losses for scene geome- try and semantics
Alex Kendall, Yarin Gal, and Roberto Cipolla. Multi-task learning using uncertainty to weigh losses for scene geome- try and semantics. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition , pages 7482– 7491, 2018. 3
2018
-
[29]
Sequen- tial cross attention based multi-task learning
Sunkyung Kim, Hyesong Choi, and Dongbo Min. Sequen- tial cross attention based multi-task learning. In 2022 IEEE International Conference on Image Processing (ICIP), pages 2311–2315. IEEE, 2022. 3
2022
-
[30]
Knn local attention for image restoration
Hunsang Lee, Hyesong Choi, Kwanghoon Sohn, and Dongbo Min. Knn local attention for image restoration. In Proceedings of the IEEE/CVF conference on computer vi- sion and pattern recognition, pages 2139–2149, 2022. 3
2022
-
[31]
Cross-scale knn image transformer for image restoration
Hunsang Lee, Hyesong Choi, Kwanghoon Sohn, and Dongbo Min. Cross-scale knn image transformer for image restoration. IEEE Access, 11:13013–13027, 2023. 3
2023
-
[32]
Conditional adapters: Parameter-efficient transfer learning with fast in- ference
Tao Lei, Junlin Bai, Siddhartha Brahma, Joshua Ainslie, Kenton Lee, Yi Zhou, Ming-Wei Chang, et al. Conditional adapters: Parameter-efficient transfer learning with fast in- ference. In Advances in Neural Information Processing Sys- tems, pages 8152–8172, 2023. 3
2023
-
[33]
The power of scale for parameter-efficient prompt tuning.arXiv preprint arXiv:2104.08691, 2021
Brian Lester, Rami Al-Rfou, and Noah Constant. The power of scale for parameter-efficient prompt tuning.arXiv preprint arXiv:2104.08691, 2021. 1, 3
2021 arXiv
-
[34]
Prefix-tuning: Optimiz- ing continuous prompts for generation
Xiang Lisa Li and Percy Liang. Prefix-tuning: Optimiz- ing continuous prompts for generation. arXiv preprint arXiv:2101.00190, 2021. 1, 3
2021 arXiv
-
[35]
Polyhistor: Parameter-efficient multi-task adap- tation for dense vision tasks
Yen-Cheng Liu, Chih-Yao Ma, Junjiao Tian, Zijian He, and Zsolt Kira. Polyhistor: Parameter-efficient multi-task adap- tation for dense vision tasks. In Advances in Neural Infor- mation Processing Systems, pages 36889–36901, 2022. 1, 6, 7
2022
-
[36]
Swin transformer: Hierarchical vision transformer using shifted windows
Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining Guo. Swin transformer: Hierarchical vision transformer using shifted windows. In Proceedings of the IEEE/CVF international conference on computer vision, pages 10012–10022, 2021. 4, 5, 7
2021
-
[37]
Swin trans- former: Hierarchical vision transformer using shifted win- dows, 2021
Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining Guo. Swin trans- former: Hierarchical vision transformer using shifted win- dows, 2021. 3
2021
-
[38]
Swin transformer v2: Scaling up capacity and resolution
Ze Liu, Han Hu, Yutong Lin, Zhuliang Yao, Zhenda Xie, Yixuan Wei, Jia Ning, Yue Cao, Zheng Zhang, Li Dong, et al. Swin transformer v2: Scaling up capacity and resolution. In Proceedings of the IEEE/CVF conference on computer vi- sion and pattern recognition, pages 12009–12019, 2022
2022
-
[39]
Vi- sion transformers for dense prediction
Ren ´e Ranftl, Alexey Bochkovskiy, and Vladlen Koltun. Vi- sion transformers for dense prediction. In Proceedings of the IEEE/CVF international conference on computer vision, pages 12179–12188, 2021. 3
2021
-
[40]
Grad-cam: Visual explanations from deep networks via gradient-based localization
Ramprasaath R Selvaraju, Michael Cogswell, Abhishek Das, Ramakrishna Vedantam, Devi Parikh, and Dhruv Batra. Grad-cam: Visual explanations from deep networks via gradient-based localization. In Proceedings of the IEEE in- ternational conference on computer vision , pages 618–626,
-
[41]
Multi-task learning as multi-objective optimization
Ozan Sener and Vladlen Koltun. Multi-task learning as multi-objective optimization. In Advances in Neural Infor- mation Processing Systems, 2018. 3
2018
-
[42]
Deep high-resolution representation learning for human pose es- timation
Ke Sun, Bin Xiao, Dong Liu, and Jingdong Wang. Deep high-resolution representation learning for human pose es- timation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 5693–5703,
-
[43]
VL-Adapter: Parameter-efficient transfer learning for vision-and-language tasks
Yi-Lin Sung, Jaemin Cho, and Mohit Bansal. VL-Adapter: Parameter-efficient transfer learning for vision-and-language tasks. In Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition , pages 5227–5237,
-
[44]
Mti-net: Multi-scale task interaction networks for multi-task learning
Simon Vandenhende, Stamatios Georgoulis, and Luc Van Gool. Mti-net: Multi-scale task interaction networks for multi-task learning. In Computer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceedings, Part IV 16, pages 527–543. Springer, 2020. 6
2020
-
[45]
Multi-task learning for dense prediction tasks: A survey
Simon Vandenhende, Stamatios Georgoulis, Wouter Van Gansbeke, Marc Proesmans, Dengxin Dai, and Luc Van Gool. Multi-task learning for dense prediction tasks: A survey. IEEE transactions on pattern analysis and machine intelligence, 44(7):3614–3633, 2021. 2, 3
2021
-
[46]
Segformer: Simple and efficient design for semantic segmentation with transform- ers
Enze Xie, Wenhai Wang, Zhiding Yu, Anima Anandkumar, Jose M Alvarez, and Ping Luo. Segformer: Simple and efficient design for semantic segmentation with transform- ers. Advances in neural information processing systems, 34: 12077–12090, 2021. 3
2021
-
[47]
Segformer: Simple and efficient design for semantic segmentation with transform- ers
Enze Xie, Wenhai Wang, Zhiding Yu, Anima Anandkumar, Jose M Alvarez, and Ping Luo. Segformer: Simple and efficient design for semantic segmentation with transform- ers. Advances in neural information processing systems, 34: 12077–12090, 2021. 1, 3
2021
-
[48]
Simmim: A simple framework for masked image modeling
Zhenda Xie, Zheng Zhang, Yue Cao, Yutong Lin, Jianmin Bao, Zhuliang Yao, Qi Dai, and Han Hu. Simmim: A simple framework for masked image modeling. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2022. 1, 3
2022
-
[49]
Vmt-adapter: Parameter-efficient transfer learning for multi- task dense scene understanding
Yi Xin, Junlong Du, Qiang Wang, Zhiwen Lin, and Ke Yan. Vmt-adapter: Parameter-efficient transfer learning for multi- task dense scene understanding. In Proceedings of the AAAI Conference on Artificial Intelligence , pages 16085–16093,
-
[50]
Multi-task dense prediction via mixture of low-rank experts
Yutong Yang, Peng-Tao Jiang, Qibin Hou, Hao Zhang, Jinhui Chen, and Bing Li. Multi-task dense prediction via mixture of low-rank experts. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages 27927–27937, 2024. 1, 3, 5
2024
-
[51]
Taskprompter: Spatial-channel multi-task prompting for dense scene understanding
Hanrong Ye and Dan Xu. Taskprompter: Spatial-channel multi-task prompting for dense scene understanding. In The Eleventh International Conference on Learning Representa- tions, 2022. 4
2022
-
[52]
Taskexpert: Dynamically assem- bling multi-task representations with memorial mixture-of- experts
Hanrong Ye and Dan Xu. Taskexpert: Dynamically assem- bling multi-task representations with memorial mixture-of- experts. In Proceedings of the IEEE/CVF International Con- ference on Computer Vision, 2023. 1, 2, 3
2023
-
[53]
Masked image modeling with denoising contrast
Kun Yi, Yixiao Ge, Xiaotong Li, Shusheng Yang, Dian Li, Jianping Wu, Ying Shan, and Xiaohu Qie. Masked image modeling with denoising contrast. arXiv preprint arXiv:2205.09616, 2022. 3
2022 arXiv
-
[54]
1% vs 100%: Parameter-efficient low rank adapter for dense predictions
Dongqi Yin, Yi Yang, Zilong Wang, Hao Yu, Ke Wei, and Xia Sun. 1% vs 100%: Parameter-efficient low rank adapter for dense predictions. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages 20116–20126, 2023. 3
2023
-
[55]
Bitfit: Simple parameter-efficient fine-tuning for transformer-based masked language models
Elad Ben Zaken, Shauli Ravfogel, and Yoav Goldberg. Bitfit: Simple parameter-efficient fine-tuning for transformer-based masked language models. arXiv preprint arXiv:2106.10199,
-
[56]
Zamir, Alexander Sax, William Shen, Leonidas J
Amir R. Zamir, Alexander Sax, William Shen, Leonidas J. Guibas, Jitendra Malik, and Silvio Savarese. Taskonomy: Disentangling task transfer learning. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recogni- tion (CVPR), 2018. 8
2018
-
[57]
A survey on multi-task learning
Yu Zhang and Qiang Yang. A survey on multi-task learning. IEEE transactions on knowledge and data engineering , 34 (12):5586–5609, 2021. 2
2021
-
[58]
Convolution meets lora: Parameter efficient finetuning for segment anything model
Zihan Zhong, Zhiqiang Tang, Tong He, Haoyang Fang, and Chun Yuan. Convolution meets lora: Parameter efficient finetuning for segment anything model. In Proceedings of the International Conference on Learning Representations ,
-
[59]
Decoupled dynamic filter networks
Jingkai Zhou, Varun Jampani, Zhixiong Pi, Qiong Liu, and Ming-Hsuan Yang. Decoupled dynamic filter networks. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition, pages 6647–6656, 2021. 5
2021
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.