REVIEW 3 major objections 4 minor 1 cited by
MANTA: Diffusion Mamba for Efficient and Effective Stochastic Long-Term Dense Anticipation
T0 review · 3 major / 4 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read MANTA replaces the previous best diffusion generator with a bidirectional Mamba stack that reaches a dense global temporal receptive field at linear cost, and reports state-of-the-art accuracy on Breakfast, 50Salads, and Assembly101 with…
desk verdict MANTA is a solid, efficient architectural win for stochastic dense anticipation, but the paper's story about long-range information flow is under-verified and deserves a look before you take the 'global receptive field' claim at face value. 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 component is the Bidirectional Selective State-Space Layer (BSSL), a Mamba-style block that processes the temporal sequence with two S6 scans, one forward and one backward, whose input-dependent matrices (B, C, and Δ) act as data-dependent gates. It carries the argument by replacing the dilated gated temporal convolutions of GTDA: it provides a dense global receptive field with linear cost, and its selectivity lets the model treat the observed and zero-masked halves of the input differently. The 15-block MANTA stack built from BSSL is the whole temporal engine; the diffusion process and DDIM sampling are inherited from GTDA unchanged.
What would settle it
Perturb a single observed frame in a trained MANTA and measure how far into the masked future its influence changes the output, across all 15 blocks and on the longest Assembly101 sequences; if the influence decays before the end of the anticipation horizon in early blocks, or if a model with the backward path removed matches the bidirectional model on the 25-minute videos, the dense-global-receptive-field explanation is wrong.
Extended reading notes
Core claim
MANTA is a diffusion generator that predicts past and future one-hot action labels jointly, conditioned on observed visual features zero-padded over the future. Its core discovery is that the S6 selective state-space layer, run in both forward and backward temporal directions, gives every position a dense, locally aware global receptive field in a single stage, so the zero-padded future entries can draw on observed context from the very first block. This removes the need for GTDA's multi-stage dilated architecture: a single stack of 15 MANTA blocks outperforms GTDA on three datasets, with the largest gains on longer videos and longer anticipation horizons. The same blocks are also much cheaper: 2.8× fewer parameters, 65.3× faster inference for 25 stochastic samples, and 6.6× faster training.
Load-bearing premise
The S6 selective state-space layer's fixed-size hidden state can carry the observed frames' information across the whole masked future region, and the backward scan fills in what the causal forward scan drops; the evidence for this is the final accuracy and the bidirectionality ablation, not a direct measurement of the receptive field.
Editorial extensions
If this is right
- If MANTA's claim holds, long-term stochastic anticipation no longer needs multi-stage dilated generators: a single Mamba stage matches or beats GTDA's accuracy on all three datasets.
- The efficiency gain (65.3× inference, 6.6× training, 2.8× fewer parameters) makes generating 25 stochastic samples per observation practical on long videos, opening the door to real-time anticipation.
- The reported performance gap over GTDA widens on longer videos (5.5% versus 3.8% Mean MoC improvement), implying that long-horizon forecasting is exactly where dense global receptive fields help most.
- Removing either the backward scan or the S6 selectivity degrades accuracy substantially (Top-1 MoC drops from 55.5 to 35.8 without the backward path at α=0.2, β=0.1), so both design choices are load-bearing for the reported results.
Reading between the lines
- A natural extension the paper does not test is to swap the BSSL generator into other masked-fill dense prediction tasks, such as future motion or audio forecasting, where the same observed-context-to-masked-region propagation problem appears.
- The paper attributes the gain to dense global receptive field but does not measure effective receptive field directly; a head-to-head against a bidirectional linear-attention generator with comparable gating would isolate whether the mechanism is the receptive field or the particular SSM dynamics.
- Assembly101 contains 25-minute videos, yet the duration-based analysis is only reported on Breakfast; re-running the video-length grouping on Assembly101 would provide the strongest test of the long-range modelling claim.
- Because 50Salads converges with only 10 DDIM steps while Breakfast and Assembly101 use 50, the interaction between generator capacity and number of sampling steps is unexplored and could yield further speedups.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes MANTA, a diffusion-based stochastic long-term dense action anticipation model that replaces GTDA's multi-stage gated temporal convolutional generator with a single-stage stack of 15 bidirectional Mamba (S6) blocks. The core idea is that the selective state-space layer provides a global receptive field with linear complexity, allowing observed visual features to propagate into the zero-masked future region and improving both accuracy and efficiency. Experiments are conducted on Breakfast, 50Salads, and Assembly101 using the standard alpha/beta protocol, with Mean and Top-1 MoC metrics. The authors report state-of-the-art accuracy on the three datasets, with the exception of Assembly101 Top-1 at beta=0.1, and large speedups over GTDA (65.3x inference, 6.6x training). Ablations study the contributions of selectivity, bidirectionality, block structure, and block count, and supplementary material provides additional ablations and standard deviations for Breakfast.
Significance. MANTA is a well-executed, incremental improvement over the same authors' GTDA. Its strengths include reproducible code, ablations that isolate key design choices, and substantial efficiency gains (65.3x inference, 6.6x training, 2.8x fewer parameters). If the reported gains are robust, the model provides a more practical stochastic anticipation method. However, the claimed mechanism for long-range observed-to-future information flow is not directly measured, and the empirical gains on Assembly101 are small; the central evidence for the 'very long sequence' claim is therefore incomplete.
major comments (3)
- [Sec. 4.3, Table 1] The paper reports no standard deviations or significance tests for Assembly101 and 50Salads. On Assembly101 the Mean MoC improvements over GTDA are small (e.g., 6.7 vs 6.4 at alpha=0.2, beta=0.1; 5.3 vs 4.5 at beta=0.2) and Top-1 MoC is actually worse at beta=0.1 (16.9 vs 18.0). Without variance estimates, it is unclear whether the claimed state-of-the-art results on these two datasets are statistically meaningful. Please add error bars or significance testing for the main comparisons.
- [Sec. 3.2.2, Eqs. (11)-(14) and Table 3] The bidirectional layer's backward scan processes the reversed sequence, so for a future position j it only sees positions j, j+1, ..., P+F (after reversing), never the observed block at positions 1,...,P. Only the forward scan can propagate observed information into the masked future region. The bidirectionality ablation in Table 3 therefore demonstrates the value of future context, not the long-range observed-to-future flow that motivates the architecture. Please add an experiment that directly measures information flow from observed inputs to future predictions, such as perturbing observed positions and measuring the change in future outputs at varying distances, or report performance on Assembly101 broken down by anticipation horizon. This would substantiate the 'global receptive field' and 'early propagation' claims.
- [Sec. 4.3, Fig. 5] The only duration-based analysis is on Breakfast, whose sequences max out at 10.8 minutes (5.4 minutes of anticipation at beta=0.5), and Fig. 5 aggregates over all future positions. Assembly101, with anticipation horizons up to 12.5 minutes, is not analyzed as a function of horizon or video length. Without such analysis, the claim of effectiveness on 'very long sequences' is not directly supported by the experiments.
minor comments (4)
- [Abstract and Conclusion] The statement 'achieves state-of-the-art results on three datasets' is an overstatement given the Assembly101 Top-1 MoC result at beta=0.1 (16.9 vs 18.0 for GTDA); please qualify the claim to reflect the exception noted in Section 4.3.
- [Eq. (9)] The formula for bar-B is ambiguous as printed: 'exp(delta A)-1(exp(delta A) - I) delta B' could be misread. Please write the intended expression, e.g., (e^{delta A} - I)(delta A)^{-1} delta B, or (e^{delta A} - I) A^{-1} B, to avoid confusion.
- [Supplementary Tab. 10] In the row for 25 samples, the Mean MoC value at beta=0.1 appears to be a typo: 25.5 should likely be 27.7 (compare with Table 1 for the same configuration).
- [Fig. 5] Consider labeling the number of videos in each duration group or adding error bars, since group sizes likely vary and the aggregated mean could be dominated by a few long videos.
Circularity Check
No significant circularity: MANTA's central claims are empirical results on held-out benchmark splits, not reductions of the method's inputs.
full rationale
The paper's central claim is that replacing GTDA's dilated-convolution generator with a Mamba-based bidirectional selective state-space generator improves stochastic long-term dense anticipation. This claim is evaluated on held-out validation/test splits of the public Breakfast, 50Salads, and Assembly101 datasets under the standard MoC protocol, so no fitted parameter is renamed as a prediction. The training objective in Eq. (16) is a standard L2 diffusion-reconstruction loss against ground-truth one-hot action sequences, and the conditioning vector in Eq. (3) is constructed from observed visual features and zeros, not from the model's own outputs. The diffusion formulation is adopted from the authors' prior GTDA work, but that adoption is an explicit baseline extension rather than a load-bearing citation used to justify the new result; GTDA is also the comparison baseline, and its correctness is not assumed to establish MANTA's superiority. The Mamba/S6 and bidirectional scanning components are inherited from external public work and are tested through ablations (Tables 2 and 3), not imported as an unexamined uniqueness theorem. Claims about long-range temporal modelling are empirical and could be challenged by direct information-flow measurements, but that is a correctness-risk concern, not circularity. No equation, prediction, or benchmark result reduces to the method's own inputs by construction.
Assumptions & free parameters
free parameters (4)
- Number of MANTA blocks (B) =
15
- Number of DDIM inference steps (D) =
50 for Breakfast/Assembly101, 10 for 50Salads
- Number of diffusion training steps (T) =
1000
- Number of evaluation samples (S) =
25
assumptions (4)
- domain assumption The Mamba S6 layer provides a global receptive field with linear complexity in sequence length.
- domain assumption Zero-padding the future visual features in the conditioning vector X is a valid way to represent unobserved frames, and the network can learn to ignore the zero entries.
- domain assumption The L2 reconstruction loss on one-hot encoded action sequences is appropriate for training the diffusion generator.
- domain assumption Pre-extracted I3D and TSM features and the MoC protocol with S=25 samples provide a valid measure of anticipation quality.
Cite this review
Pith. "Pith review of MANTA: Diffusion Mamba for Efficient and Effective Stochastic Long-Term Dense Anticipation." pith.science (2026). https://pith.science/paper/23TPZBQ4
@misc{pith2026250108837,
author = {Pith},
title = {Pith review of: MANTA: Diffusion Mamba for Efficient and Effective Stochastic Long-Term Dense Anticipation},
year = {2026},
howpublished = {\url{https://pith.science/paper/23TPZBQ4}},
note = {Machine review of arXiv:2501.08837}
}
read the original abstract
Long-term dense action anticipation is very challenging since it requires predicting actions and their durations several minutes into the future based on provided video observations. To model the uncertainty of future outcomes, stochastic models predict several potential future action sequences for the same observation. Recent work has further proposed to incorporate uncertainty modelling for observed frames by simultaneously predicting per-frame past and future actions in a unified manner. While such joint modelling of actions is beneficial, it requires long-range temporal capabilities to connect events across distant past and future time points. However, the previous work struggles to achieve such a long-range understanding due to its limited and/or sparse receptive field. To alleviate this issue, we propose a novel MANTA (MAmba for ANTicipation) network. Our model enables effective long-term temporal modelling even for very long sequences while maintaining linear complexity in sequence length. We demonstrate that our approach achieves state-of-the-art results on three datasets - Breakfast, 50Salads, and Assembly101 - while also significantly improving computational and memory efficiency. Our code is available at https://github.com/olga-zats/DIFF_MANTA .
Figures
Figures from the paper (7 more)
Forward citations
Cited by 1 Pith paper
-
EEvAct: Early Event-Based Action Recognition with High-Rate Two-Stream Spiking Neural Networks
A high-rate two-stream spiking network with a lightweight gated fusion unit achieves 94.9% on THU EACT-50 and enables early prediction within 100 ms.
Reference graph
Works this paper leans on
-
[1]
Y . Abu Farha, A. Richard, and J. Gall. When will you do what?-Anticipating temporal occurrences of activities. In IEEE Conference on Computer Vision and Pattern Recog- nition (CVPR), 2018. 2
work page 2018
-
[2]
Y . Abu Farha, Q. Ke, B. Schiele, and J. Gall. Long-term anticipation of activities with cycle consistency. In DAGM German Conference on Pattern Recognition (GCPR), 2020. 2, 5
work page 2020
-
[3]
K. Ashutosh, R. Girdhar, L. Torresani, and K. Grauman. Hi- ervl: Learning hierarchical video-language embeddings. In IEEE Conference on Computer Vision and Pattern Recogni- tion (CVPR), 2023. 2
work page 2023
-
[4]
Jimmy Lei Ba. Layer normalization. arXiv preprint arXiv:1607.06450, 2016. 5
arXiv 2016
-
[5]
Emad Bahrami, Gianpiero Francesca, and Juergen Gall. How much temporal long-term context is needed for action seg- mentation? In IEEE International Conference on Computer Vision (ICCV), 2023. 8
work page 2023
- [6]
-
[7]
Y . Farha and J. Gall. Uncertainty-aware anticipation of activ- ities. In IEEE International Conference on Computer Vision Workshop (ICCVW), 2019. 1, 2, 5, 6
work page 2019
-
[8]
A. Furnari and G. M. Farinella. Rolling-unrolling lstms for action anticipation from first-person video. IEEE Transac- tions on Pattern Analysis and Machine Intelligence (TPAMI),
Show all 66 references
-
[9]
Latency matters: Real-time action fore- casting transformer
Harshayu Girase, Nakul Agarwal, Chiho Choi, and Kart- tikeya Mangalam. Latency matters: Real-time action fore- casting transformer. In IEEE Conference on Computer Vi- sion and Pattern Recognition (CVPR), 2023
2023
-
[10]
Girdhar and K
R. Girdhar and K. Grauman. Anticipative Video Trans- former. In IEEE International Conference on Computer Vi- sion (ICCV), 2021. 2
2021
-
[11]
D. Gong, J. Lee, M. Kim, S.J. Ha, and M. Cho. Future trans- former for long-term action anticipation. In IEEE Confer- ence on Computer Vision and Pattern Recognition (CVPR) ,
-
[12]
Grauman, A
K. Grauman, A. Westbury, and et al. Ego4d: Around the world in 3,000 hours of egocentric video. IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2022. 2
2022
-
[13]
Mamba: Linear-time sequence modeling with selective state spaces
Albert Gu and Tri Dao. Mamba: Linear-time sequence modeling with selective state spaces. arXiv preprint arXiv:2312.00752, 2023. 1, 2, 3, 4
2023 arXiv
-
[14]
Combining recurrent, convolutional, and continuous-time models with linear state space layers
Albert Gu, Isys Johnson, Karan Goel, Khaled Saab, Tri Dao, Atri Rudra, and Christopher Ré. Combining recurrent, convolutional, and continuous-time models with linear state space layers. In Advances in Neural Information Processing Systems (NeurIPS), 2021. 2
2021
-
[15]
Efficiently mod- eling long sequences with structured state spaces
Albert Gu, Karan Goel, and Christopher Re. Efficiently mod- eling long sequences with structured state spaces. In Inter- national Conference on Learning Representations (ICLR) ,
-
[16]
Uncertainty-aware action decoupling trans- former for action anticipation
Hongji Guo, Nakul Agarwal, Shao-Yuan Lo, Kwonjoon Lee, and Qiang Ji. Uncertainty-aware action decoupling trans- former for action anticipation. In IEEE Conference on Com- puter Vision and Pattern Recognition (CVPR), 2024. 2
2024
-
[17]
Mambair: A simple baseline for im- age restoration with state-space model
Hang Guo, Jinmin Li, Tao Dai, Zhihao Ouyang, Xudong Ren, and Shu-Tao Xia. Mambair: A simple baseline for im- age restoration with state-space model. In European Confer- ence on Computer Vision (ECCV), 2025. 2, 7
2025
-
[18]
Demystify mamba in vision: A linear attention per- spective
Dongchen Han, Ziyi Wang, Zhuofan Xia, Yizeng Han, Yifan Pu, Chunjiang Ge, Jun Song, Shiji Song, Bo Zheng, and Gao Huang. Demystify mamba in vision: A linear attention per- spective. Advances in Neural Information Processing Sys- tems (NeurIPS), 2024. 4
2024
-
[19]
Gaussian error linear units (gelus)
Dan Hendrycks and Kevin Gimpel. Gaussian error linear units (gelus). arXiv preprint arXiv:1606.08415, 2016. 4
2016 arXiv
-
[20]
Denoising diffu- sion probabilistic models
Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffu- sion probabilistic models. Advances in Neural Information Processing Systems (NeurIPS), 2020. 2, 5
2020
-
[21]
Squeeze-and-excitation networks
Jie Hu, Li Shen, Samuel Albanie, Gang Sun, and Enhua Wu. Squeeze-and-excitation networks. IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2018. 7
2018
-
[22]
Zigma: A dit-style zigzag mamba diffusion model
Vincent Tao Hu, Stefan Andreas Baumann, Ming Gui, Olga Grebenkova, Pingchuan Ma, Johannes Fischer, and Björn Ommer. Zigma: A dit-style zigzag mamba diffusion model. In European Conference on Computer Vision (ECCV), 2024. 2
2024
-
[23]
Q. Ke, M. Fritz, and B. Schiele. Time-conditioned action anticipation in one shot. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2019. 2
2019
-
[24]
Kingma and Jimmy Ba
Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In International Conference on Learning Representations (ICLR), 2015. 1
2015
-
[25]
The language of actions: Recovering the syntax and semantics of goal- directed human activities
Hilde Kuehne, Ali Arslan, and Thomas Serre. The language of actions: Recovering the syntax and semantics of goal- directed human activities. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2014. 2, 5
2014
-
[26]
Videomamba: State space model for efficient video understanding
Kunchang Li, Xinhao Li, Yi Wang, Yinan He, Yali Wang, Limin Wang, and Yu Qiao. Videomamba: State space model for efficient video understanding. In European Conference on Computer Vision (ECCV), 2025. 2, 4, 7
2025
-
[27]
Mamba- nd: Selective state space modeling for multi-dimensional data
Shufan Li, Harkanwar Singh, and Aditya Grover. Mamba- nd: Selective state space modeling for multi-dimensional data. In European Conference on Computer Vision (ECCV),
-
[28]
Pointmamba: A simple state space model for point cloud analysis
Dingkang Liang, Xin Zhou, Wei Xu, Xingkui Zhu, Zhikang Zou, Xiaoqing Ye, Xiao Tan, and Xiang Bai. Pointmamba: A simple state space model for point cloud analysis. In Ad- vances in Neural Information Processing Systems (NeurIPS),
-
[29]
J. Lin, C. Gan, K. Wang, and S. Han. Tsm: Temporal shift module for efficient and scalable video understanding on edge devices. IEEE Transactions on Pattern Analysis and Machine Intelligence (TPAMI), 2020. 5
2020
-
[30]
Fore- casting human-object interaction: joint prediction of motor attention and actions in first person video
Miao Liu, Siyu Tang, Yin Li, and James M Rehg. Fore- casting human-object interaction: joint prediction of motor attention and actions in first person video. In European Con- ference on Computer Vision (ECCV), 2020. 2
2020
-
[31]
Vmamba: Visual state space model
Yue Liu, Yunjie Tian, Yuzhong Zhao, Hongtian Yu, Lingxi Xie, Yaowei Wang, Qixiang Ye, and Yunfan Liu. Vmamba: Visual state space model. Advances in Neural Information Processing Systems (NeurIPS), 2024. 2, 4
2024
-
[32]
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 IEEE International Conference on Computer Vision (ICCV),
-
[33]
U-mamba: Enhancing long-range dependency for biomedical image segmentation
Jun Ma, Feifei Li, and Bo Wang. U-mamba: Enhancing long-range dependency for biomedical image segmentation. arXiv preprint arXiv:2401.04722, 2024. 2
2024 arXiv
-
[34]
Mascaró, H
E.V . Mascaró, H. Ahn, and D. Lee. Intention-conditioned long-term human egocentric action anticipation. In IEEE Winter Conference on Applications of Computer Vision (WACV), 2023. 2
2023
-
[35]
Can’t make an omelette without breaking some eggs: Plausible action anticipation using large video- language models
Himangi Mittal, Nakul Agarwal, Shao-Yuan Lo, and Kwon- joon Lee. Can’t make an omelette without breaking some eggs: Plausible action anticipation using large video- language models. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2024. 2
2024
-
[36]
Scaling diffusion mamba with bidirectional ssms for efficient image and video gener- ation
Shentong Mo and Yapeng Tian. Scaling diffusion mamba with bidirectional ssms for efficient image and video gener- ation. arXiv preprint arXiv:2405.15881, 2024. 2
2024 arXiv
-
[37]
Nagarajan, Y
T. Nagarajan, Y . Li, C. Feichtenhofer, and K. Grauman. Ego- topo: Environment affordances from egocentric video. In IEEE Conference on Computer Vision and Pattern Recogni- tion (CVPR), 2020. 2
2020
-
[38]
Nawhal, A
M. Nawhal, A. A. Jyothi, and G. Mori. Rethinking learning approaches for long-term action anticipation. In European Conference on Computer Vision (ECCV), 2022. 2
2022
-
[39]
Swish: a self-gated activation function
Prajit Ramachandran, Barret Zoph, and Quoc V Le. Swish: a self-gated activation function. arXiv preprint arXiv:1710.05941, 2017. 4
2017 arXiv
-
[40]
Hierarchical text-conditional image gen- eration with clip latents
Aditya Ramesh, Prafulla Dhariwal, Alex Nichol, Casey Chu, and Mark Chen. Hierarchical text-conditional image gen- eration with clip latents. arXiv preprint arXiv:2204.06125,
-
[41]
Interaction region visual transformer for egocentric action anticipation
Debaditya Roy, Ramanathan Rajendiran, and Basura Fer- nando. Interaction region visual transformer for egocentric action anticipation. In IEEE/CVF Winter Conference on Ap- plications of Computer Vision (WACV), 2024. 2
2024
-
[42]
Vm-unet: Vision mamba unet for medical image segmentation
Jiacheng Ruan and Suncheng Xiang. Vm-unet: Vision mamba unet for medical image segmentation. arXiv preprint arXiv:2402.02491, 2024. 2
2024 arXiv
-
[43]
Temporal aggregate representations for long-range video understand- ing
Fadime Sener, Dipika Singhania, and Angela Yao. Temporal aggregate representations for long-range video understand- ing. In European Conference on Computer Vision (ECCV),
-
[44]
Sener, D
F. Sener, D. Chatterjee, D. Shelepov, K. He, D. Singhania, R. Wang, and A. Yao. Assembly101: A large-scale multi- view video dataset for understanding procedural activities. IEEE Conference on Computer Vision and Pattern Recogni- tion (CVPR), 2022. 2, 5
2022
-
[45]
Multi-scale vmamba: Hierarchy in hierarchy visual state space model
Yuheng Shi, Minjing Dong, and Chang Xu. Multi-scale vmamba: Hierarchy in hierarchy visual state space model. arXiv preprint arXiv:2405.14174, 2024. 7
2024 arXiv
-
[46]
Smith, Andrew Warrington, and Scott Linder- man
Jimmy T.H. Smith, Andrew Warrington, and Scott Linder- man. Simplified state space layers for sequence modeling. In International Conference on Learning Representations (ICLR), 2023. 2
2023
-
[47]
Deep unsupervised learning using nonequilibrium thermodynamics
Jascha Sohl-Dickstein, Eric Weiss, Niru Maheswaranathan, and Surya Ganguli. Deep unsupervised learning using nonequilibrium thermodynamics. In International Confer- ence on Machine Learning (ICML), 2015. 2
2015
-
[48]
Denois- ing diffusion implicit models
Jiaming Song, Chenlin Meng, and Stefano Ermon. Denois- ing diffusion implicit models. In International Conference on Learning Representations (ICLR), 2021. 5
2021
-
[49]
Generative modeling by esti- mating gradients of the data distribution.Advances in Neural Information Processing Systems (NeurIPS), 2019
Yang Song and Stefano Ermon. Generative modeling by esti- mating gradients of the data distribution.Advances in Neural Information Processing Systems (NeurIPS), 2019. 2
2019
-
[50]
Score-based generative modeling through stochastic differential equa- tions
Yang Song, Jascha Sohl-Dickstein, Diederik P Kingma, Ab- hishek Kumar, Stefano Ermon, and Ben Poole. Score-based generative modeling through stochastic differential equa- tions. In International Conference on Learning Represen- tations (ICLR), 2021. 2
2021
-
[51]
Sebastian Stein and Stephen J. McKenna. Combining em- bedded accelerometers with computer vision for recognizing food preparation activities. ACM international joint confer- ence on Pervasive and ubiquitous computing, 2013. 2, 5
2013
-
[52]
Vaswani, N
A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, L. Kaiser, and I. Polosukhin. Attention is all you need. In Advances in Neural Information Processing Systems (NeurIPS), 2017. 8
2017
-
[53]
Selective struc- tured state-spaces for long-form video understanding
Jue Wang, Wentao Zhu, Pichao Wang, Xiang Yu, Linda Liu, Mohamed Omar, and Raffay Hamid. Selective struc- tured state-spaces for long-form video understanding. In IEEE Conference on Computer Vision and Pattern Recog- nition (CVPR), 2023. 2
2023
-
[54]
Segmamba: Long-range sequential modeling mamba for 3d medical image segmentation
Zhaohu Xing, Tian Ye, Yijun Yang, Guang Liu, and Lei Zhu. Segmamba: Long-range sequential modeling mamba for 3d medical image segmentation. InInternational Conference on Medical Image Computing and Computer-Assisted Interven- tion, 2024. 2
2024
-
[55]
Diffu- sion models without attention
Jing Nathan Yan, Jiatao Gu, and Alexander M Rush. Diffu- sion models without attention. In IEEE Conference on Com- puter Vision and Pattern Recognition (CVPR), pages 8239– 8249, 2024. 2
2024
-
[56]
Zatsarynna and J
O. Zatsarynna and J. Gall. Action anticipation with goal con- sistency. In IEEE International Conference on Image Pro- cessing (ICIP), 2023. 2
2023
-
[57]
Gated temporal diffusion for stochastic long-term dense anticipation
Olga Zatsarynna, Emad Bahrami, Yazan Abu Farha, Gian- piero Francesca, and Juergen Gall. Gated temporal diffusion for stochastic long-term dense anticipation. European Con- ference on Computer Vision (ECCV). 1, 2, 3, 5, 6, 7, 8, 4
-
[58]
Zatsarynna, Y
O. Zatsarynna, Y . Farha, and J. Gall. Multi-modal temporal convolutional network for anticipating actions in egocentric videos. In IEEE Conference on Computer Vision and Pattern Recognition Workshop (CVPRW), 2021. 2
2021
-
[59]
Self- supervised learning for unintentional action prediction
Olga Zatsarynna, Yazan Abu Farha, and Juergen Gall. Self- supervised learning for unintentional action prediction. In DAGM German Conference on Pattern Recognition (GCPR),
-
[60]
Motion mamba: Efficient and long sequence motion generation
Zeyu Zhang, Akide Liu, Ian Reid, Richard Hartley, Bohan Zhuang, and Hao Tang. Motion mamba: Efficient and long sequence motion generation. In European Conference on Computer Vision (ECCV), 2024. 2
2024
-
[61]
Zhao and R
H. Zhao and R. P. Wildes. On diverse asynchronous activity anticipation. In European Conference on Computer Vision (ECCV), 2020. 1, 2
2020
-
[62]
Antgpt: Can large language models help long-term action anticipation from videos? Internantional Conference on Learning Represen- tations (ICLR), 2024
Qi Zhao, Ce Zhang, Shijie Wang, Changcheng Fu, Nakul Agarwal, Kwonjoon Lee, and Chen Sun. Antgpt: Can large language models help long-term action anticipation from videos? Internantional Conference on Learning Represen- tations (ICLR), 2024. 2
2024
-
[63]
Zhao and P
Y . Zhao and P. Krähenbühl. Real-time online video detection with temporal smoothing transformers. In European Confer- ence on Computer Vision (ECCV), 2022. 2
2022
-
[64]
Anticipative feature fu- sion transformer for multi-modal action anticipation
Zeyun Zhong, David Schneider, Michael V oit, Rainer Stiefelhagen, and Jürgen Beyerer. Anticipative feature fu- sion transformer for multi-modal action anticipation. In IEEE Winter Conference on Applications of Computer Vision (WACV), 2023. 2
2023
-
[65]
Diffant: Diffusion mod- els for action anticipation
Zeyun Zhong, Chengzhi Wu, Manuel Martin, Michael V oit, Juergen Gall, and Jürgen Beyerer. Diffant: Diffusion mod- els for action anticipation. arXiv preprint arXiv:2311.15991,
-
[66]
Vision mamba: Effi- cient visual representation learning with bidirectional state space model
Lianghui Zhu, Bencheng Liao, Qian Zhang, Xinlong Wang, Wenyu Liu, and Xinggang Wang. Vision mamba: Effi- cient visual representation learning with bidirectional state space model. International Conference on Machine Learn- ing (ICML), 2024. 2, 4
2024
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.