REVIEW 3 major objections 5 minor 35 references
MixA-Q: Revisiting Activation Sparsity for Vision Transformers from a Mixed-Precision Quantization Perspective
T0 review · 3 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read MixA-Q shows that assigning lower bit widths to less important windows—instead of pruning them—lets window-based vision transformers run at 1.35x lower computational cost with no measured accuracy loss.
desk verdict MixA-Q is a plausible, well-motivated extension of activation sparsity to mixed-precision quantization, but its 'lossless' speedup claim is weakened by tuning compression ratios on the same COCO val split used for evaluation. 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 Two-Branch Swin Block is the load-bearing mechanism: it replaces a standard Swin block with a high-precision branch and a low-precision branch that share the same attention and feed-forward weights but have separate layer normalizations and separate quantization step sizes and zero points, so windows can be processed at different precisions and scattered back into a single feature map. Window importance is the $\ell^2$ norm of the features, computed once per stage. Per-stage compression ratios are chosen by an evolutionary multi-objective search over bit-operation savings versus COCO mAP, and for QAT a sparsity-aware quantization adaptation trains the model under randomly sampled ratio configurations so that any searched ratio set works without retraining. Dynamic activation distillation—gradients flowing mostly through the high-precision branch for important windows—is what shifts quantization error toward unimportant regions.
What would settle it
Hold out COCO test-dev (or any split unused by the evolutionary search and adaptation), run the same ratio search on training data, and compare MixA-Q at matched bit operations against the uniform-bit baseline; if mAP at 1.25-1.35x bit-operation savings drops by more than a point on the held-out split, the lossless claim is falsified.
Extended reading notes
Core claim
The central claim is that intra-layer activation sparsity—the observation that some local windows of a feature map matter less than others—can be converted directly into precision savings instead of computation skipping. MixA-Q scores each window by the $\ell^2$ norm of its features, routes high-scoring windows through a high-precision attention and feed-forward branch, routes the rest through a low-precision branch, and searches for per-stage compression ratios that minimize bit operations for a given mAP. On COCO object detection with a Swin-Tiny backbone, this yields a lossless 1.35x speedup when layered on a post-training-quantized W4A8 model, a lossless 1.25x speedup on a QAT W4A4 model, and a 1.53x speedup with roughly 1 mAP point lost when 30% activation pruning is added. The same sparsity-aware adaptation raises the W4A4 model's mAP from 43.1 to 43.8 by redistributing quantization error away from important windows, a 24% reduction in quantization degradation.
Load-bearing premise
The lossless-speedup claims rest on optimizing compression ratios against COCO val mAP and then reporting mAP on that same validation split, so the accuracy equivalence may not survive on a held-out test set.
Editorial extensions
If this is right
- On COCO object detection, MixA-Q with a PTQ model reaches 1.35x lower bit operations at equal mAP, meaning training-free deployment is possible.
- At W4A4 in QAT, MixA-Q gives a lossless 1.25x speedup; combining it with 30% activation pruning gives 1.53x with roughly 1 mAP point lost.
- Quantization-aware adaptation alone improves the W4A4 baseline by 0.7 mAP, so better allocation of quantization error, not just lower cost, is part of the payoff.
- On out-of-distribution weather images, MixA-Q degrades less than activation pruning, and with deliberately reversed window selection it degrades 30.6% versus 43.4%, because compressed windows are still computed, not discarded.
- Because MixA-Q works with both QAT and PTQ and does not change the network's data flow, it can be layered on top of existing uniform-bit quantization methods.
Reading between the lines
- The principle 'compress rather than discard' may transfer to any hierarchical vision model where regions are scored and processed in batches, not only Swin; the hard requirement is hardware that can execute both branches at different precisions in parallel.
- The measured speedups are in bit operations; actual wall-clock gains will depend on kernels that pack 2-bit/4-bit windows efficiently, which the paper does not demonstrate.
- The evolutionary search selects compression ratios against COCO val mAP and the same split is used to report mAP, so a held-out evaluation would be needed to confirm the lossless claim generalizes.
- Replacing the $\ell^2$-norm importance score with a learned or attention-based saliency measure could make window assignment more robust to distribution shift and improve both pruning and mixed-precision selections.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes MixA-Q, a mixed-precision activation quantization framework for window-based vision transformers (Swin). For a given uniform-bit quantization configuration, MixA-Q splits each Swin block into high- and low-precision branches, assigns a lower activation bit width to windows deemed less important by an L2-norm importance score, and scatters the results back to the feature map. Compression ratios are chosen by an NSGA-II evolutionary search over a discrete space (six ratios for Swin-Tiny), optimizing bi-objectively for bit-operation savings and COCO val mAP. The method is integrated with QAT (OFQ) and PTQ (RepQ), and optionally combined with activation pruning. Experiments on COCO object detection and panoptic segmentation report a lossless 1.25x speedup with QAT, a training-free 1.35x speedup with PTQ, up to 1.82x speedups with pruning at moderate mAP drop, and an improvement of 0.7 mAP for the W4A4 quantized model attributed to sparsity-aware quantization adaptation (SAQA). The paper also evaluates robustness to COCO-O and to adversarial window selection, where MixA-Q degrades less than SparseViT.
Significance. If the results hold, the paper makes a useful conceptual contribution by transposing activation-sparsity exploitation from pruning to mixed-precision quantization, and the Two-Branch Swin Block is a clean, integration-friendly mechanism. The inclusion of PTQ without training is a genuinely attractive property, and the OOD-robustness comparison with SparseViT is a thoughtful and falsifiable check. However, the headline lossless-accuracy and speedup claims are currently supported only by (i) mAP numbers computed on the same COCO val split that the evolutionary search optimizes, and (ii) bit-operation counts rather than wall-clock latency. These issues are load-bearing for the stated contributions and need to be addressed before the claims can be accepted as established.
major comments (3)
- [Sec. 3.3 and Sec. 4.1] The evolutionary search in Sec. 3.3 explicitly optimizes compression ratios using the objective "mAP is the mean average precision on the COCO val dataset," while the mAP numbers reported in Tables 1, 2, and 4 and in Fig. 4 are computed on the very same COCO val split. The search space of six discretized ratios (about 9^6 ≈ 531,000 configurations) makes it likely that the selected Pareto-front points are optimistically biased relative to true held-out performance. The reported "lossless" margins are small (e.g., Table 1: 43.2 vs. 43.1 for the 1.24x point, and 42.3 vs. 43.1 for the 1.35x point), so a selection bias of a few tenths of mAP is of the same magnitude as the claimed accuracy equivalence. I ask the authors to report results on a held-out split that was not used during the search, or to provide repeated-search variance estimates; at minimum, the paper should explicitly state that all reported mAP values are the search objective itself and therefore not independent measurements.
- [Sec. 4 (opening) and Abstract] The abstract and conclusion use the term "speedup" (1.25x, 1.35x, 1.53x), but Sec. 4 states that all computation savings are measured in bit operations (BOPs) of the backbone. No wall-clock latency, throughput, or energy measurements are reported. Mixed-precision branches with different bit widths, the gather/scatter operations around each window attention, duplicated layer normalizations, and non-uniform window counts across blocks will introduce overheads that BOPs does not capture. The claims should be rephrased as "theoretical bit-operation savings" unless actual runtime measurements are provided, or the limitation should be stated explicitly in the abstract and conclusion.
- [Sec. 4.3 and Abstract] The abstract claims a "training-free 1.35x computational speedup without accuracy loss in PTQ configuration," but the PTQ results are only presented as a Pareto plot in Fig. 7b, without tabulated mAP values and without an explicit indication of which configuration corresponds to the 1.35x point or its exact mAP. Please report the compression-ratio configuration, the equivalent activation bits, the BOPs, and the mAP for the claimed 1.35x point, together with the baseline W4A8 mAP, so that the lossless claim can be verified numerically.
minor comments (5)
- [Sec. 1, contribution 3] "SpraseViT" should be "SparseViT".
- [Sec. 5] The concluding paragraph contains a typo: "bit widts" should be "bit widths".
- [Appendix 6.1, Algorithm 1] The output line "such that Pri = S" should read "such that Σ r_i = S".
- [Sec. 4.3] "the weights and bias of of the QKV layer" contains a duplicated "of".
- [Sec. 4.1, Table 1] The table caption says "Act Bit represents the activations' equivalent bit width," but the meaning of the parenthetical speedup column header "1.33x" etc. should be clarified to indicate that these are relative to the W4A4 OFQ model, not to the full-precision model.
Circularity Check
Compression ratios are searched directly against COCO val mAP, and the same COCO val mAP is then reported as 'lossless'; the headline accuracy-equivalence claims are fitted outcomes rather than independent predictions.
-
fitted input called prediction
[Sec 3.3 Evolutionary Search of Compression Ratios; results reported in Sec 4.1 Tab 1-2, Sec 4.3 Fig 7b]
"The search for optimal compression ratios can be formed as a bi-objective optimization problem: Objectives: computational savings, mAP (mean average precision); Variables: compression ratios for each stage ... mAP is the mean average precision on the COCO val dataset. ... during the evolutionary search, we evaluate different compression ratios without recalibrating the model."
The compression ratios are the free hyperparameters of MixA-Q, and they are tuned by NSGA-II with mAP on COCO val as one of the two objectives. The paper then reports mAP on that same COCO val split (Tabs 1-2 and Fig 7b) as the accuracy of the selected configurations, including the headline 'lossless 1.35x speedup' and 'lossless 1.25x speedup' claims. With six ratios discretized to {0%,10%,...,80%}, the search space contains about 531,441 configurations; selecting Pareto-optimal points against val mAP and then reporting those same val mAP values as 'without accuracy loss' means the reported numbers are selection maxima over the searched set, not independent evaluations.
full rationale
There is no equation-level self-definitional circularity in MixA-Q: the two-branch block, compression-ratio sampling, and BOP-based speedup calculations are bona fide constructions, and the baselines (SparseViT, OFQ, RepQ) are external prior work by other authors, not self-citations. The method is self-contained against external benchmarks. The concrete circular step is the evaluation protocol: the compression ratios that define every reported MixA-Q point are optimized by evolutionary search against COCO val mAP (Sec 3.3), and the same COCO val mAP is then reported as the accuracy of those points (Sec 4.1, 4.3). The headline 'without accuracy loss' and '1% mAP drop' statements are therefore not predictions of an independent evaluation; they are descriptions of the Pareto front selected on the reported metric. Because the search space is large and no held-out split or variance estimate is reported, the claimed lossless speedups are partially forced by the selection procedure. This warrants a partial circularity score of 6; the paper would need a held-out test split or repeated-search variance reporting to establish the accuracy-equivalence claims as independent results.
Assumptions & free parameters
free parameters (4)
- Per-stage compression ratios (6 ratios for Swin-Tiny) =
Varies by experiment; searched over {0%, 10%, ..., 80%}
- Low-precision branch bit width =
2-bit for QAT; 4-bit for PTQ (baseline 4-bit/8-bit)
- Activation pruning ratio (when incorporated) =
30% overall
- Uniform-sum sampling range and target sum bounds =
Sum range [0.6, 4.2]; per-ratio upper bound 0.8
assumptions (5)
- domain assumption The L2 norm of a window's features is a reliable importance score for window contribution to detection accuracy.
- domain assumption Bit operations (BOPs) are a faithful proxy for computational speedup.
- domain assumption Importance scores computed once per stage remain valid for both the unshifted and shifted window blocks.
- domain assumption The two-branch block with shared weights and independent quantization parameters preserves the float model's function after quantization.
- domain assumption Performance on the COCO val set used for evolutionary search is representative of true deployment performance.
Cite this review
Pith. "Pith review of MixA-Q: Revisiting Activation Sparsity for Vision Transformers from a Mixed-Precision Quantization Perspective." pith.science (2026). https://pith.science/paper/ZK7O65ZM
@misc{pith2026250719131,
author = {Pith},
title = {Pith review of: MixA-Q: Revisiting Activation Sparsity for Vision Transformers from a Mixed-Precision Quantization Perspective},
year = {2026},
howpublished = {\url{https://pith.science/paper/ZK7O65ZM}},
note = {Machine review of arXiv:2507.19131}
}
read the original abstract
In this paper, we propose MixA-Q, a mixed-precision activation quantization framework that leverages intra-layer activation sparsity (a concept widely explored in activation pruning methods) for efficient inference of quantized window-based vision transformers. For a given uniform-bit quantization configuration, MixA-Q separates the batched window computations within Swin blocks and assigns a lower bit width to the activations of less important windows, improving the trade-off between model performance and efficiency. We introduce a Two-Branch Swin Block that processes activations separately in high- and low-bit precision, enabling seamless integration of our method with most quantization-aware training (QAT) and post-training quantization (PTQ) methods, or with simple modifications. Our experimental evaluations over the COCO dataset demonstrate that MixA-Q achieves a training-free 1.35x computational speedup without accuracy loss in PTQ configuration. With QAT, MixA-Q achieves a lossless 1.25x speedup and a 1.53x speedup with only a 1% mAP drop by incorporating activation pruning. Notably, by reducing the quantization error in important regions, our sparsity-aware quantization adaptation improves the mAP of the quantized W4A4 model (with both weights and activations in 4-bit precision) by 0.7%, reducing quantization degradation by 24%.
Figures
Figures from the paper (5 more)
Reference graph
Works this paper leans on
-
[1]
Pymoo: Multi-objective optimization in python
Julian Blank and Kalyanmoy Deb. Pymoo: Multi-objective optimization in python. IEEE Access, 8:89497–89509, 2020. 4
work page 2020
-
[2]
Sparsevit: Revisiting activation spar- sity for efficient high-resolution vision transformer
Xuanyao Chen, Zhijian Liu, Haotian Tang, Li Yi, Hang Zhao, and Song Han. Sparsevit: Revisiting activation spar- sity for efficient high-resolution vision transformer. In Pro- ceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 2061–2070, 2023. 1, 2, 3, 4, 5, 6
work page 2023
-
[3]
Masked-attention mask transformer for universal image segmentation
Bowen Cheng, Ishan Misra, Alexander G Schwing, Alexan- der Kirillov, and Rohit Girdhar. Masked-attention mask transformer for universal image segmentation. In Proceed- ings of the IEEE/CVF conference on computer vision and pattern recognition, pages 1290–1299, 2022. 1, 2
work page 2022
-
[4]
A fast and elitist multiobjective genetic algo- rithm: Nsga-ii
Kalyanmoy Deb, Amrit Pratap, Sameer Agarwal, and TAMT Meyarivan. A fast and elitist multiobjective genetic algo- rithm: Nsga-ii. IEEE transactions on evolutionary computa- tion, 6(2):182–197, 2002. 4
work page 2002
-
[5]
Emq: Evolving training-free proxies for automated mixed precision quantization
Peijie Dong, Lujun Li, Zimian Wei, Xin Niu, Zhiliang Tian, and Hengyue Pan. Emq: Evolving training-free proxies for automated mixed precision quantization. In Proceedings of the IEEE/CVF international conference on computer vision, pages 17076–17086, 2023. 3
work page 2023
-
[6]
Hawq: Hessian aware quantization of neural networks with mixed-precision
Zhen Dong, Zhewei Yao, Amir Gholami, Michael W Ma- honey, and Kurt Keutzer. Hawq: Hessian aware quantization of neural networks with mixed-precision. In Proceedings of the IEEE/CVF international conference on computer vision, pages 293–302, 2019. 3
work page 2019
-
[7]
Hawq-v2: Hessian aware trace-weighted quantization of neural networks
Zhen Dong, Zhewei Yao, Daiyaan Arfeen, Amir Gholami, Michael W Mahoney, and Kurt Keutzer. Hawq-v2: Hessian aware trace-weighted quantization of neural networks. Ad- vances in neural information processing systems, 33:18518– 18529, 2020. 3
2020
-
[8]
An image is worth 16x16 words: Trans- formers for image recognition at scale
Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, 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 preprint arXiv:2010.11929, 2020. 1, 2
arXiv 2010
Show all 35 references
-
[9]
Adaptive token sampling for efficient vision transformers
Mohsen Fayyaz, Soroush Abbasi Koohpayegani, Farnoush Rezaei Jafari, Sunando Sengupta, Hamid Reza Vaezi Joze, Eric Sommerlade, Hamed Pirsiavash, and J¨urgen Gall. Adaptive token sampling for efficient vision transformers. In European Conference on Computer Vision, pages 396–414...
2022
-
[10]
Jumping through local minima: Quantization in the loss landscape of vision transformers
Natalia Frumkin, Dibakar Gope, and Diana Marculescu. Jumping through local minima: Quantization in the loss landscape of vision transformers. In Proceedings of the IEEE/CVF International Conference on Computer Vision , pages 16978–16988, 2023. 8
2023
-
[11]
Mask r-cnn
Kaiming He, Georgia Gkioxari, Piotr Doll ´ar, and Ross Gir- shick. Mask r-cnn. In Proceedings of the IEEE international conference on computer vision, pages 2961–2969, 2017. 5
2017
-
[12]
Metamix: Meta-state precision searcher for mixed-precision activation quantization
Han-Byul Kim, Joo Hyung Lee, Sungjoo Yoo, and Hong- Seok Kim. Metamix: Meta-state precision searcher for mixed-precision activation quantization. Proceedings of the AAAI Conference on Artificial Intelligence , 38(12): 13132–13141, 2024. 3
2024
-
[13]
Spvit: Enabling faster vision transformers via latency-aware soft token pruning
Zhenglun Kong, Peiyan Dong, Xiaolong Ma, Xin Meng, Wei Niu, Mengshu Sun, Xuan Shen, Geng Yuan, Bin Ren, Hao Tang, et al. Spvit: Enabling faster vision transformers via latency-aware soft token pruning. In European conference on computer vision, pages 620–640. Springer, 2022. 3
2022
-
[14]
Q-vit: Accurate and fully quantized low-bit vision transformer
Yanjing Li, Sheng Xu, Baochang Zhang, Xianbin Cao, Peng Gao, and Guodong Guo. Q-vit: Accurate and fully quantized low-bit vision transformer. Advances in neural information processing systems, 35:34451–34463, 2022. 2
2022
-
[15]
Repq- vit: Scale reparameterization for post-training quantization of vision transformers
Zhikai Li, Junrui Xiao, Lianwei Yang, and Qingyi Gu. Repq- vit: Scale reparameterization for post-training quantization of vision transformers. In Proceedings of the IEEE/CVF In- ternational Conference on Computer Vision , pages 17227– 17236, 2023. 2, 3, 7
2023
-
[16]
Not all patches are what you need: Expediting vision transformers via token reorganiza- tions
Youwei Liang, Chongjian Ge, Zhan Tong, Yibing Song, Jue Wang, and Pengtao Xie. Not all patches are what you need: Expediting vision transformers via token reorganiza- tions. arXiv preprint arXiv:2202.07800, 2022. 3
2022 arXiv
-
[17]
Microsoft coco: Common objects in context
Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Doll´ar, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In Computer vision–ECCV 2014: 13th European conference, zurich, Switzerland, September 6-12, 2014, proceeding...
2014
-
[18]
QLLM: Accurate and efficient low-bitwidth quantization for large language models
Jing Liu, Ruihao Gong, Xiuying Wei, Zhiwei Dong, Jian- fei Cai, and Bohan Zhuang. QLLM: Accurate and efficient low-bitwidth quantization for large language models. In In- ternational Conference on Learning Representations (ICLR),
-
[19]
Oscillation-free quantization for low-bit vision transform- ers
Shih-Yang Liu, Zechun Liu, and Kwang-Ting Cheng. Oscillation-free quantization for low-bit vision transform- ers. In International conference on machine learning, pages 21813–21824. PMLR, 2023. 2, 5, 6
2023
-
[20]
Pq-sam: Post-training quantization for segment any- thing model
Xiaoyu Liu, Xin Ding, Lei Yu, Yuanyuan Xi, Wei Li, Zhi- jun Tu, Jie Hu, Hanting Chen, Baoqun Yin, and Zhiwei Xiong. Pq-sam: Post-training quantization for segment any- thing model. In European Conference on Computer Vision, pages 420–437. Springer, 2024. 2
2024
-
[21]
Revisiting token pruning for object detection and instance segmentation
Yifei Liu, Mathias Gehrig, Nico Messikommer, Marco Can- nici, and Davide Scaramuzza. Revisiting token pruning for object detection and instance segmentation. In Proceed- ings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 2658–2668, 2024. 1, 3
2024
-
[22]
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. 1, 2, 4, 5
2021
-
[23]
Ompq: Orthogonal mixed precision quantization
Yuexiao Ma, Taisong Jin, Xiawu Zheng, Yan Wang, Huixia Li, Yongjian Wu, Guannan Jiang, Wei Zhang, and Rongrong Ji. Ompq: Orthogonal mixed precision quantization. In Pro- ceedings of the AAAI conference on artificial intelligence , pages 9029–9037, 2023. 3
2023
-
[24]
Coco-o: A benchmark for object detectors under natural distribution shifts
Xiaofeng Mao, Yuefeng Chen, Yao Zhu, Da Chen, Hang Su, Rong Zhang, and Hui Xue. Coco-o: A benchmark for object detectors under natural distribution shifts. In Proceedings of the IEEE/CVF International Conference on Computer Vi- sion, pages 6339–6350, 2023. 7
2023
-
[25]
Data-free quantization through weight equal- ization and bias correction
Markus Nagel, Mart van Baalen, Tijmen Blankevoort, and Max Welling. Data-free quantization through weight equal- ization and bias correction. In Proceedings of the IEEE/CVF international conference on computer vision , pages 1325– 1334, 2019. 2
2019
-
[26]
Up or down? adap- tive rounding for post-training quantization
Markus Nagel, Rana Ali Amjad, Mart Van Baalen, Chris- tos Louizos, and Tijmen Blankevoort. Up or down? adap- tive rounding for post-training quantization. In International conference on machine learning, pages 7197–7206. PMLR,
-
[27]
Dynamicvit: Efficient vision transformers with dynamic token sparsification
Yongming Rao, Wenliang Zhao, Benlin Liu, Jiwen Lu, Jie Zhou, and Cho-Jui Hsieh. Dynamicvit: Efficient vision transformers with dynamic token sparsification. Advances in neural information processing systems, 34:13937–13949,
-
[28]
Entropy-driven mixed- precision quantization for deep network design
Zhenhong Sun, Ce Ge, Junyan Wang, Ming Lin, Hesen Chen, Hao Li, and Xiuyu Sun. Entropy-driven mixed- precision quantization for deep network design. Advances in Neural Information Processing Systems, 35:21508–21520,
-
[29]
Attention is all you need
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszko- reit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. Advances in neural information processing systems, 30, 2017. 2
2017
-
[30]
Thinking in granularity: Dynamic quantization for image super-resolution by intriguing multi- granularity clues, 2024
Mingshen Wang, Zhao Zhang, Feng Li, Ke Xu, Kang Miao, and Meng Wang. Thinking in granularity: Dynamic quantization for image super-resolution by intriguing multi- granularity clues, 2024. 3
2024
-
[31]
Apq: Joint search for network architecture, pruning and quantization policy
Tianzhe Wang, Kuan Wang, Han Cai, Ji Lin, Zhijian Liu, Hanrui Wang, Yujun Lin, and Song Han. Apq: Joint search for network architecture, pruning and quantization policy. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition, pages 2078–2087, 2020. 3
2020
-
[32]
Patch- wise mixed-precision quantization of vision transformer,
Junrui Xiao, Zhikai Li, Lianwei Yang, and Qingyi Gu. Patch- wise mixed-precision quantization of vision transformer,
-
[33]
K-net: Towards unified image seg- mentation
Wenwei Zhang, Jiangmiao Pang, Kai Chen, and Chen Change Loy. K-net: Towards unified image seg- mentation. Advances in Neural Information Processing Systems, 34:10326–10338, 2021. 2
2021
-
[34]
Towards accurate post-training quantization of vision transformers via error reduction
Yunshan Zhong, You Huang, Jiawei Hu, Yuxin Zhang, and Rongrong Ji. Towards accurate post-training quantization of vision transformers via error reduction. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2025. 3
2025
-
[35]
Appendix 6.1. Uniform-sum Compression Ratio Sampling We share the details of our sampling algorithm here: Algorithm 1 Uniform-Sum Compression Ratio Sampling 1: Input: Number of layers n, predefined sum range [smin,s max], upper boundu 2: Output: compression ratios{r0,r 1,...,r...
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.