REVIEW 4 major objections 6 minor 46 references
Skeleton-based Action Recognition with Non-linear Dependency Modeling and Hilbert-Schmidt Independence Criterion
T0 review · 4 major / 6 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read The paper claims that modeling all pairwise joint dependencies with a Gaussian kernel and adding a Hilbert-Schmidt independence objective to the loss yields state-of-the-art skeleton action recognition on three benchmarks.
desk verdict Novel graph refinement plus HSIC loss that looks good empirically, but the HSIC term is added with the wrong sign, so the stated mechanism contradicts the equations. 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 a graph convolutional update whose adjacency is refined by a Gaussian correlation function, coupled with an HSIC-based training objective. The Gaussian correlation $\mathcal{R}(v_i,v_j)=\exp(-(v_i-v_j)^2/(2\delta^2))$ turns every ordered pair of joint features into a dependency weight, and a learned linear map $\phi$ converts those weights into a tensor $\mathbf{R}\in\mathbb{R}^{N\times N\times C'}$ that is broadcast into the adjacency; the kernel width $\delta$ tunes how quickly dependency decays with joint distance. The HSIC objective uses a Mat\'ern kernel with $\eta=3/2$ to compute the kernel matrix of enhanced features, centers it, and measures dependence with the class-label kernel matrix; because the HSIC value is computed from kernel inner products, the authors argue the classification step is dimension-agnostic. The total loss stacks the HSIC-augmented classification loss, a cross-entropy loss on auxiliary predictions, and a KL distillation loss between auxiliary and base logits.
What would settle it
Train the same framework on NTU RGB+D 120 X-Sub with the dependency matrix $\mathbf{R}$ replaced by noise of the same magnitude; if accuracy stays at 86.0%, the gains credited to dependency refinement are not due to the learned joint dependencies. A second check is a kernel-width sweep, e.g. $\delta\in\{0.5,1,2,4,8,16\}$ on the same split: if the accuracy curve has no plateau or the best width differs strongly across action classes, the claim of fine-grained distance control needs qualification.
Extended reading notes
Core claim
On the paper's own terms, the central discovery is that jointly explicit non-linear joint dependencies and a Hilbert-Schmidt independence criterion make skeleton action classification more accurate, with each component contributing independently. The Gaussian correlation function $\mathcal{R}(v_i, v_j) = \exp\left(- (v_i - v_j)^2 / (2\delta^2)\right)$ produces a dependency matrix $\mathbf{R}$ that is added to the skeleton adjacency to form the refined adjacency $\mathbf{A}_c = \mathbf{A} + \mathbf{W}_c \mathbf{R}$, so the graph at each layer is reweighted by feature similarity between every pair of joints. Independently, the HSIC objective maps enhanced features through a Mat\'ern kernel, computes $\mathrm{HSIC}(\hat{z}, y) = \mathrm{tr}(\mathbf{K}_{\hat{z}} \mathbf{H} \mathbf{K}_y \mathbf{H}) / (n-1)^2$, and adds it to the classification loss, with a distillation loss aligning base and auxiliary models. The reported headline results are 93.7% and 97.3% on NTU RGB+D 60 (X-Sub, X-View), 90.6% and 91.7% on NTU RGB+D 120 (X-Sub, X-Set), and 97.2% on Northwestern-UCLA.
Load-bearing premise
The whole approach assumes that the Gaussian correlation score computed from raw joint feature vectors, with fixed kernel widths $\delta\in\{1,9\}$, captures discriminative information about which joints move together; if those similarities are dominated by noise or the fixed width is wrong for a given action, the refined adjacency adds distortion rather than signal, and the reported gains would not be attributable to the model.
Editorial extensions
If this is right
- Actions involving coordinated distant joints, such as kicking or staggering, should be recognized more accurately because the dependency graph no longer requires those joints to be connected in the skeleton.
- The HSIC objective should keep working as feature dimensionality grows, since it measures dependence through kernel matrices rather than estimated densities, so the framework may scale to richer pose representations.
- Multi-stream ensembling over kernel widths (small and large) and modalities (joint and bone) adds consistent accuracy gains over single streams, e.g. +4.6% on NTU120 X-Sub joint-only.
- Removing either the HSIC term or the distillation loss from the total objective decreases accuracy by about 0.8 to 0.9% on NTU120 X-Sub, implying both terms carry information that the classification loss alone does not.
Reading between the lines
- Editorial inference: the HSIC term likely functions as a class-conditional cluster-separation regularizer; this would explain the observed t-SNE separation and suggests the same loss could improve other high-dimensional classification tasks beyond skeletons.
- Editorial inference: the dependence on hand-picked kernel widths (1 and 9) suggests an adaptive or learned per-joint-pair $\delta$ might yield further gains, but the paper does not explore this.
- Editorial inference: because the dependency matrix is computed from raw feature vectors, its quality depends on feature normalization; a testable extension is to apply the refinement in later layers or on learned embeddings rather than raw coordinates.
- Editorial inference: the same all-pairs dependency plus HSIC recipe could transfer to other graph-structured time series, such as multi-agent motion or object interaction forecasting, though the paper only claims skeleton actions.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper proposes a skeleton-based action recognition method with two components: (1) a dependency refinement module that augments the skeleton adjacency matrix with all-pairs joint dependencies computed by a Gaussian correlation function, trained with an ensemble over kernel widths and joint/bone streams; and (2) an HSIC-based learning objective that maps enhanced features into an RKHS with a Matérn kernel and adds an HSIC term to the classification loss. The authors report state-of-the-art accuracies on NTU RGB+D 60, NTU RGB+D 120, and Northwestern-UCLA, with ablations attributing the gains to both components.
Significance. If the proposed mechanism were fully supported, the main contribution would be positive but incremental: a new application of HSIC to skeleton-based action recognition and a simple all-pairs dependency refinement. The reported gains over strong baselines are modest (about 0.9% on NTU60 X-Sub and 0.8–1.1% on NTU120), and the ablation story is internally consistent. The manuscript states that implementations are released, which is a strength, although no repository link is given. However, the central theoretical claim is not currently supported: the paper announces a mathematical derivation of learning objectives, but only presents definitional loss sums, and the sign of the HSIC term appears to contradict the stated mechanism of using HSIC to separate action classes.
major comments (4)
- [Section 3, Eq. (9)] The HSIC term is added to L_cls and the total loss is minimized. Since HSIC is nonnegative (Eq. (8)), minimizing Eq. (9) drives HSIC(z_hat, y) toward zero, i.e., toward statistical independence between the enhanced feature z_hat and the label y. This is the opposite of the paper's stated goal of using HSIC to 'differentiate action classes.' Table 5 reports that removing HSIC lowers accuracy by 0.9%, which is difficult to explain if the written objective penalizes dependence. Either the loss should be L_cls - lambda * HSIC, or the mechanism must be explained; as written, the attribution of the accuracy gain to the HSIC term is unsupported.
- [Abstract and Section 3] The abstract claims that the authors 'mathematically derive learning objectives guaranteeing precise recognition.' The methodology section only defines loss terms in Eqs. (9)–(11); there is no theorem, proposition, or derivation connecting HSIC to classification guarantees. This overclaims a theoretical contribution. The authors should either provide a real derivation or revise the claim to describe Eq. (9) as an empirical objective.
- [Equations (2)–(4)] The dependency refinement is not rigorously specified. In Eq. (2), (v_i - v_j)^2 is not defined for vectors; in Eq. (3), R(v_i, v_j) is a scalar but r_ij is said to be in R^{C'}; and in Eq. (4), A_c = A + W_c R with R in R^{N x N x C'} cannot be added directly to A in R^{N x N} without specifying how W_c acts on the channel dimension. The phrase 'broadcast manner' does not resolve this ambiguity. Please provide exact tensor shapes and the reduction over the C' dimension, since this operation is central to the proposed graph refinement.
- [Implementation Details and Eq. (6)] The Matérn kernel in Eqs. (5)–(6) has hyperparameters alpha and l that are never specified in the experimental settings; only the Gaussian-correlation widths delta in {1,9} are reported. Since the HSIC objective is a central component, the missing alpha and l values make the experiments difficult to reproduce and leave the sensitivity of the method to these parameters unexamined.
minor comments (6)
- [Eq. (2)] Replace (v_i - v_j)^2 with ||v_i - v_j||^2 or explicitly state that the operation is elementwise, followed by a sum or norm.
- [Eq. (8)] The kernel matrix K_y for the label y is not defined; please specify, for example, whether a delta kernel on class labels is used.
- [Tables 4 and 5] There are formatting typos: '2.9M86.0' in Table 4 and 'LT otal' in Table 5 should be corrected.
- [Implementation details] The statement that 'implementations have been released' should include a URL or repository identifier.
- [Abstract and Section 3] The phrase 'without being affected by data dimensionality' is imprecise; HSIC avoids explicit density estimation, but the kernel values still depend on the geometry of the feature space.
- [Table 1] The rows 'Ours' and 'Ours (4 ensemble)' report identical numbers; clarify whether 'Ours' refers to the 4-ensemble model.
Circularity Check
No significant circularity: the HSIC objective and dependency refinement are defined from inputs/labels, and self-citations are not load-bearing.
full rationale
The paper's two claimed contributions are (1) a Gaussian-kernel dependency refinement that augments the graph adjacency matrix, and (2) an HSIC-based learning objective. Neither reduces to its own inputs by construction. In Eq. (4), the refined adjacency Ac = A + WcR is computed from input joint features via Eqs. (2)-(3); this is feature-dependent graph modeling, not a fit to the action labels or to the model's own predictions. The HSIC objective in Eq. (9), LH = Lcls + HSIC(z_hat, y), is defined from feature and label kernel matrices; it is a regularizer added to the classification loss, not a quantity derived from the model's outputs, so it is not self-definitional. The self-citations (e.g., Stream-GCN, Yang et al. 2023) appear only as related work and experimental baselines; they are not invoked to justify the novelty or to force the reported accuracy gains. The abstract's phrase 'mathematically derive learning objectives guaranteeing precise recognition' is not supported by an actual derivation; Eq. (9) is presented as a definition. That is an omitted-support concern, not circularity. Likewise, the skeptical observation that HSIC is nonnegative and that Eq. (9) minimizes it (driving z_hat toward independence from y) is a genuine internal-consistency/sign issue, but it is not a reduction of the result to its inputs; it concerns correctness of the proposed mechanism, not circularity. Overall, the central derivation chain is self-contained against external benchmarks, and no load-bearing circular step is present.
Assumptions & free parameters
free parameters (3)
- Gaussian kernel width delta =
small=1, large=9
- Matern kernel amplitude alpha
- Matern kernel length scale l
assumptions (3)
- domain assumption Maximizing HSIC between motion features and labels improves classification accuracy
- domain assumption Gaussian correlation of joint feature vectors captures action-relevant non-linear dependencies between distant joints
- ad hoc to paper The broadcast addition Ac = A + WcR produces a valid adjacency for graph convolution
Cite this review
Pith. "Pith review of Skeleton-based Action Recognition with Non-linear Dependency Modeling and Hilbert-Schmidt Independence Criterion." pith.science (2026). https://pith.science/paper/62SMOVTB
@misc{pith2026241218780,
author = {Pith},
title = {Pith review of: Skeleton-based Action Recognition with Non-linear Dependency Modeling and Hilbert-Schmidt Independence Criterion},
year = {2026},
howpublished = {\url{https://pith.science/paper/62SMOVTB}},
note = {Machine review of arXiv:2412.18780}
}
read the original abstract
Human skeleton-based action recognition has long been an indispensable aspect of artificial intelligence. Current state-of-the-art methods tend to consider only the dependencies between connected skeletal joints, limiting their ability to capture non-linear dependencies between physically distant joints. Moreover, most existing approaches distinguish action classes by estimating the probability density of motion representations, yet the high-dimensional nature of human motions invokes inherent difficulties in accomplishing such measurements. In this paper, we seek to tackle these challenges from two directions: (1) We propose a novel dependency refinement approach that explicitly models dependencies between any pair of joints, effectively transcending the limitations imposed by joint distance. (2) We further propose a framework that utilizes the Hilbert-Schmidt Independence Criterion to differentiate action classes without being affected by data dimensionality, and mathematically derive learning objectives guaranteeing precise recognition. Empirically, our approach sets the state-of-the-art performance on NTU RGB+D, NTU RGB+D 120, and Northwestern-UCLA datasets.
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]
Bertsimas, D.; and Koduri, N. 2022. Data-driven optimization: A reproducing kernel Hilbert space approach. Operations Research, 70(1): 454--471
work page 2022
-
[4]
Chen, Y.; Zhang, Z.; Yuan, C.; Li, B.; Deng, Y.; and Hu, W. 2021 a . Channel-wise topology refinement graph convolution for skeleton-based action recognition. In Proceedings of the IEEE/CVF International Conference on Computer Vision, 13359--13368
work page 2021
-
[5]
Chen, Z.; Li, S.; Yang, B.; Li, Q.; and Liu, H. 2021 b . Multi-scale spatial temporal graph convolutional network for skeleton-based action recognition. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 35, 1113--1122
work page 2021
-
[6]
Cheng, K.; Zhang, Y.; Cao, C.; Shi, L.; Cheng, J.; and Lu, H. 2020 a . Decoupling gcn with dropgraph module for skeleton-based action recognition. In European Conference on Computer Vision, 536--553. Springer
work page 2020
-
[7]
Cheng, K.; Zhang, Y.; He, X.; Chen, W.; Cheng, J.; and Lu, H. 2020 b . Skeleton-based action recognition with shift graph convolutional network. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 183--192
work page 2020
-
[8]
Chi, H.-g.; Ha, M. H.; Chi, S.; Lee, S. W.; Huang, Q.; and Ramani, K. 2022. Infogcn: Representation learning for human skeleton-based action recognition. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 20186--20196
work page 2022
Show all 46 references
-
[9]
Du, Y.; Wang, W.; and Wang, L. 2015. Hierarchical recurrent neural network for skeleton based action recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, 1110--1118
2015
-
[10]
Gretton, A.; Bousquet, O.; Smola, A.; and Sch \"o lkopf, B. 2005. Measuring statistical dependence with Hilbert-Schmidt norms. In Algorithmic Learning Theory: 16th International Conference, ALT 2005, Singapore, October 8-11, 2005. Proceedings 16, 63--77. Springer
2005
-
[11]
Huang, X.; Zhou, H.; Feng, B.; Wang, X.; Liu, W.; Wang, J.; Feng, H.; Han, J.; Ding, E.; and Wang, J. 2023. Graph contrastive learning for skeleton-based action recognition. arXiv preprint arXiv:2301.10900
2023 arXiv
-
[12]
Ke, L.; Peng, K.-C.; and Lyu, S. 2022. Towards to-at spatio-temporal focus for skeleton-based action recognition. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 36, 1131--1139
2022
-
[13]
Lee, I.; Kim, D.; Kang, S.; and Lee, S. 2017. Ensemble deep learning for skeleton-based action recognition using temporal sliding lstm networks. In Proceedings of the IEEE international conference on computer vision, 1012--1020
2017
-
[14]
Lee, J.; Lee, M.; Lee, D.; and Lee, S. 2023. Hierarchically decomposed graph convolutional networks for skeleton-based action recognition. In Proceedings of the IEEE/CVF International Conference on Computer Vision, 10444--10453
2023
-
[15]
Li, M.; Chen, S.; Chen, X.; Zhang, Y.; Wang, Y.; and Tian, Q. 2019. Actional-structural graph convolutional networks for skeleton-based action recognition. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 3595--3603
2019
-
[16]
Liu, H.; Liu, Y.; Chen, Y.; Yuan, C.; Li, B.; and Hu, W. 2023. TranSkeleton: Hierarchical Spatial–Temporal Transformer for Skeleton-Based Action Recognition. IEEE Transactions on Circuits and Systems for Video Technology, 33: 4137--4148
2023
-
[17]
Liu, J.; Shahroudy, A.; Perez, M.; Wang, G.; Duan, L.-Y.; and Kot, A. C. 2019 a . Ntu rgb+ d 120: A large-scale benchmark for 3d human activity understanding. IEEE transactions on pattern analysis and machine intelligence, 42(10): 2684--2701
2019
-
[18]
Liu, J.; Shahroudy, A.; Xu, D.; and Wang, G. 2016. Spatio-temporal lstm with trust gates for 3d human action recognition. In European conference on computer vision, 816--833. Springer
2016
-
[19]
Liu, J.; Wang, G.; Duan, L.-Y.; Abdiyeva, K.; and Kot, A. C. 2017. Skeleton-based human action recognition with global context-aware attention LSTM networks. IEEE Transactions on Image Processing, 27(4): 1586--1599
2017
-
[20]
Q.; and Tsaftaris, S
Liu, X.; Thermos, S.; Sanchez, P.; O’Neil, A. Q.; and Tsaftaris, S. A. 2022 a . HSIC-InfoGAN: Learning Unsupervised Disentangled Representations by Maximising Approximated Mutual Information. In MICCAI Workshop on Medical Applications with Disentanglements, 15--21. Springer
2022
-
[21]
Liu, Y.; Qin, G.; Chen, H.; Cheng, Z.; and Yang, X. 2024. Causality-Inspired Invariant Representation Learning for Text-Based Person Retrieval. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, 14052--14060
2024
-
[22]
Liu, Z.; Wu, S.; Jin, S.; Liu, Q.; Lu, S.; Zimmermann, R.; and Cheng, L. 2019 b . Towards natural and accurate future motion prediction of humans and animals. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 10004--10012
2019
-
[23]
Liu, Z.; Wu, S.; Xu, C.; Wang, X.; Zhu, L.; Wu, S.; and Feng, F. 2022 b . Copy Motion From One to Another: Fake Motion Video Generation. arXiv preprint arXiv:2205.01373
2022 arXiv
-
[24]
Liu, Z.; Zhang, H.; Chen, Z.; Wang, Z.; and Ouyang, W. 2020. Disentangling and unifying graph convolutions for skeleton-based action recognition. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 143--152
2020
-
[25]
Majdara, A.; and Nooshabadi, S. 2022. Efficient Density Estimation for High-Dimensional Data. IEEE Access, 10: 16592--16608
2022
-
[26]
Shahroudy, A.; Liu, J.; Ng, T.-T.; and Wang, G. 2016. Ntu rgb+ d: A large scale dataset for 3d human activity analysis. In Proceedings of the IEEE conference on computer vision and pattern recognition, 1010--1019
2016
-
[27]
Shi, L.; Zhang, Y.; Cheng, J.; and Lu, H. 2019 a . Skeleton-based action recognition with directed graph neural networks. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 7912--7921
2019
-
[28]
Shi, L.; Zhang, Y.; Cheng, J.; and Lu, H. 2019 b . Two-stream adaptive graph convolutional networks for skeleton-based action recognition. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 12026--12035
2019
-
[29]
Si, C.; Chen, W.; Wang, W.; Wang, L.; and Tan, T. 2019. An attention enhanced graph convolutional lstm network for skeleton-based action recognition. In proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 1227--1236
2019
-
[30]
Song, Y.-F.; Zhang, Z.; Shan, C.; and Wang, L. 2022. Constructing stronger and faster baselines for skeleton-based action recognition. IEEE Transactions on Pattern Analysis and Machine Intelligence
2022
-
[31]
Tang, F.; Xu, Z.; Huang, Q.; Wang, J.; Hou, X.; Su, J.; and Liu, J. 2023. DuAT: Dual-aggregation transformer network for medical image segmentation. In PRCV
2023
-
[32]
Tang, F.; Xu, Z.; Qu, Z.; Feng, W.; Jiang, X.; and Ge, Z. 2024. Hunting Attributes: Context Prototype-Aware Learning for Weakly Supervised Semantic Segmentation. In CVPR
2024
-
[33]
Veeriah, V.; Zhuang, N.; and Qi, G.-J. 2015. Differential recurrent neural networks for action recognition. In Proceedings of the IEEE international conference on computer vision, 4041--4049
2015
-
[34]
Wang, J.; Nie, X.; Xia, Y.; Wu, Y.; and Zhu, S.-C. 2014. Cross-view action modeling, learning and recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, 2649--2656
2014
-
[35]
Wang, X.; Dai, Y.; Gao, L.; and Song, J. 2022. Skeleton-based action recognition via adaptive cross-form learning. In Proceedings of the 30th ACM International Conference on Multimedia, 1670--1678
2022
-
[36]
K.; and Rasmussen, C
Williams, C. K.; and Rasmussen, C. E. 2006. Gaussian processes for machine learning, volume 2. MIT press Cambridge, MA
2006
-
[37]
Wu, S.; Chen, H.; Yin, Y.; Hu, S.; Feng, R.; Jiao, Y.; Yang, Z.; and Liu, Z. 2024 a . Joint-Motion Mutual Learning for Pose Estimation in Video. In Proceedings of the 32nd ACM International Conference on Multimedia, 8962--8971
2024
-
[38]
Wu, S.; Liu, Z.; Zhang, B.; Zimmermann, R.; Ba, Z.; Zhang, X.; and Ren, K. 2024 b . Do as I Do: Pose Guided Human Motion Copy. IEEE Transactions on Dependable and Secure Computing
2024
-
[39]
Xu, K.; Ye, F.; Zhong, Q.; and Xie, D. 2022. Topology-aware convolutional neural network for efficient skeleton-based action recognition. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 36, 2866--2874
2022
-
[40]
Xu, Z.; Tang, F.; Chen, Z.; Zhou, Z.; Wu, W.; Yang, Y.; Liang, Y.; Jiang, J.; Cai, X.; and Su, J. 2024. Polyp-Mamba: Polyp Segmentation with Visual Mamba. In MICCAI. Springer
2024
-
[41]
Yan, S.; Xiong, Y.; Lin, D.; Wang, W.; Wang, L.; and Tan, T. 2018. Spatial temporal graph convolutional networks for skeleton-based action recognition. In Thirty-second AAAI conference on artificial intelligence
2018
-
[42]
Yang, Y.; Chen, H.; Liu, Z.; Lyu, Y.; Zhang, B.; Wu, S.; Wang, Z.; and Ren, K. 2023. Action Recognition with Multi-stream Motion Modeling and Mutual Information Maximization. arXiv preprint arXiv:2306.07576
2023 arXiv
-
[43]
Ye, F.; Pu, S.; Zhong, Q.; Li, C.; Xie, D.; and Tang, H. 2020. Dynamic gcn: Context-enriched topology learning for skeleton-based action recognition. In Proceedings of the 28th ACM International Conference on Multimedia, 55--63
2020
-
[44]
Yun, S.; Park, J.; Lee, K.; and Shin, J. 2020. Regularizing class-wise predictions via self-knowledge distillation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 13876--13885
2020
-
[45]
Zhang, P.; Lan, C.; Zeng, W.; Xing, J.; Xue, J.; and Zheng, N. 2020. Semantics-guided neural networks for efficient skeleton-based human action recognition. In proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 1112--1121
2020
-
[46]
Zhou, H.; Liu, Q.; Wang, Y.; Feng, H.; Han, J.; Ding, E.; and Wang, J. 2023. Learning discriminative representations for skeleton based action recognition. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 10608--10617
2023
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.