REVIEW 3 major objections 6 minor 62 references
SpikeVideoFormer: An Efficient Spike-Driven Video Transformer with Hamming Attention and $\mathcal{O}(T)$ Complexity
T0 review · 3 major / 6 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read SpikeVideoFormer claims Hamming attention between binary spikes outperforms dot-product attention in spike-driven video transformers, setting SNN records on three video tasks at linear temporal cost.
desk verdict Solid SNN-video transformer with a useful empirical result, but the abstract overclaims and the key ablation confounds Hamming score with threshold scaling. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is spike-driven Hamming attention (SDHA). Its score is the normalized Hamming similarity $f_H(q_s,k_s)=1-\frac{1}{D}\sum_i \mathbf{1}(q_s^{(i)}\ne k_s^{(i)})$, rewritten as $\frac{1}{2}+\frac{1}{2D}(2q_s-1)^\top(2k_s-1)$ so that 0/1 spikes become $\pm 1$ vectors by bit shifts, the $1/(2D)$ scale folds into the LIF neuron threshold, and the product is reordered to $(2Q_s-1)[(2K_s-1)^\top V_s]$, giving $\mathcal{O}(ND^2)$ complexity linear in token count. The justification comes from Proposition 3.1, which guarantees that with high probability $f_H$ tracks a monotone function of cosine similarity when the spikes are sign random projections of real features. Around SDHA, the paper constructs a space-time joint attention that reshapes the video tokens to length $TN$ before applying attention; this design beats hierarchical and factorized alternatives in its experiments while keeping temporal complexity $\mathcal{O}(T)$. The leaky integrate-and-fire neuron's membrane accumulation carries temporal encoding through the CNN stages.
What would settle it
Extract real spike queries $Q_s$ and keys $K_s$ from a trained SpikeVideoFormer together with the pre-threshold membrane features $Q,K$ at several layers, and measure the average error $|f_H(Q_s,K_s)-g(f_C(Q,K))|$ over many pairs at the channel widths actually used. If the error is large at those widths, Proposition 3.1 is not controlling what the network computes. A second check is ablative: keep the architecture identical but score attention with a centered dot product $(Q_s-\mu)^\top(K_s-\mu)$; if that recovers most of the gain, the contribution is zero-centering rather than Hamming geometry.
Extended reading notes
Core claim
At its core, the paper claims that normalized Hamming similarity, not dot-product, is the correct attention score for spike-driven transformers, and that this substitution is what lets an SNN transformer compete on video. The reported numbers are 79.8% top-1 on Kinetics-400 (against 75.5% for the prior spike-driven transformer), a PA-MPJPE of 39.8 mm on MMHPSD at $T=8$ (against 45.7 mm for the best prior transformer-based SNN), and 73.1% mIoU on CityScapes and 37.9% on VSPW (against 65.9% and 32.3% for prior SNN baselines). The theoretical bridge is Proposition 3.1, adapted from the binary-embedding Johnson–Lindenstrauss lemma: for binary embeddings $q_s=\mathrm{sign}(Aq)$ with Gaussian $A$, the normalized Hamming similarity $f_H(q_s,k_s)$ is within $\delta$ of $g(f_C(q,k))$, a monotone function of cosine similarity, with probability at least $1-2e^{-\delta^2 D}$. Since $g$ is monotone, the ranking of keys under Hamming similarity should match the ranking under cosine attention. The paper rewrites $f_H$ as $\frac{1}{2}+\frac{1}{2D}(2q_s-1)^\top(2k_s-1)$, which turns the computation into additions with a threshold-scaled spiking neuron and preserves the linear-complexity rearrangement of spike-driven attention. It also selects joint space-time attention—flattening the $T\times N$ tokens into one sequence before SDHA—as the best of three space-time designs, all of which run in $\mathcal{O}(TND^2)$.
Load-bearing premise
The load-bearing premise is that the 0/1 spike patterns emitted by the network's neurons behave as if they were sign random projections of real-valued feature vectors; the paper does not show that the actual leaky integrate-and-fire spikes satisfy this, and if they do not, the 'theoretically guided' label is an analogy and the case rests on the experiments.
Editorial extensions
If this is right
- On Kinetics-400, the model reports 79.8% top-1 accuracy, 4.3 points above the strongest prior spike-driven transformer and within 0.8 points of Swin-B while using roughly one third of its power.
- On MMHPSD human pose tracking, PA-MPJPE falls to 39.8 mm at $T=8$ and 47.5 mm at $T=32$; the $T=8$ result is within 0.1 mm of the ANN method GLoT while using far less power.
- In video semantic segmentation, Hamming attention raises mIoU by 7.2 points on CityScapes and 5.6 points on VSPW over the best prior SNN transformer, and replacing Hamming with dot-product in the ablation costs 7.8 points of mIoU.
- All three space-time attention designs (joint, hierarchical, factorized) run in $\mathcal{O}(TND^2)$, so the linear temporal complexity holds regardless of which design is chosen; the joint design is reported as both the simplest and the most accurate.
- Power measurements based on 45nm energy constants place the model at roughly $\times16$, $\times10$, and $\times5$ efficiency gains over recent ANN methods on the three tasks, with event-stream inputs reducing power further because of lower spiking rates.
Reading between the lines
- Because the theoretical guarantee in Proposition 3.1 applies to sign random Gaussian projections of real vectors, and LIF spike trains are not shown to be such projections, the ranking-preservation argument is, at best, an analogy for the actual network; the empirical ablation carries the case.
- The rewritten Hamming score is mathematically a centered bipolar dot product, so a plausible alternative explanation of the gains is that subtracting a reference level removes the all-zeros collapse of raw spike dot products; this suggests a cheap test: keep dot-product attention but center the spikes before scoring.
- Because the temporal cost is $\mathcal{O}(T)$ and event streams are naturally sparse, deploying this architecture on neuromorphic hardware for online, long-horizon video tasks is a direct next step; end-to-end latency and energy on such hardware would test whether the simulated power advantages survive.
- The finding that joint space-time attention beats decomposed designs mirrors what the paper cites from video generation, so SDHA may transfer to spike-driven video diffusion or autoregressive generation, where space-time joint attention is already favored.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes SpikeVideoFormer, a spike-driven video transformer with linear temporal complexity O(T). The core contribution is spike-driven Hamming attention (SDHA), which replaces the dot-product score in prior spike-driven self-attention with a normalized Hamming similarity, motivated by a Johnson–Lindenstrauss-type result on binary embeddings. The authors further compare three space-time attention designs (joint, hierarchical, factorized) and select joint attention, which they show empirically performs best. The model is evaluated on Kinetics-400 video classification, MMHPSD human pose tracking (with video and event-stream inputs), and CityScapes/VSPW video semantic segmentation. The paper reports state-of-the-art performance among SNN baselines on these tasks, with large efficiency gains over ANN video models, and it includes a GitHub repository with code.
Significance. If the central claims hold, this is a useful and timely contribution: it is, to my knowledge, among the first spike-driven video transformers, it demonstrates a credible efficiency-performance trade-off across three diverse video tasks, and the space-time attention design comparison provides practical guidance. The paper ships reproducible code, detailed training hyperparameters in the appendices, and energy estimates consistent with the SNN literature. The theoretical motivation via binary embedding is attractive, although, as discussed below, its applicability to trained LIF features is not established. The empirical gains over strong SNN baselines are substantial in several configurations, especially on video semantic segmentation.
major comments (3)
- [Abstract and §4.2, Tables 3 and 5] The abstract's claim of 'over 15% improvement on the latter two tasks' is not supported by the tables. For human pose tracking on MMHPSD (Table 3), the best improvement in PA-MPJPE over the strongest SNN baseline (Meta-SpikeFormer*, T=32, video input) is (45.7 - 39.8)/45.7 = 12.9%; the T=8 improvement is about 9.6%. For video semantic segmentation, the improvement over Meta-SpikeFormer is 10.9% on CityScapes (65.9 to 73.1 mIoU) and 17.3% on VSPW (32.3 to 37.9 mIoU). Thus the 'over 15%' claim is not representative of the pose task and is dataset-dependent for segmentation. The abstract and the ablation discussion in §4.4 (which states '15% in pose tracking') should be corrected to precise, table-consistent numbers.
- [§4.4, Table 6] The ablation that isolates the attention score function is confounded with the threshold scale. The row 'Att. Score Ham→Dot-prod' reports PA-MPJPE 45.7 and mIoU 65.9, which are exactly the Meta-SpikeFormer* results in Tables 3 and 4, indicating that this row uses the dot-product SDSA with its original threshold scale s=1/8, whereas the proposed SDHA uses s=1/(2D). The threshold-scale ablation in the same table shows that Hamming attention at s=1/8 gives PA-MPJPE 46.7, which is worse than the dot-product row's 45.7, and only mIoU improves (68.5 vs 65.9). Therefore the current evidence does not establish that Hamming similarity itself outperforms dot-product at a matched scale; the observed gains could be due primarily to the better threshold scale. Since Proposition 3.1 does not apply directly to learned LIF features (see next comment), this ablation is the main empirical support for the central novelty. The authors should add a controlled comparison with both score functions evaluated at several threshold scales on both tasks, and report these numbers in the main text.
- [§3.3, Proposition 3.1] The theoretical motivation is presented as a proposition about real-valued vectors q,k and their binary embeddings qs=sign(Aq), ks=sign(Ak) with A having i.i.d. Gaussian entries. However, the queries and keys used in SpikeVideoFormer are produced by learned convolutions, batch normalization, and LIF spiking; the paper provides no argument or measurement that these spikes behave like sign(random Gaussian projections) of the corresponding real features. As stated, the proposition is a known result about binary embeddings and does not directly guarantee anything about the learned spike features. The paper should (a) explicitly state that Proposition 3.1 is an analogy/motivation rather than a theorem about the trained model, or (b) provide a quantitative verification on actual trained features, e.g., by comparing f_H with g(f_C) for the model's Qs and Ks. This is load-bearing because without such a qualification the phrase 'theoretically guided adaptation' overstates what is proven, and the empirical ablation then becomes the sole support for the proposed attention mechanism.
minor comments (6)
- [§3.3, Proposition 3.1 and Appendix A] There is a dimension/notation inconsistency: the proposition states A∈R^{C×D} while the product Aq requires A∈R^{D×C}; Appendix A correctly uses A∈R^{D×C}. Also, 'sign' typically outputs ±1, but qs,ks are defined as {0,1}^D; the mapping from sign outputs to binary values should be made explicit.
- [§3.3, Eq. (10)] The notation SN_{2D} is ambiguous: it is unclear whether the subscript denotes a threshold scale 2D·u_th, a neuron index, or a number of steps. Please define the subscript convention when the threshold is scaled.
- [§4.4, Table 6] The table headers for the two 'Power (mJ)' columns do not indicate which task they refer to. Since each row reports pose and VSS numbers interleaved, the reader cannot tell which power value belongs to which task without inspecting the text.
- [Appendix G] There is a typo: 'calssification head' should be 'classification head'.
- [§2, Visual Cognitive Neuroscience paragraph] The paragraph on visual cognitive neuroscience is disconnected from the rest of the related work and does not clearly motivate the method. Consider removing it or integrating it with the SNN motivation in the introduction.
- [§4.4, first paragraph] The sentence describing the ablation results says '15% in pose tracking and 10% in VSS'; these percentages should be updated to match the corrected relative improvements (approximately 13% and 11% respectively for the numbers in Table 6).
Circularity Check
No significant circularity: SDHA is an independent construction; the JL-based motivation is an external theorem and the threshold scale is a transparent design choice.
full rationale
The central claim—replacing dot-product attention with normalized Hamming similarity in a spike-driven transformer—is not equivalent to its inputs by construction. Proposition 3.1 is a known JL-type binary-embedding result (Jacques et al., 2013; Yi et al., 2015) whose proof is reproduced in Appendix A, and it is cited as a motivation rather than as a definition of the target result. The actual LIF spike features are not shown to satisfy the sign(random-Gaussian-projection) premise, so the theoretical link is an analogy; that is a generalization/validity concern, not a circular reduction. The 1/(2D) scaling in Eq. (10) is algebraically inherited from the normalized-Hamming definition (Eq. (8)) and is tested against alternatives in Table 6; it is a hyperparameter choice, not a fitted prediction. The Ham→Dot-prod ablation does vary both the score function and the threshold scale, which is a legitimate experimental confound, but it does not make the derived quantity equal to the input by definition. Self-citations (e.g., Meta-SpikeFormer, Yao et al., 2024a) supply baselines and architectural settings but are not the load-bearing justification for SDHA. No circular step can be exhibited, so the circularity score is 0. Separately, the abstract's 'over 15% improvement' claim is not fully supported by Tables 3 and 4, but that is a reporting-accuracy issue, not a circularity.
Assumptions & free parameters
free parameters (2)
- threshold scale s in SDHA =
1/2D per layer
- loss weights lambda_pose, lambda_shape, lambda_trans, lambda_3D, lambda_2D =
not stated in the paper
assumptions (3)
- standard math JL Lemma on binary embeddings (Proposition 3.1)
- domain assumption LIF neuron model with threshold-based spiking
- domain assumption Energy model: SNN power = rho * FLOPs * E_MAC with E_MAC=4.6pJ and E_AC=0.9pJ
Cite this review
Pith. "Pith review of SpikeVideoFormer: An Efficient Spike-Driven Video Transformer with Hamming Attention and $\mathcal{O}(T)$ Complexity." pith.science (2026). https://pith.science/paper/NYJBV2XI
@misc{pith2026250510352,
author = {Pith},
title = {Pith review of: SpikeVideoFormer: An Efficient Spike-Driven Video Transformer with Hamming Attention and $\mathcalO(T)$ Complexity},
year = {2026},
howpublished = {\url{https://pith.science/paper/NYJBV2XI}},
note = {Machine review of arXiv:2505.10352}
}
abstract
Spiking Neural Networks (SNNs) have shown competitive performance to Artificial Neural Networks (ANNs) in various vision tasks, while offering superior energy efficiency. However, existing SNN-based Transformers primarily focus on single-image tasks, emphasizing spatial features while not effectively leveraging SNNs' efficiency in video-based vision tasks. In this paper, we introduce SpikeVideoFormer, an efficient spike-driven video Transformer, featuring linear temporal complexity $\mathcal{O}(T)$. Specifically, we design a spike-driven Hamming attention (SDHA) which provides a theoretically guided adaptation from traditional real-valued attention to spike-driven attention. Building on SDHA, we further analyze various spike-driven space-time attention designs and identify an optimal scheme that delivers appealing performance for video tasks, while maintaining only linear temporal complexity. The generalization ability and efficiency of our model are demonstrated across diverse downstream video tasks, including classification, human pose tracking, and semantic segmentation. Empirical results show our method achieves state-of-the-art (SOTA) performance compared to existing SNN approaches, with over 15\% improvement on the latter two tasks. Additionally, it matches the performance of recent ANN-based methods while offering significant efficiency gains, achieving $\times 16$, $\times 10$ and $\times 5$ improvements on the three tasks. https://github.com/JimmyZou/SpikeVideoFormer
Figures
Figures from the paper (6 more)
Reference graph
Works this paper leans on
-
[1]
Vivit: A video vision transformer
Arnab, A., Dehghani, M., Heigold, G., Sun, C., Lu c i \'c , M., and Schmid, C. Vivit: A video vision transformer. In ICCV, 2021
2021
-
[2]
Object domain and modality in the ventral visual pathway
Bi, Y., Wang, X., and Caramazza, A. Object domain and modality in the ventral visual pathway. Trends in cognitive sciences, 2016
work page 2016
-
[3]
Stable video diffusion: Scaling latent video diffusion models to large datasets
Blattmann, A., Dockhorn, T., Kulal, S., Mendelevitch, D., Kilian, M., Lorenz, D., Levi, Y., English, Z., Voleti, V., Letts, A., et al. Stable video diffusion: Scaling latent video diffusion models to large datasets. arXiv preprint arXiv:2311.15127, 2023
arXiv 2023
-
[4]
Cao, J., Guo, H., Wang, Z., Zhou, D., Cheng, H., Zhang, Q., and Xu, R. Spiking diffusion models. IEEE TAI, 2024
work page 2024
-
[5]
Chen, L.-C., Papandreou, G., Kokkinos, I., Murphy, K., and Yuille, A. L. Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and fully connected crfs. IEEE TPAMI, 2017
work page 2017
-
[6]
Xception: Deep learning with depthwise separable convolutions
Chollet, F. Xception: Deep learning with depthwise separable convolutions. In CVPR, 2017
work page 2017
-
[7]
The cityscapes dataset for semantic urban scene understanding
Cordts, M., Omran, M., Ramos, S., Rehfeld, T., Enzweiler, M., Benenson, R., Franke, U., Roth, S., and Schiele, B. The cityscapes dataset for semantic urban scene understanding. In CVPR, 2016
work page 2016
-
[8]
Dapello, J., Marques, T., Schrimpf, M., Geiger, F., Cox, D., and DiCarlo, J. J. Simulating a primary visual cortex at the front of cnns improves robustness to image perturbations. NeurIPS, 2020
work page 2020
Show all 62 references
-
[9]
Imagenet: A large-scale hierarchical image database
Deng, J., Dong, W., Socher, R., Li, L.-J., Li, K., and Fei-Fei, L. Imagenet: A large-scale hierarchical image database. In CVPR, 2009
2009
-
[10]
Repvgg: Making vgg-style convnets great again
Ding, X., Zhang, X., Ma, N., Han, J., Ding, G., and Sun, J. Repvgg: Making vgg-style convnets great again. In CVPR, 2021
2021
-
[11]
An image is worth 16x16 words: Transformers for image recognition at scale
Dosovitskiy, A., Beyer, L., Kolesnikov, A., Weissenborn, D., Zhai, X., Unterthiner, T., Dehghani, M., Minderer, M., Heigold, G., Gelly, S., Uszkoreit, J., and Houlsby, N. An image is worth 16x16 words: Transformers for image recognition at scale. ICLR, 2021
2021
-
[12]
Deep residual learning in spiking neural networks
Fang, W., Yu, Z., Chen, Y., Huang, T., Masquelier, T., and Tian, Y. Deep residual learning in spiking neural networks. NeurIPS, 2021
2021
-
[13]
Bottom-up and top-down approaches for the design of neuromorphic processing systems: tradeoffs and synergies between natural and artificial intelligence
Frenkel, C., Bol, D., and Indiveri, G. Bottom-up and top-down approaches for the design of neuromorphic processing systems: tradeoffs and synergies between natural and artificial intelligence. Proceedings of the IEEE, 2023
2023
-
[14]
Deep residual learning for image recognition
He, K., Zhang, X., Ren, S., and Sun, J. Deep residual learning for image recognition. In CVPR, 2016
2016
-
[15]
1.1 computing's energy problem (and what we can do about it)
Horowitz, M. 1.1 computing's energy problem (and what we can do about it). In ISSCC, 2014
2014
-
[16]
Fast-snn: Fast spiking neural network by converting quantized ann
Hu, Y., Zheng, Q., Jiang, X., and Pan, G. Fast-snn: Fast spiking neural network by converting quantized ann. IEEE TPAMI, 2023
2023
-
[17]
Advancing spiking neural networks toward deep residual learning
Hu, Y., Deng, L., Wu, Y., Yao, M., and Li, G. Advancing spiking neural networks toward deep residual learning. IEEE TNNLS, 2024
2024
-
[18]
N., Boufounos, P
Jacques, L., Laska, J. N., Boufounos, P. T., and Baraniuk, R. G. Robust 1-bit compressive sensing via binary stable embeddings of sparse vectors. IEEE Transactions on Information Theory, 2013
2013
-
[19]
Fully spiking variational autoencoder
Kamata, H., Mukuta, Y., and Harada, T. Fully spiking variational autoencoder. In AAAI, 2022
2022
-
[20]
The kinetics human action video dataset
Kay, W., Carreira, J., Simonyan, K., Zhang, B., Hillier, C., Vijayanarasimhan, S., Viola, F., Green, T., Back, T., Natsev, P., et al. The kinetics human action video dataset. arXiv preprint arXiv:1705.06950, 2017
2017 arXiv
-
[21]
Kocabas, M., Athanasiou, N., and Black, M. J. Vibe: Video inference for human body pose and shape estimation. In CVPR, 2020
2020
-
[22]
M., Pandit, T., Merkel, C., Kubendran, R., Aimone, J
Kudithipudi, D., Schuman, C., Vineyard, C. M., Pandit, T., Merkel, C., Kubendran, R., Aimone, J. B., Orchard, G., Mayr, C., and Benosman, R. Neuromorphic computing at scale. Nature, 2025
2025
-
[23]
Brain-inspired computing: A systematic survey and future trends
Li, G., Deng, L., Tang, H., Pan, G., Tian, Y., Roy, K., and Maass, W. Brain-inspired computing: A systematic survey and future trends. Proceedings of the IEEE, 2024
2024
-
[24]
Firefly: A high-throughput hardware accelerator for spiking neural networks with efficient dsp and memory optimization
Li, J., Shen, G., Zhao, D., Zhang, Q., and Zeng, Y. Firefly: A high-throughput hardware accelerator for spiking neural networks with efficient dsp and memory optimization. IEEE TVLSI, 2023 a
2023
-
[25]
Spikeclip: A contrastive language-image pretrained spiking neural network
Li, T., Liu, W., Lv, C., Gu, Y., Xu, J., Zhang, C., Wu, M., Zheng, X., and Huang, X. Spikeclip: A contrastive language-image pretrained spiking neural network. arXiv preprint arXiv:2310.06488, 2023 b
2023 arXiv
-
[26]
Video swin transformer
Liu, Z., Ning, J., Cao, Y., Wei, Y., Zhang, Z., Lin, S., and Hu, H. Video swin transformer. In CVPR, 2022
2022
-
[27]
Fully convolutional networks for semantic segmentation
Long, J., Shelhamer, E., and Darrell, T. Fully convolutional networks for semantic segmentation. IEEE TPAMI, 2017
2017
-
[28]
Loper, M., Mahmood, N., Romero, J., Pons-Moll, G., and Black, M. J. Smpl: A skinned multi-person linear model. ACM TOG, 2015
2015
-
[29]
Integer-valued training and spike-driven inference spiking neural network for high-performance and energy-efficient object detection
Luo, X., Yao, M., Chou, Y., Xu, B., and Li, G. Integer-valued training and spike-driven inference spiking neural network for high-performance and energy-efficient object detection. ECCV, 2024
2024
-
[30]
Networks of spiking neurons: the third generation of neural network models
Maass, W. Networks of spiking neurons: the third generation of neural network models. Neural networks, 1997
1997
-
[31]
Vspw: A large-scale dataset for video scene parsing in the wild
Miao, J., Wei, Y., Wu, Y., Liang, C., Li, G., and Yang, Y. Vspw: A large-scale dataset for video scene parsing in the wild. In CVPR, 2021
2021
-
[32]
and Torralba, A
Oliva, A. and Torralba, A. The role of context in object recognition. Trends in cognitive sciences, 2007
2007
-
[33]
Local memory attention for fast video semantic segmentation
Paul, M., Danelljan, M., Van Gool, L., and Timofte, R. Local memory attention for fast video semantic segmentation. In IROS, 2021
2021
-
[34]
The human imagination: the cognitive neuroscience of visual mental imagery
Pearson, J. The human imagination: the cognitive neuroscience of visual mental imagery. Nature reviews neuroscience, 2019
2019
-
[35]
Mobilenetv2: Inverted residuals and linear bottlenecks
Sandler, M., Howard, A., Zhu, M., Zhmoginov, A., and Chen, L.-C. Mobilenetv2: Inverted residuals and linear bottlenecks. In CVPR, 2018
2018
-
[36]
Global-to-local modeling for video-based 3d human pose and shape estimation
Shen, X., Yang, Z., Wang, X., Ma, J., Zhou, C., and Yang, Y. Global-to-local modeling for video-based 3d human pose and shape estimation. In CVPR, 2023
2023
-
[37]
F., Klink, P
Storm, J. F., Klink, P. C., Aru, J., Senn, W., Goebel, R., Pigorini, A., Avanzini, P., Vanduffel, W., Roelfsema, P. R., Massimini, M., et al. An integrative, multiscale view on neural theories of consciousness. Neuron, 2024
2024
-
[38]
Deep directly-trained spiking neural networks for object detection
Su, Q., Chou, Y., Hu, Y., Li, J., Mei, S., Zhang, Z., and Li, G. Deep directly-trained spiking neural networks for object detection. In ICCV, 2023
2023
-
[39]
Multi-scale full spike pattern for semantic segmentation
Su, Q., He, W., Wei, X., Xu, B., and Li, G. Multi-scale full spike pattern for semantic segmentation. Neural Networks, 2024
2024
-
[40]
and Egner, T
Summerfield, C. and Egner, T. Expectation (and attention) in visual cognition. Trends in cognitive sciences, 2009
2009
-
[41]
Learning local and global temporal contexts for video semantic segmentation
Sun, G., Liu, Y., Ding, H., Wu, M., and Van Gool, L. Learning local and global temporal contexts for video semantic segmentation. IEEE TPAMI, 2024
2024
-
[42]
N., Kaiser, ., and Polosukhin, I
Vaswani, A., Shazeer, N., Parmar, N., Uszkoreit, J., Jones, L., Gomez, A. N., Kaiser, ., and Polosukhin, I. Attention is all you need. In NeurIPS, 2017
2017
-
[43]
How brains beware: neural mechanisms of emotional attention
Vuilleumier, P. How brains beware: neural mechanisms of emotional attention. Trends in cognitive sciences, 2005
2005
-
[44]
Pssd-transformer: Powerful sparse spike-driven transformer for image semantic segmentation
Wang, H., Liang, X., Zhang, T., Gu, Y., and Geng, W. Pssd-transformer: Powerful sparse spike-driven transformer for image semantic segmentation. In ACM MM, 2024
2024
-
[45]
and Torresani, L
Wang, J. and Torresani, L. Deformable video transformer. In CVPR, 2022
2022
-
[46]
Non-local neural networks
Wang, X., Girshick, R., Gupta, A., and He, K. Non-local neural networks. In CVPR, 2018
2018
-
[47]
End-to-end video instance segmentation with transformers
Wang, Y., Xu, Z., Wang, X., Shen, C., Cheng, B., Shen, H., and Xia, H. End-to-end video instance segmentation with transformers. In CVPR, 2021
2021
-
[48]
Resnet strikes back: An improved training procedure in timm
Wightman, R., Touvron, H., and J \'e gou, H. Resnet strikes back: An improved training procedure in timm. arXiv preprint arXiv:2110.00476, 2021
2021 arXiv
-
[49]
M., and Luo, P
Xie, E., Wang, W., Yu, Z., Anandkumar, A., Alvarez, J. M., and Luo, P. Segformer: Simple and efficient design for semantic segmentation with transformers. In NeurIPS, 2021
2021
-
[50]
Reevaluating the sensory account of visual working memory storage
Xu, Y. Reevaluating the sensory account of visual working memory storage. Trends in Cognitive Sciences, 2017
2017
-
[51]
Cogvideox: Text-to-video diffusion models with an expert transformer
Yang, Z., Teng, J., Zheng, W., Ding, M., Huang, S., Xu, J., Yang, Y., Hong, W., Zhang, X., Feng, G., et al. Cogvideox: Text-to-video diffusion models with an expert transformer. arXiv preprint arXiv:2408.06072, 2024
2024 arXiv
-
[52]
Attention spiking neural networks
Yao, M., Zhao, G., Zhang, H., Hu, Y., Deng, L., Tian, Y., Xu, B., and Li, G. Attention spiking neural networks. IEEE TPAMI, 2023
2023
-
[53]
Spike-driven transformer v2: Meta spiking neural network architecture inspiring the design of next-generation neuromorphic chips
Yao, M., Hu, J., Hu, T., Xu, Y., Zhou, Z., Tian, Y., Xu, B., and Li, G. Spike-driven transformer v2: Meta spiking neural network architecture inspiring the design of next-generation neuromorphic chips. ICLR, 2024 a
2024
-
[54]
Spike-driven transformer
Yao, M., Hu, J., Zhou, Z., Yuan, L., Tian, Y., Xu, B., and Li, G. Spike-driven transformer. NeurIPS, 2024 b
2024
-
[55]
Yao, M., Richter, O., Zhao, G., Qiao, N., Xing, Y., Wang, D., Hu, T., Fang, W., Demirci, T., and Marchi, M. D. Spike-based dynamic computing with asynchronous sensing-computing neuromorphic chip. Nature Communications, 2025
2025
-
[56]
Binary embedding: Fundamental limits and fast algorithm
Yi, X., Caramanis, C., and Price, E. Binary embedding: Fundamental limits and fast algorithm. In ICML, 2015
2015
-
[57]
Metaformer is actually what you need for vision
Yu, W., Luo, M., Zhou, P., Si, C., Zhou, Y., Wang, X., Feng, J., and Yan, S. Metaformer is actually what you need for vision. In CVPR, 2022
2022
-
[58]
Pyramid scene parsing network
Zhao, H., Shi, J., Qi, X., Wang, X., and Jia, J. Pyramid scene parsing network. In CVPR, 2017
2017
-
[59]
Direct training high-performance deep spiking neural networks: a review of theories and methods
Zhou, C., Zhang, H., Yu, L., Ye, Y., Zhou, Z., Huang, L., Ma, Z., Fan, X., Zhou, H., and Tian, Y. Direct training high-performance deep spiking neural networks: a review of theories and methods. Frontiers in Neuroscience, 2024
2024
-
[60]
Spikformer: When spiking neural network meets transformer
Zhou, Z., Zhu, Y., He, C., Wang, Y., Yan, S., Tian, Y., and Yuan, L. Spikformer: When spiking neural network meets transformer. In ICLR, 2022
2022
-
[61]
Eventhpe: Event-based 3d human pose and shape estimation
Zou, S., Guo, C., Zuo, X., Wang, S., Wang, P., Hu, X., Chen, S., Gong, M., and Cheng, L. Eventhpe: Event-based 3d human pose and shape estimation. In ICCV, 2021
2021
-
[62]
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 gl...
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.