REVIEW 3 major objections 5 minor 58 references
Training-free Token Reduction for Vision Mamba
T0 review · 3 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read MTR claims that Mamba's timescale parameter Δ doubles as a free token-importance score, enabling a training-free token reduction framework that cuts FLOPs by about 40% on Vim-B while losing only 1.6% ImageNet top-1 accuracy.
desk verdict A sensible training-free token-reduction recipe for Vision Mamba with a genuinely new importance score; the main risk is under-specified handling of hidden/recurrent state, which needs code or a precise description before the headline numbers can be 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 machinery is the selective state-space update $h_t = e^{A_t} \odot h_{t-1} + B_t(\Delta_t \odot x_t)$, where $\Delta_t = \mathrm{Softplus}(xW_1W_2)$ is an input-dependent value per token. MTR treats this $\Delta_t$ as an input gate and defines the token importance score as the average of $\Delta$ over scanning heads and channels, $s_l = \frac{1}{D}\sum_{d=1}^{D}\Delta_l^d$. The reduction itself is an asymmetric three-way split (Keep / Target / Source), a bipartite similarity merge of Source into Target, and a final reorder step that restores the original token order so the sequential recurrence is not disrupted.
What would settle it
Run the Vim-B 40%-reduction configuration but permute the row order of the hidden state independently of the token pairing before merging; if accuracy stays near 80.3%, then hidden-state alignment is not doing the work, and if it drops sharply, the reported result depends on an alignment the paper never verifies.
Extended reading notes
Core claim
The central claim is that the timescale parameter $\Delta_t$ in a Mamba block behaves like an attention score: when $\Delta_t$ is large, the current token is written more heavily into the hidden state, and when it is small, the model leans on history. Averaging $\Delta_t$ over the bidirectional scanning heads and over the feature dimension yields a per-token score $s_l$ that requires no extra computation, and this score turns out to be a better predictor of which tokens can be discarded than the hidden state, the input $x_t$, $B_t$, $C_t$, or the [CLS]-similarity proxy imported from ViTs. MTR uses $s_l$ to sort the sequence, keeps the top $k\%$ as 'Keep', marks the bottom $k\%$ as 'Source', merges each Source token into its most similar 'Target' token in the middle group through bipartite matching, and finally re-sorts the survivors by their original positions. The paper claims that this structure-aware pipeline consistently outperforms EViT, PuMer, UTR, and HSA under equal FLOP reduction on ViM-S, ViM-B, VideoMamba-S, and VideoMamba-B.
Load-bearing premise
The load-bearing premise is that the hidden-state and residual rows inside each Mamba block stay aligned with the token sequence after the merge, so they can be compressed with the same Keep/Target/Source grouping; the paper states this design choice but provides no dedicated experiment showing the alignment actually holds.
Editorial extensions
If this is right
- Any pretrained Vision Mamba model can be accelerated at inference time by inserting MTR modules after its blocks and choosing a compression ratio; no retraining, fine-tuning, or extra parameters are involved.
- At equal FLOP reduction, MTR claims consistent accuracy gains over the best previous training-free and even retraining-based token reduction methods, with the gap widening as the reduction ratio increases.
- Because the importance score reuses $\Delta$ that is already computed inside the block, the FLOP savings come almost entirely from the shorter token sequence rather than from new computation.
- The reorder step is presented as essential: without restoring original positions, compression damages accuracy, so any future token-reduction method for sequence models should incorporate a similar order-preserving operation.
- The single parameter $k$ ties the desired compression ratio to the grouping split, giving practitioners a continuous speed-accuracy knob without hyperparameter search.
Reading between the lines
- A natural next test is whether the same $\Delta$-based score transfers to non-vision selective SSMs (e.g., language or audio Mamba); the paper does not run those experiments, but the mechanism is model-agnostic.
- The paper treats $\Delta$ as an attention score on heuristic grounds; a direct check would be to verify that tokens with high $\Delta$ are the ones whose removal most changes the model's output distribution, which would turn the heuristic into a measurable claim.
- The hidden-state and residual rows are reduced with the same token grouping, yet no experiment isolates whether state-row alignment is preserved; testing a variant that recomputes the hidden state from merged tokens at higher cost would clarify whether that alignment is what carries the accuracy.
- The reported 40% FLOP cut is theoretical; measuring wall-clock latency on actual hardware would show how much of the theoretical saving survives the reorder and bipartite-matching overhead.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes MTR, a training-free token reduction framework for Vision Mamba models. The method uses the timescale parameter Δ of Mamba's selective state space model as a token importance score, sorts tokens by this score, partitions them into keep/target/source groups, merges source tokens into similar target tokens via bipartite matching, and reorders the remaining tokens to preserve sequence order. Experiments on ImageNet with ViM-S/B and VideoMamba-S/B report that MTR outperforms UTR, HSA, EViT, and PuMer at 20%, 30%, and 40% FLOPS reduction, with the headline result being a 40% FLOPS reduction on ViM-B with only a 1.6% top-1 accuracy drop.
Significance. If the results are reproducible, MTR would be a useful plug-and-play efficiency tool for Mamba-based vision models, since it requires no retraining and relies only on the model's internal Δ statistics. The paper's strengths include comparisons against several baselines, ablations over importance indicators and reduction strategies, and the observation that token order matters for Mamba, which is an important practical point. The central weakness is that the exact treatment of the hidden state and residual is unspecified, which is essential for the method to define a valid forward pass; the paper also provides no code, no error bars, and compares HSA outside its intended retraining regime. The claim that Δ is an 'attention score' is heuristic, though the ablation in Table 3 provides empirical support.
major comments (3)
- [Analysis on reduction operation / Algorithm 1] Algorithm 1 takes only the token sequence y_{l-1} and importance scores s_{l-1} as input and outputs the reduced token sequence x_l; it never specifies how the hidden state and residual are indexed, grouped, or merged. The text in 'Analysis on reduction operation' states that 'our approach applies the same reduction strategy to both the hidden state and residual,' but without a precise rule or an ablation that isolates this choice, the reported 40%/1.6% result on ViM-B may depend on an unstated implementation detail. Please provide a complete specification of the hidden-state and residual reduction, and include an experiment that varies this handling (e.g., reducing with the same token grouping versus recomputing from the reduced sequence).
- [Comparison Methods / Tables 1 and 2] HSA is described as a Mamba token pruning method that involves retraining, yet it is evaluated in a training-free setting. This is not a fair comparison for a method whose importance scores were likely derived or tuned under a learned pruning scheme, so the conclusion that MTR 'consistently outperforms all baselines' is overstated. Please either evaluate HSA under its intended training regime, or explicitly frame the comparison as zero-shot transfer and remove HSA from the claim of a fair head-to-head comparison.
- [Assessing Token Importance in Vision Mamba, Eq. (8)] The derivation of the token importance score is heuristic: Eq. (8) sums Δ over scanning heads and averages over the feature dimension without a formal argument that this aggregated quantity is a valid token-level importance measure in the selective SSM recurrence. The ablation in Table 3 supports the empirical choice, but the paper should state explicitly that this is an empirical finding rather than a derived property, and ideally report variance across runs or checkpoints to assess the stability of the ranking.
minor comments (5)
- [Algorithm 1] The variable k' is computed as (1 - 2k)|y_{l-1}|, but it is called the 'number of tokens in the target group'; this is clear but could be renamed, for example to n_target, to avoid confusion with the reduction ratio k.
- [Preliminary, Eq. (2) and Eq. (4)] The notation for discretized parameters is reused inconsistently: Eq. (2) uses A and B for the discretized matrices, while Eq. (4) introduces A_t and B_t with different meanings; please unify the notation to avoid ambiguity.
- [Analysis on reduction operation] The text says 'More experiments on reduction strategies are provided in the Appendix,' but the manuscript contains no appendix; please either include the additional experiments or remove the reference.
- [Experiments] No code or implementation details are provided, and the main tables report a single run without standard deviations or confidence intervals; given that several differences between methods are within 0.2-0.3% (e.g., Table 2), please release code and report multiple seeds or at least the variance across runs.
- [Visualization, Fig. 3] The visualization is qualitative; consider adding a quantitative evaluation, such as the overlap between retained tokens and CAM-highlighted regions or per-class retention statistics, to support the claim that the 'keep' group corresponds to core content.
Circularity Check
No significant circularity: MTR's importance score is taken from the model's own Delta parameter and its accuracy claims are judged against an external benchmark.
full rationale
The paper's central derivation is MTR: use the Mamba timescale parameter Delta as a token-importance score (Eq. 8), group tokens into keep/target/source, and merge least important tokens into similar target tokens. The score is defined from the model's own internal parameters (Delta_t = Softplus(xW1W2)) and is not fitted to any target accuracy; the reported 40% FLOPs reduction with 1.6% ImageNet drop is measured against the external ImageNet-1K benchmark. The ablation comparing Delta_t with B_t, C_t, [CLS], and X_t is a design choice validated on the same benchmark, which is ordinary model selection rather than a fitted input renamed as a prediction. The paper's self-citations to UTR and HSA are used as baselines and for inference technique details, not as load-bearing justification of the claimed result. The one substantive concern, flagged in 'Analysis on reduction operation,' is that 'our approach applies the same reduction strategy to both the hidden state and residual' while Algorithm 1 only specifies token-sequence reduction; this is a completeness and reproducibility risk, not a circularity step, because it does not reduce the accuracy result to an input of the method. No equation or fitted parameter in the paper is equivalent by construction to the claimed outcome, so the circularity score is 0.
Assumptions & free parameters
free parameters (1)
- reduction ratio k =
20%, 30%, 40% in experiments; main result uses 40%
assumptions (4)
- domain assumption The per-token, feature-averaged timescale Δ is a reliable proxy for token importance in Vision Mamba.
- domain assumption Merging source tokens into the most similar target token by averaging their vectors preserves the information needed by later Mamba layers.
- domain assumption Hidden state and residual rows can be reduced with the same token-based masks as the visible token sequence.
- domain assumption Reordering surviving tokens back to their original positions restores most of the order-sensitive performance.
Cite this review
Pith. "Pith review of Training-free Token Reduction for Vision Mamba." pith.science (2026). https://pith.science/paper/H6SMK63N
@misc{pith2026250714042,
author = {Pith},
title = {Pith review of: Training-free Token Reduction for Vision Mamba},
year = {2026},
howpublished = {\url{https://pith.science/paper/H6SMK63N}},
note = {Machine review of arXiv:2507.14042}
}
read the original abstract
Vision Mamba has emerged as a strong competitor to Vision Transformers (ViTs) due to its ability to efficiently capture long-range dependencies with linear computational complexity. While token reduction, an effective compression technique in ViTs, has rarely been explored in Vision Mamba. Exploring Vision Mamba's efficiency is essential for enabling broader applications. However, we find that directly applying existing token reduction techniques for ViTs to Vision Mamba leads to significant performance degradation. This is primarily because Mamba is a sequence model without attention mechanisms, whereas most token reduction techniques for ViTs rely on attention mechanisms for importance measurement and overlook the order of compressed tokens. In this paper, we investigate a Mamba structure-aware importance score to evaluate token importance in a simple and effective manner. Building on this score, we further propose MTR, a training-free \textbf{M}amba \textbf{T}oken \textbf{R}eduction framework. Without the need for training or additional tuning parameters, our method can be seamlessly integrated as a plug-and-play component across various Mamba models. Extensive experiments demonstrate that our approach significantly reduces computational workload while minimizing performance impact across various tasks and multiple backbones. Notably, MTR reduces FLOPs by approximately 40\% on the Vim-B backbone, with only a 1.6\% drop in ImageNet performance without retraining.
Figures
Reference graph
Works this paper leans on
-
[1]
, " * write output.state after.block = add.period write newline
ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block FUNCTION init.state.consts #0 'before.a...
-
[2]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...
-
[3]
Behrouz, A.; Santacatterina, M.; and Zabih, R. 2024. Mambamixer: Efficient selective state space models with dual token and channel selection. arXiv preprint arXiv:2403.19888
arXiv 2024
-
[4]
Bolya, D.; Fu, C.-Y.; Dai, X.; Zhang, P.; Feichtenhofer, C.; and Hoffman, J. 2022. Token merging: Your vit but faster. arXiv preprint arXiv:2210.09461
arXiv 2022
-
[5]
Cao, Q.; Paranjape, B.; and Hajishirzi, H. 2023. PuMer: Pruning and merging tokens for efficient vision language models. arXiv preprint arXiv:2305.17530
arXiv 2023
-
[6]
Chen, K.; Chen, B.; Liu, C.; Li, W.; Zou, Z.; and Shi, Z. 2024. Rsmamba: Remote sensing image classification with state space model. IEEE Geoscience and Remote Sensing Letters
work page 2024
-
[7]
Chen, M.; Shao, W.; Xu, P.; Lin, M.; Zhang, K.; Chao, F.; Ji, R.; Qiao, Y.; and Luo, P. 2023. Diffrate: Differentiable compression rate for efficient vision transformers. In Proceedings of the IEEE/CVF International Conference on Computer Vision, 17164--17174
work page 2023
-
[8]
Deng, J.; Dong, W.; Socher, R.; Li, L.-J.; Li, K.; and Fei-Fei, L. 2009. Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, 248--255. Ieee
2009
Show all 58 references
-
[9]
Dosovitskiy, A. 2020. An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929
2020 arXiv
-
[10]
Dou, Z.; Wu, Q.; Lin, C.; Cao, Z.; Wu, Q.; Wan, W.; Komura, T.; and Wang, W. 2023. Tore: Token reduction for efficient human mesh recovery with transformer. In Proceedings of the IEEE/CVF International Conference on Computer Vision, 15143--15155
2023
-
[11]
A.; Jafari, F
Fayyaz, M.; Koohpayegani, S. A.; Jafari, F. R.; Sengupta, S.; Joze, H. R. V.; Sommerlade, E.; Pirsiavash, H.; and Gall, J. 2022. Adaptive token sampling for efficient vision transformers. In European Conference on Computer Vision, 396--414. Springer
2022
-
[12]
Y.; Dao, T.; Saab, K
Fu, D. Y.; Dao, T.; Saab, K. K.; Thomas, A. W.; Rudra, A.; and R \'e , C. 2022. Hungry hungry hippos: Towards language modeling with state space models. arXiv preprint arXiv:2212.14052
2022 arXiv
-
[13]
R.; Raje, S.; Chakaravarthy, V.; Sabharwal, Y.; and Verma, A
Goyal, S.; Choudhury, A. R.; Raje, S.; Chakaravarthy, V.; Sabharwal, Y.; and Verma, A. 2020. Power-bert: Accelerating bert inference via progressive word-vector elimination. In International Conference on Machine Learning, 3690--3699. PMLR
2020
-
[14]
Gu, A.; and Dao, T. 2023. Mamba: Linear-time sequence modeling with selective state spaces. arXiv preprint arXiv:2312.00752
2023 arXiv
-
[15]
Gu, A.; Goel, K.; and R \'e , C. 2021. Efficiently modeling long sequences with structured state spaces. arXiv preprint arXiv:2111.00396
2021 arXiv
-
[16]
Guo, H.; Li, J.; Dai, T.; Ouyang, Z.; Ren, X.; and Xia, S.-T. 2024. Mambair: A simple baseline for image restoration with state-space model. In European conference on computer vision, 222--241. Springer
2024
-
[17]
Han, D.; Wang, Z.; Xia, Z.; Han, Y.; Pu, Y.; Ge, C.; Song, J.; Song, S.; Zheng, B.; and Huang, G. 2024. Demystify Mamba in Vision: A Linear Attention Perspective. arXiv preprint arXiv:2405.16605
2024 arXiv
-
[18]
Hatamizadeh, A.; and Kautz, J. 2024. Mambavision: A hybrid mamba-transformer vision backbone. arXiv preprint arXiv:2407.08083
2024 arXiv
-
[19]
B.; Escalera, S.; Taylor, G
Haurum, J. B.; Escalera, S.; Taylor, G. W.; and Moeslund, T. B. 2023. Which tokens to use? investigating token reduction in vision transformers. In Proceedings of the IEEE/CVF International Conference on Computer Vision, 773--783
2023
-
[20]
Huang, T.; Pei, X.; You, S.; Wang, F.; Qian, C.; and Xu, C. 2024. Localmamba: Visual state space model with windowed selective scan. arXiv preprint arXiv:2403.09338
2024 arXiv
-
[21]
Kim, G.; and Cho, K. 2020. Length-adaptive transformer: Train once with length drop, use anytime with search. arXiv preprint arXiv:2010.07003
2020 arXiv
-
[22]
Kim, S.; Shen, S.; Thorsley, D.; Gholami, A.; Kwon, W.; Hassoun, J.; and Keutzer, K. 2022. Learned token pruning for transformers. In Proceedings of the 28th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, 784--794
2022
-
[23]
Kong, Z.; Dong, P.; Ma, X.; Meng, X.; Niu, W.; Sun, M.; Shen, X.; Yuan, G.; Ren, B.; Tang, H.; et al. 2022. Spvit: Enabling faster vision transformers via latency-aware soft token pruning. In European conference on computer vision, 620--640. Springer
2022
-
[24]
Li, K.; Li, X.; Wang, Y.; He, Y.; Wang, Y.; Wang, L.; and Qiao, Y. 2024. Videomamba: State space model for efficient video understanding. In European Conference on Computer Vision, 237--255. Springer
2024
-
[25]
Liang, Y.; Ge, C.; Tong, Z.; Song, Y.; Wang, J.; and Xie, P. 2022. Not all patches are what you need: Expediting vision transformers via token reorganizations. arXiv preprint arXiv:2202.07800
2022 arXiv
-
[26]
Liu, X.; Zhang, C.; and Zhang, L. 2024. Vision mamba: A comprehensive survey and taxonomy. arXiv preprint arXiv:2405.04404
2024 arXiv
-
[27]
Liu, Y.; Tian, Y.; Zhao, Y.; Yu, H.; Xie, L.; Wang, Y.; Ye, Q.; Jiao, J.; and Liu, Y. 2024. VMamba: Visual State Space Model. arXiv preprint arXiv:2401.10166
2024 arXiv
-
[28]
R.; Ranjan, A.; Prabhu, A.; Rastegari, M.; and Tuzel, O
Marin, D.; Chang, J.-H. R.; Ranjan, A.; Prabhu, A.; Rastegari, M.; and Tuzel, O. 2021. Token pooling in vision transformers. arXiv preprint arXiv:2110.03860
2021 arXiv
-
[29]
Mehta, H.; Gupta, A.; Cutkosky, A.; and Neyshabur, B. 2022. Long range language modeling via gated state spaces. arXiv preprint arXiv:2206.13947
2022 arXiv
-
[30]
Meng, L.; Li, H.; Chen, B.-C.; Lan, S.; Wu, Z.; Jiang, Y.-G.; and Lim, S.-N. 2022. Adavit: Adaptive vision transformers for efficient image recognition. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 12309--12318
2022
-
[31]
Pan, B.; Panda, R.; Jiang, Y.; Wang, Z.; Feris, R.; and Oliva, A. 2021. IA-RED ^ 2 : Interpretability-Aware Redundancy Reduction for Vision Transformers. Advances in Neural Information Processing Systems, 34: 24898--24911
2021
-
[32]
N.; and Agneeswaran, V
Patro, B. N.; and Agneeswaran, V. S. 2024. Simba: Simplified mamba-based architecture for vision and multivariate time series. arXiv preprint arXiv:2403.15360
2024 arXiv
-
[33]
Pei, X.; Huang, T.; and Xu, C. 2024. Efficientvmamba: Atrous selective scan for light weight visual mamba. arXiv preprint arXiv:2403.09977
2024 arXiv
-
[34]
Peng, S.; Fu, D.; Wei, B.; Cao, Y.; Gao, L.; and Tang, Z. 2024. Vote&Mix: Plug-and-Play Token Reduction for Efficient Vision Transformer. arXiv preprint arXiv:2408.17062
2024 arXiv
-
[35]
Qiao, Y.; Yu, Z.; Guo, L.; Chen, S.; Zhao, Z.; Sun, M.; Wu, Q.; and Liu, J. 2024. Vl-mamba: Exploring state space models for multimodal learning. arXiv preprint arXiv:2403.13600
2024 arXiv
-
[36]
Rao, Y.; Zhao, W.; Liu, B.; Lu, J.; Zhou, J.; and Hsieh, C.-J. 2021. Dynamicvit: Efficient vision transformers with dynamic token sparsification. Advances in neural information processing systems, 34: 13937--13949
2021
-
[37]
S.; Houlsby, N.; Mustafa, B.; Puigcerver, J.; and Riquelme, C
Renggli, C.; Pinto, A. S.; Houlsby, N.; Mustafa, B.; Puigcerver, J.; and Riquelme, C. 2022. Learning to merge tokens in vision transformers. arXiv preprint arXiv:2202.12015
2022 arXiv
-
[38]
Ruan, J.; Li, J.; and Xiang, S. 2024. Vm-unet: Vision mamba unet for medical image segmentation. arXiv preprint arXiv:2402.02491
2024 arXiv
-
[39]
Ryoo, M.; Piergiovanni, A.; Arnab, A.; Dehghani, M.; and Angelova, A. 2021. Tokenlearner: Adaptive space-time tokenization for videos. Advances in neural information processing systems, 34: 12786--12797
2021
-
[40]
J.; and Yan, Y
Shang, Y.; Cai, M.; Xu, B.; Lee, Y. J.; and Yan, Y. 2024. Llava-prumerge: Adaptive token reduction for efficient large multimodal models. arXiv preprint arXiv:2403.15388
2024
-
[41]
A.; Tan, H.; Yu, T.; Chen, X.; et al
Shen, X.; Song, Z.; Zhou, Y.; Chen, B.; Liu, J.; Zhang, R.; Rossi, R. A.; Tan, H.; Yu, T.; Chen, X.; et al. 2025. Numerical pruning for efficient autoregressive models. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 39, 20418--20426
2025
-
[42]
Shi, Y.; Dong, M.; and Xu, C. 2024. Multi-Scale VMamba: Hierarchy in Hierarchy Visual State Space Model. arXiv preprint arXiv:2405.14174
2024 arXiv
-
[43]
T.; Warrington, A.; and Linderman, S
Smith, J. T.; Warrington, A.; and Linderman, S. W. 2022. Simplified state space layers for sequence modeling. arXiv preprint arXiv:2208.04933
2022 arXiv
-
[44]
Song, Z.; Xu, Y.; He, Z.; Jiang, L.; Jing, N.; and Liang, X. 2022. Cp-vit: Cascade vision transformer pruning via progressive sparsity prediction. arXiv preprint arXiv:2203.04570
2022 arXiv
-
[45]
Touvron, H.; Cord, M.; Douze, M.; Massa, F.; Sablayrolles, A.; and J \'e gou, H. 2021. Training data-efficient image transformers & distillation through attention. In International conference on machine learning, 10347--10357. PMLR
2021
-
[46]
Wang, A.; Sun, F.; Chen, H.; Lin, Z.; Han, J.; and Ding, G. 2024. [CLS] Token Tells Everything Needed for Training-free Efficient MLLMs. arXiv preprint arXiv:2412.05819
2024 arXiv
-
[47]
Wang, H.; Dedhia, B.; and Jha, N. K. 2024. Zero-TPrune: Zero-shot token pruning through leveraging of the attention graph in pre-trained transformers. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 16070--16079
2024
-
[48]
Wang, J.; Zhu, W.; Wang, P.; Yu, X.; Liu, L.; Omar, M.; and Hamid, R. 2023. Selective structured state-spaces for long-form video understanding. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 6387--6397
2023
-
[49]
Xu, J.; De Mello, S.; Liu, S.; Byeon, W.; Breuel, T.; Kautz, J.; and Wang, X. 2022. Groupvit: Semantic segmentation emerges from text supervision. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 18134--18144
2022
-
[50]
Xu, R.; Wang, Y.; Luo, Y.; and Du, B. 2025. Rethinking Visual Token Reduction in LVLMs under Cross-modal Misalignment. arXiv preprint arXiv:2506.22283
2025
-
[51]
Yang, C.; Chen, Z.; Espinosa, M.; Ericsson, L.; Wang, Z.; Liu, J.; and Crowley, E. J. 2024. Plainmamba: Improving non-hierarchical mamba in visual recognition. arXiv preprint arXiv:2403.17695
2024 arXiv
-
[52]
Yang, Y.; Xing, Z.; and Zhu, L. 2024. Vivim: a video vision mamba for medical video object segmentation. arXiv preprint arXiv:2401.14168
2024 arXiv
-
[53]
M.; Mallya, A.; Kautz, J.; and Molchanov, P
Yin, H.; Vahdat, A.; Alvarez, J. M.; Mallya, A.; Kautz, J.; and Molchanov, P. 2022. A-vit: Adaptive tokens for efficient vision transformer. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 10809--10818
2022
-
[54]
E.; Feng, J.; and Yan, S
Yuan, L.; Chen, Y.; Wang, T.; Yu, W.; Shi, Y.; Jiang, Z.-H.; Tay, F. E.; Feng, J.; and Yan, S. 2021. Tokens-to-token vit: Training vision transformers from scratch on imagenet. In Proceedings of the IEEE/CVF international conference on computer vision, 558--567
2021
-
[55]
Zhan, Z.; Kong, Z.; Gong, Y.; Wu, Y.; Meng, Z.; Zheng, H.; Shen, X.; Ioannidis, S.; Niu, W.; Zhao, P.; et al. 2024 a . Exploring token pruning in vision state space models. arXiv preprint arXiv:2409.18962
2024 arXiv
-
[56]
Zhan, Z.; Wu, Y.; Kong, Z.; Yang, C.; Gong, Y.; Shen, X.; Lin, X.; Zhao, P.; and Wang, Y. 2024 b . Rethinking Token Reduction for State Space Models. arXiv preprint arXiv:2410.14725
2024 arXiv
-
[57]
Zhang, Q.; Cheng, A.; Lu, M.; Zhuo, Z.; Wang, M.; Cao, J.; Guo, S.; She, Q.; and Zhang, S. 2024. [CLS] Attention is All You Need for Training-Free Visual Token Pruning: Make VLM Inference Faster. arXiv preprint arXiv:2412.01818
2024 arXiv
-
[58]
Zhu, L.; Liao, B.; Zhang, Q.; Wang, X.; Liu, W.; and Wang, X. 2024. Vision mamba: Efficient visual representation learning with bidirectional state space model. arXiv preprint arXiv:2401.09417
2024 arXiv
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.