REVIEW 4 major objections 6 minor 2 cited by
Less is More: Efficient Model Merging with Binary Task Switch
T0 review · 4 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read Binarizing task vectors matches full-precision merging while cutting storage to 1-3%.
desk verdict A genuinely useful binary task-vector merging method with real storage savings, but the paper's headline 'pulse-like' mechanistic claim is not yet supported because the key control is confounded with norm shrinkage. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the pulse activation function $g_m(\tau)$, which keeps task-vector entries outside symmetric upper and lower quantile thresholds and zeros the rest. P-Discard applies this mask; Bin-Discard then replaces surviving entries with their signs $g_b(\tau)$ and rescales by the ratio of the $\ell^2$ norms of the masked full-precision vector and the masked sign vector. The product is a task switch with three parts: an activation mask $S_A$, a polarity sign $S_P$, and a scalar knob $\lambda$, combined dynamically at inference by Eq. 7 (or Eq. 8 for Auto-Switch). The mechanism works because the paper's experiments find that low-magnitude parameters are redundant noise whose removal reduces inter-task conflict.
What would settle it
Find one task vector where systematically discarding the smallest-magnitude entries, say at alpha = 0.5, produces a clear accuracy drop relative to the full task vector, or where the optimal alpha for a single layer is far outside the paper's global optimum. Alternatively, construct two task vectors whose low-magnitude entries are essential for one task, and show that binarizing both degrades merged accuracy below full-precision merging.
Extended reading notes
Core claim
The central discovery is that task vectors exhibit a pulse-like characteristic: parameters whose magnitude exceeds a per-task quantile threshold carry the useful signal, while parameters below that threshold actively hurt fine-tuning and merging performance. The paper demonstrates through controlled experiments that discarding the low-magnitude entries (P-Discard) improves average accuracy, and that replacing the surviving values with their signs times a scalar ratio (Bin-Discard) retains nearly all of that gain. From this it builds Task Switch (T-Switch), which stores each task as a binary activation mask, a binary sign vector, and one scalar knob, and Auto-Switch, which retrieves and combines these switches at inference from a small query set. The paper reports that T-Switch and Auto-Switch outperform prior merging methods on eight vision and eight language tasks while using 1-3% of the storage of full-precision task vectors.
Load-bearing premise
The load-bearing premise is that a single global discard ratio alpha, applied as symmetric per-task quantile thresholds, cleanly separates informative from noisy coordinates in every layer of every task vector; if the informative set is task-, layer-, or data-dependent, the switch discards the wrong parameters and the storage-accuracy trade-off collapses.
Editorial extensions
If this is right
- If the pulse assumption holds, any model-merging pipeline can store each task as roughly 1-3% of its original parameter bits, consisting of a mask, signs, and one scalar per task.
- Discarding small-magnitude entries can push merged accuracy above the average of the individually fine-tuned models, as observed in the vision experiments.
- The same binarization applies to LoRA-style low-rank task vectors, suggesting that parameter-efficient fine-tuning results can be stored and merged this way too.
- Auto-Switch shows that task selection can be performed without a learned router, using nearest-neighbor retrieval on a small label-free query set.
Reading between the lines
- The pulse claim is about coordinate-wise magnitude, not task geometry; a testable extension is whether the optimal discard threshold varies by layer or task, and whether an adaptive per-layer alpha would outperform a single global ratio.
- If the sign-and-scalar approximation preserves enough signal, it suggests that fine-tuning knowledge is largely directional: what matters is which parameters increase or decrease and by roughly how much, not the precise magnitudes.
- A natural stress test is to merge tasks with heavily overlapping or adversarial task vectors, where the assumption that low-magnitude parameters are pure noise may break down.
- The storage accounting (1-3%) assumes the mask and signs are stored efficiently; the paper reports example sizes but a reader should verify whether the mask is stored uncompressed or bit-packed.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper claims that task vectors exhibit a pulse-like characteristic: only parameters whose magnitude exceeds a per-task quantile threshold contribute positively, and discarding the rest while binarizing the survivors to their signs times a scalar preserves or even improves fine-tuning and merging performance. This observation motivates T-Switch, a decomposition of each task vector into a binary activation mask, a binary sign vector, and a scalar scaling knob, and Auto-Switch, a training-free variant that weights these switches by nearest-neighbor retrieval on a small query set. The authors evaluate on eight vision tasks with CLIP ViT-B/32 and ViT-L/14, eight language tasks with RoBERTa, and LoRA fine-tuned settings, reporting state-of-the-art merging accuracy with storage of 1-3% of full-precision task vectors.
Significance. If the pulse-like property is real, it would provide a simple and powerful mechanistic account of task-vector redundancy and would make binary task-vector storage an attractive practical option for multi-task deployment. The paper's decomposition is conceptually clean, Auto-Switch is genuinely training-free, and the reported storage reductions are large and easy to verify from the given storage numbers. These are real strengths. However, the central mechanistic claim is not yet isolated from a norm-reduction confound, the main tables lack any uncertainty quantification, and T-Switch as defined in Eq. (7) does not actually combine task information, which undermines the framing as a merging method. The empirical results are suggestive but need additional controls and reframing before the paper's conclusions are supported.
major comments (4)
- [Section 3.2, Fig. 3, Table 1, Eq. (3)] The comparison between P-Discard and DARE is not norm-matched. P-Discard (Eq. 3) returns tau_i * g_m(tau_i) without rescaling, so its L2 norm shrinks as alpha grows, whereas the DARE control rescales the remaining entries by 1/(1-alpha) and approximately preserves the original task-vector norm. The observed advantage of 'Discard Low' over DARE, and the continued improvement as alpha increases, can therefore be explained by a shrinkage/regularization effect toward the pretrained weights rather than by the removal of low-magnitude coordinates. Bin-Discard (Eq. 5) inherits the same confound because it rescales to the P-Discarded norm. Please add norm-matched controls, such as random discarding with rescaling to exactly the P-Discarded norm and P-Discard rescaled back to the original norm, and report the per-alpha curves separately for magnitude selection and norm reduction before claiming the pulse-like mechanism.
- [Tables 2-4 and Table 6] All reported numbers appear to be single runs, with no error bars, confidence intervals, or significance tests. Claims such as T-Switch outperforming EMR-Merging by 2.24 points on ViT-B/32 (Table 2) and by 0.0415 on RoBERTa (Table 4) are central to the conclusions and could easily lie within fine-tuning run-to-run variation. Please report means and standard deviations over multiple fine-tune/merge seeds for the main comparisons, and use a statistical test where feasible.
- [Section 4.1 and Fig. 7] The main results fix the discard ratio at alpha=0.5 for all discarding methods, but this value is selected after sweeping alpha from 0.0 to 0.9 on the same evaluation benchmarks. The choice is therefore informed by the test set, and the reported improvements over baselines are not an independent evaluation at a pre-specified operating point. Please either select alpha on a held-out validation split or report the comparison to baselines across the full alpha range so that the sensitivity of the conclusions to this hyperparameter is visible.
- [Section 3.4, Eq. (7)] With U being a vector of all ones, Eq. (7) reduces to theta_i = theta + lambda_i * S_A^i * S_P^i, which is a binary decompression of a single task vector. No information from multiple tasks is combined, so T-Switch does not realize the multi-task merging objective in Eq. (1); given a task identity, it simply reconstructs an approximation of that task's fine-tuned model. The comparisons of T-Switch to static merging methods (Task-Arithmetic, TIES, DARE) and to dynamic merging methods in Tables 2-4 are therefore not comparisons of merging algorithms. Auto-Switch (Eq. 8) does combine switches across tasks; please reposition T-Switch as a per-task compression component or an ablation, or define a merging operation in Eq. (7) that actually combines task information.
minor comments (6)
- [Section 3.2] There is a typo in the text: 'obervation' should be 'observation'.
- [Section 3.2, Eqs. (2)-(3)] The relationship between gamma_u, gamma_l, and the discard ratio alpha is described only in prose; it would be clearer to define gamma_u and gamma_l directly as alpha-quantiles in Eq. (2), or to state the dependency explicitly.
- [Section 3.4] The notation f_ex used in the query-set construction is undefined; please specify which layer's feature outputs are used and how they are pooled.
- [Section 3.4] The text says the query set is built from 'directly averaged task vectors according to the scheme in equation 4', but Eq. (4) is a norm-weighted sum, not a simple average. Please clarify the exact construction.
- [Section 6, Table 5] The supplementary section title contains a typo: 'Exprimental Details' should be 'Experimental Details'.
- [General] No code or data release is mentioned, which hinders reproducibility of the reported merging results. Please provide code or at least detailed per-dataset fine-tuning and evaluation protocols.
Circularity Check
No significant circularity: the pulse-like claim is an empirical observation, the binary approximation is a deterministic normalization, and the method is benchmarked against external baselines.
full rationale
Walking the derivation chain: the pulse-like characteristic is introduced not as a theorem but as an observation from controlled experiments in Section 3.2 and Figures 3-5. The discard mask g_m is defined by quantile thresholds of the task vector itself, and the claim that low-magnitude parameters are redundant is tested by comparing Discard Low, Discard High, and DARE-Random; no equation defining the threshold presupposes the performance outcome. The Bin-Discard approximation in Eq. 5 is a deterministic L2-norm-preserving rescaling of a sign/mask decomposition, and the scaling factor lambda is computed from the task vector rather than fitted to downstream performance. T-Switch in Eq. 7 and Auto-Switch in Eq. 8 are constructive uses of that decomposition, not predictions that reduce to their inputs. The discard ratio alpha is set uniformly to 0.5 for all discard-based methods, and the ablation in Figure 7 explores performance across alpha; this is hyperparameter selection rather than a fitted parameter renamed as a prediction. The only co-authored citation is to EMR-merging [15], which is used as a baseline and experimental-setting reference, not as the justification for the pulse-like claim or the binary decomposition. The central results are evaluated against external benchmarks and compared with many non-self baselines. No step exhibits an equation equivalent to its input by construction, and no load-bearing premise is justified solely by a self-citation. The norm-matching objection to the causal interpretation is a correctness or experimental-design concern, not circularity.
Assumptions & free parameters
free parameters (4)
- discard ratio alpha =
0.5 in main experiments; swept 0.1-0.9
- quantile thresholds gamma_u, gamma_l =
alpha-quantiles of positive and negative task-vector elements
- Auto-Switch query size N =
100 samples per task
- Auto-Switch neighbor count C =
not reported in Table 5; ablated in Figure 7
assumptions (4)
- domain assumption Small-magnitude entries of task vectors are noise and can be discarded without hurting task performance.
- domain assumption Binarizing retained task-vector entries to their signs preserves the function of the task vector when scaled by the ratio of L2 norms (Eq. 5).
- domain assumption A single global discard ratio alpha applies across all tasks, layers, and both vision and language models.
- domain assumption KNN features from a directly averaged merged model can reliably identify the correct task for Auto-Switch.
Cite this review
Pith. "Pith review of Less is More: Efficient Model Merging with Binary Task Switch." pith.science (2026). https://pith.science/paper/QRTUPOXF
@misc{pith2026241200054,
author = {Pith},
title = {Pith review of: Less is More: Efficient Model Merging with Binary Task Switch},
year = {2026},
howpublished = {\url{https://pith.science/paper/QRTUPOXF}},
note = {Machine review of arXiv:2412.00054}
}
read the original abstract
As an effective approach to equip models with multi-task capabilities without additional training, model merging has garnered significant attention. However, existing methods face challenges of redundant parameter conflicts and the excessive storage burden of parameters. In this work, through controlled experiments, we reveal that for task vectors, only those parameters with magnitudes above a certain threshold contribute positively to the task, exhibiting a pulse-like characteristic. We then attempt leveraging this characteristic to binarize the task vectors and reduce storage overhead. Further controlled experiments show that the binarized task vectors incur almost no decrease in fine-tuning and merging performance, and even exhibit stronger performance improvements as the proportion of redundant parameters increases. Based on these insights, we propose Task Switch (T-Switch), which decomposes task vectors into three components: 1) an activation switch instantiated by a binarized mask vector, 2) a polarity switch instantiated by a binarized sign vector, and 3) a scaling knob instantiated by a scalar coefficient. By storing task vectors in a binarized form, T-Switch alleviates parameter conflicts while ensuring efficient task parameter storage. Furthermore, to enable automated switch combination in T-Switch, we further introduce Auto-Switch, which enables training-free switch combination via retrieval from a small query set. Experiments indicate that our methods achieve significant performance improvements over existing baselines, requiring only 1-3% of the storage space of full-precision parameters.
Figures
Figures from the paper (3 more)
Forward citations
Cited by 2 Pith papers
-
Decouple and Orthogonalize: A Data-Free Framework for LoRA Merging
A data-free LoRA merging framework that decouples weight magnitude from direction and orthogonalizes directions to reduce task interference, outperforming existing merging methods across vision, language and multimoda...
-
FREE-Merging: Fourier Transform for Efficient Model Merging
High-pass filtering of task vectors in the Fourier domain reduces task interference in model merging, and lightweight rescaling experts recover lost performance.
Reference graph
Works this paper leans on
-
[1]
Ainsworth, Jonathan Hayase, and Siddhartha S
Samuel K. Ainsworth, Jonathan Hayase, and Siddhartha S. Srinivasa. Git re-basin: Merging models modulo permuta- tion symmetries. In ICLR, 2023. 2
work page 2023
-
[2]
Jinze Bai, Shuai Bai, Yunfei Chu, Zeyu Cui, Kai Dang, Xiaodong Deng, Yang Fan, Wenbin Ge, Yu Han, Fei Huang, et al. Qwen technical report. arXiv preprint arXiv:2309.16609, 2023. 1
arXiv 2023
-
[3]
Xnor-net++: Im- proved binary neural networks
Adrian Bulat and Georgios Tzimiropoulos. Xnor-net++: Im- proved binary neural networks. In BMVC, 2019. 3
work page 2019
-
[4]
Daniel M. Cer, Mona T. Diab, Eneko Agirre, I ˜nigo Lopez- Gazpio, and Lucia Specia. Semeval-2017 task 1: Seman- tic textual similarity - multilingual and cross-lingual focused evaluation. CoRR, 2017. 7
work page 2017
-
[5]
Mmdetection: Open mmlab detection tool- box and benchmark
Kai Chen, Jiaqi Wang, Jiangmiao Pang, Yuhang Cao, Yu Xiong, Xiaoxiao Li, Shuyang Sun, Wansen Feng, Ziwei Liu, Jiarui Xu, et al. Mmdetection: Open mmlab detection tool- box and benchmark. arXiv preprint arXiv:1906.07155, 2019. 1
arXiv 1906
-
[6]
Remote sens- ing image scene classification: Benchmark and state of the art
Gong Cheng, Junwei Han, and Xiaoqiang Lu. Remote sens- ing image scene classification: Benchmark and state of the art. Proc. IEEE, 2017. 4, 6
work page 2017
-
[7]
Describing textures in the wild
Mircea Cimpoi, Subhransu Maji, Iasonas Kokkinos, Sammy Mohamed, and Andrea Vedaldi. Describing textures in the wild. In 2014 IEEE Conference on Computer Vision and Pattern Recognition, CVPR 2014, Columbus, OH, USA, June 23-28, 2014 , pages 3606–3613. IEEE Computer Society,
work page 2014
-
[8]
Binaryconnect: Training deep neural networks with binary weights during propagations
Matthieu Courbariaux, Yoshua Bengio, and Jean-Pierre David. Binaryconnect: Training deep neural networks with binary weights during propagations. In NeurIPS, 2015. 3
work page 2015
Show all 58 references
-
[9]
Dolan and Chris Brockett
William B. Dolan and Chris Brockett. Automatically con- structing a corpus of sentential paraphrases. In IWP, 2005. 7
2005
-
[10]
1-bit wavenet: compressing a generative neural network in speech recognition with two binarized methods
Sicheng Gao, Runqi Wang, Liuyang Jiang, and Baochang Zhang. 1-bit wavenet: compressing a generative neural network in speech recognition with two binarized methods. In Conference on Industrial Electronics and Applications (ICIEA), pages 2043–2047, 2021. 4
2021
-
[11]
The third PASCAL recognizing textual entailment challenge
Danilo Giampiccolo, Bernardo Magnini, Ido Dagan, and Bill Dolan. The third PASCAL recognizing textual entailment challenge. In PASCAL Workshop, 2007. 7
2007
-
[12]
Differen- tiable soft quantization: Bridging full-precision and low-bit neural networks
Ruihao Gong, Xianglong Liu, Shenghu Jiang, Tianxiang Li, Peng Hu, Jiazhen Lin, Fengwei Yu, and Junjie Yan. Differen- tiable soft quantization: Bridging full-precision and low-bit neural networks. In ICCV, 2019. 3
2019
-
[13]
Gradient reweighting: Towards imbalanced class-incremental learning
Jiangpeng He. Gradient reweighting: Towards imbalanced class-incremental learning. In CVPR. IEEE, 2024. 3
2024
-
[14]
Eurosat: A novel dataset and deep learning benchmark for land use and land cover classification
Patrick Helber, Benjamin Bischke, Andreas Dengel, and Damian Borth. Eurosat: A novel dataset and deep learning benchmark for land use and land cover classification. IEEE J. Sel. Top. Appl. Earth Obs. Remote. Sens., 2019. 4, 6
2019
-
[15]
Emr-merging: Tuning-free high- performance model merging
Chenyu Huang, Peng Ye, Tao Chen, Tong He, Xiangyu Yue, and Wanli Ouyang. Emr-merging: Tuning-free high- performance model merging. CoRR, 2024. 1, 2, 6, 7
2024
-
[16]
Editing models with task arithmetic
Gabriel Ilharco, Marco T ´ulio Ribeiro, Mitchell Wortsman, Ludwig Schmidt, Hannaneh Hajishirzi, and Ali Farhadi. Editing models with task arithmetic. In ICLR, 2023. 1, 3, 4, 6
2023
-
[17]
CLAP4CLIP: contin- ual learning with probabilistic finetuning for vision-language models
Saurav Jha, Dong Gong, and Lina Yao. CLAP4CLIP: contin- ual learning with probabilistic finetuning for vision-language models. CoRR, 2024. 3
2024
-
[18]
Dataless knowledge fusion by merging weights of language models
Xisen Jin, Xiang Ren, Daniel Preotiuc-Pietro, and Pengxiang Cheng. Dataless knowledge fusion by merging weights of language models. In ICLR, 2023. 1, 3, 6
2023
-
[19]
REPAIR: renormalizing permuted activations for interpolation repair
Keller Jordan, Hanie Sedghi, Olga Saukh, Rahim Entezari, and Behnam Neyshabur. REPAIR: renormalizing permuted activations for interpolation repair. In ICLR. OpenRe- view.net, 2023. 2
2023
-
[20]
Warping the space: Weight space rotation for class- incremental few-shot learning
Do-Yeon Kim, Dong-Jun Han, Jun Seo, and Jaekyun Moon. Warping the space: Weight space rotation for class- incremental few-shot learning. InThe Eleventh International Conference on Learning Representations, ICLR 2023, Ki- gali, Rwanda, May 1-5, 2023. OpenReview.net, 2023. 3
2023
-
[21]
3d object representations for fine-grained categorization
Jonathan Krause, Michael Stark, Jia Deng, and Li Fei-Fei. 3d object representations for fine-grained categorization. In ICCV, 2013. 4, 6
2013
-
[22]
Learning multiple layers of features from tiny images
Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. 2009. 3
2009
-
[23]
Y . LeCun. The mnist database of handwritten digits. In http://yann. lecun. com/exdb/mnist/, 1998. 4, 6
1998
-
[24]
Fully quantized network for object detec- tion
Rundong Li, Yan Wang, Feng Liang, Hongwei Qin, Junjie Yan, and Rui Fan. Fully quantized network for object detec- tion. In CVPR, 2019. 3
2019
-
[25]
Roberta: A robustly optimized BERT pretraining approach
Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike Lewis, Luke Zettle- moyer, and Veselin Stoyanov. Roberta: A robustly optimized BERT pretraining approach. CoRR, 2019. 7
2019
-
[26]
Bi-real net: Enhancing the perfor- mance of 1-bit cnns with improved representational capabil- ity and advanced training algorithm
Zechun Liu, Baoyuan Wu, Wenhan Luo, Xin Yang, Wei Liu, and Kwang-Ting Cheng. Bi-real net: Enhancing the perfor- mance of 1-bit cnns with improved representational capabil- ity and advanced training algorithm. In ECCV, 2018. 3
2018
-
[27]
Twin-merging: Dynamic integration of modular expertise in model merging
Zhenyi Lu, Chenghao Fan, Wei Wei, Xiaoye Qu, Dangyang Chen, and Yu Cheng. Twin-merging: Dynamic integration of modular expertise in model merging. CoRR, 2024. 1, 2, 4, 6, 7
2024
-
[28]
A&b bnn: Add&bit- operation-only hardware-friendly binary neural network
Ruichen Ma, Guanchao Qiao, Yian Liu, Liwei Meng, Ning Ning, Yang Liu, and Shaogang Hu. A&b bnn: Add&bit- operation-only hardware-friendly binary neural network. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition (CVPR) , pages 5704–5713,
-
[29]
Bagdanov
Simone Magistri, Tomaso Trinci, Albin Soutif-Cormerais, Joost van de Weijer, and Andrew D. Bagdanov. Elastic fea- ture consolidation for cold start exemplar-free incremental learning. In ICLR, 2024. 3
2024
-
[30]
Merging models with fisher-weighted averaging
Michael Matena and Colin Raffel. Merging models with fisher-weighted averaging. In NeurIPS, 2022. 1, 2, 3, 6
2022
-
[31]
Reading digits in natural images with unsupervised feature learning
Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bis- sacco, Baolin Wu, Andrew Y Ng, et al. Reading digits in natural images with unsupervised feature learning. In NIPS workshop, 2011. 4, 6
2011
-
[32]
Binary neural networks for speech recognition
Yanmin Qian and Xu Xiang. Binary neural networks for speech recognition. Frontiers Inf. Technol. Electron. Eng. , 20(5):701–715, 2019. 4
2019
-
[33]
Guanchao Qiao, Shaogang Hu, Tupei Chen, L. M. Rong, Ning Ning, Qi Yu, and Y . Liu. STBNN: hardware-friendly spatio-temporal binary neural network with high pattern recognition accuracy. Neurocomputing, 409:351–360, 2020. 4
2020
-
[34]
Learning transferable visual models from natural language supervision
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, Gretchen Krueger, and Ilya Sutskever. Learning transferable visual models from natural language supervision. In ICML, 2021. 4, 6
2021
-
[35]
Squad: 100, 000+ questions for machine com- prehension of text
Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. Squad: 100, 000+ questions for machine com- prehension of text. In EMNLP, 2016. 7
2016
-
[36]
Xnor-net: Imagenet classification using bi- nary convolutional neural networks
Mohammad Rastegari, Vicente Ordonez, Joseph Redmon, and Ali Farhadi. Xnor-net: Imagenet classification using bi- nary convolutional neural networks. In ECCV, 2016. 3
2016
-
[37]
Dandekar S
N. Dandekar S. Iyer, K. Csernai, and et al. First quora dataset release: Question pairs. data. quora. com. 2017. 7
2017
-
[38]
Manning, Andrew Y
Richard Socher, Alex Perelygin, Jean Wu, Jason Chuang, Christopher D. Manning, Andrew Y . Ng, and Christopher Potts. Recursive deep models for semantic compositional- ity over a sentiment treebank. In EMNLP, 2013. 7
2013
-
[39]
The german traffic sign recognition bench- mark: A multi-class classification competition
Johannes Stallkamp, Marc Schlipsing, Jan Salmen, and Christian Igel. The german traffic sign recognition bench- mark: A multi-class classification competition. In IJCNN,
-
[40]
Fast object detection based on binary deep convolution neural networks
Siyang Sun, Yingjie Yin, Xingang Wang, De Xu, Wenqi Wu, and Qingyi Gu. Fast object detection based on binary deep convolution neural networks. CAAI Trans. Intell. Technol., 3 (4):191–197, 2018. 3
2018
-
[41]
Llama 2: Open foundation and fine-tuned chat models.arXiv preprint arXiv:2307.09288, 2023
Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, et al. Llama 2: Open foundation and fine-tuned chat models.arXiv preprint arXiv:2307.09288, 2023. 1
2023 arXiv
-
[42]
Correa, Carlos Hinojosa, and Henry Arguello
Edwin Vargas, Claudia V . Correa, Carlos Hinojosa, and Henry Arguello. Biper: Binary neural networks using a peri- odic function. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 5684–5693, 2024. 3
2024
-
[43]
Alex Wang, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel R. Bowman. GLUE: A multi-task benchmark and analysis platform for natural language under- standing. In ICLR, 2019. 7
2019
-
[44]
Alex Warstadt, Amanpreet Singh, and Samuel R. Bowman. Neural network acceptability judgments.Trans. Assoc. Com- put. Linguistics, 7:625–641, 2019. 7
2019
-
[45]
Adina Williams, Nikita Nangia, and Samuel R. Bowman. A broad-coverage challenge corpus for sentence understanding through inference. In NAACL-HLT, 2018. 7
2018
-
[46]
Hug- gingface’s transformers: State-of-the-art natural language processing
Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chau- mond, Clement Delangue, Anthony Moi, Pierric Cistac, Tim Rault, R´emi Louf, Morgan Funtowicz, and Jamie Brew. Hug- gingface’s transformers: State-of-the-art natural language processing. CoRR, abs/1910.03771, 2019. 1
1910 arXiv
-
[47]
Morcos, Hongseok Namkoong, Ali Farhadi, Yair Carmon, Simon Kornblith, and Ludwig Schmidt
Mitchell Wortsman, Gabriel Ilharco, Samir Yitzhak Gadre, Rebecca Roelofs, Raphael Gontijo Lopes, Ari S. Morcos, Hongseok Namkoong, Ali Farhadi, Yair Carmon, Simon Kornblith, and Ludwig Schmidt. Model soups: averaging weights of multiple fine-tuned models improves accuracy with...
2022
-
[48]
Binary deep neural networks for speech recognition
Xu Xiang, Yanmin Qian, and Kai Yu. Binary deep neural networks for speech recognition. In ISCA, 2017. 4
2017
-
[49]
Ehinger, Aude Oliva, and Antonio Torralba
Jianxiong Xiao, James Hays, Krista A. Ehinger, Aude Oliva, and Antonio Torralba. SUN database: Large-scale scene recognition from abbey to zoo. In CVPR, 2010. 4, 6
2010
-
[50]
Raf- fel, and Mohit Bansal
Prateek Yadav, Derek Tam, Leshem Choshen, Colin A. Raf- fel, and Mohit Bansal. Ties-merging: Resolving interference when merging models. In NeurIPS, 2023. 2, 3, 4, 6
2023
-
[51]
Adamerging: Adap- tive model merging for multi-task learning
Enneng Yang, Zhenyi Wang, Li Shen, Shiwei Liu, Guibing Guo, Xingwei Wang, and Dacheng Tao. Adamerging: Adap- tive model merging for multi-task learning. In ICLR, 2024. 3, 6
2024
-
[52]
Language models are super mario: Absorbing abilities from homologous models as a free lunch
Le Yu, Bowen Yu, Haiyang Yu, Fei Huang, and Yongbin Li. Language models are super mario: Absorbing abilities from homologous models as a free lunch. In ICML, 2024. 2, 3, 4, 6
2024
-
[53]
Lq-nets: Learned quantization for highly accurate and compact deep neural networks
Dongqing Zhang, Jiaolong Yang, Dongqiangzi Ye, and Gang Hua. Lq-nets: Learned quantization for highly accurate and compact deep neural networks. In ECCV, 2018. 3
2018
-
[54]
Preventing zero-shot transfer degradation in continual learning of vision-language models
Zangwei Zheng, Mingyuan Ma, Kai Wang, Ziheng Qin, Xi- angyu Yue, and Yang You. Preventing zero-shot transfer degradation in continual learning of vision-language models. In ICCV, 2023. 3
2023
-
[55]
Dorefa-net: Training low bitwidth convo- lutional neural networks with low bitwidth gradients
Shuchang Zhou, Zekun Ni, Xinyu Zhou, He Wen, Yuxin Wu, and Yuheng Zou. Dorefa-net: Training low bitwidth convo- lutional neural networks with low bitwidth gradients. CoRR,
-
[57]
Exprimental Details To provide a comprehensive overview of the experimental setup, we list the hyperparameter settings for our method and all baseline methods in Table 5. Methods α N Scaling Coef LR Epochs Task-Arithmetic – – 0.3 – – Ties-Merging 0.5 – 0.3 – – DARE 0.5 – – – –...
-
[58]
To evaluate the effectiveness of our method in merging larger mod- els, we conducted experiments on eight visual tasks using the ViT-L/14 model
Additional Results Merging results on the ViT-L/14 model. To evaluate the effectiveness of our method in merging larger mod- els, we conducted experiments on eight visual tasks using the ViT-L/14 model. Table 6 shows the combined perfor- mance of our method and various baselin...
-
[2016]
3 Less is More: Efficient Model Merging with Binary Task Switch Supplementary Material
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.