Pith. sign in

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 →

arxiv 2412.18780 v1 pith:62SMOVTB submitted 2024-12-25 cs.CV cs.AIcs.LG

classification cs.CVcs.AIcs.LG
keywords skeleton-basedactionrecognitiongraphconvolutionalnetworkHilbert-SchmidtindependencecriterionjointdependencymodelingGaussiancorrelationkernelHSIClossmulti-streamensembleNTURGB+D
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper tries to establish that skeleton-based action recognition improves when two limitations of current graph-convolutional models are fixed directly: dependencies are modeled between every pair of joints rather than only connected ones, and action classes are separated by a Hilbert-Schmidt independence objective rather than by estimating probability densities in high-dimensional feature space. The authors propose a Gaussian correlation function that computes pairwise joint dependencies and uses them to refine the graph adjacency matrix, plus an HSIC-based loss that measures dependence between enhanced motion features and action labels in a reproducing kernel Hilbert space. They report state-of-the-art accuracy on NTU RGB+D 60, NTU RGB+D 120, and Northwestern-UCLA, with ablations attributing gains of roughly 1.4% to the dependency graph and 1.3% to the learning objectives over a base ST-GCN model. A sympathetic reader would care because the two components target known bottlenecks—distant-joint coordination in actions like kicking, and curse-of-dimensionality in density estimation—rather than just stacking parameters.

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.

Watch

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 extensions of the paper, not claims the author makes directly.

  • 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.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 6 minor

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)
  1. [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.
  2. [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.
  3. [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.
  4. [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)
  1. [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.
  2. [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.
  3. [Tables 4 and 5] There are formatting typos: '2.9M86.0' in Table 4 and 'LT otal' in Table 5 should be corrected.
  4. [Implementation details] The statement that 'implementations have been released' should include a URL or repository identifier.
  5. [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.
  6. [Table 1] The rows 'Ours' and 'Ours (4 ensemble)' report identical numbers; clarify whether 'Ours' refers to the 4-ensemble model.

Circularity Check

0 steps flagged · score 0.0 of 10

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 3 free parameters · 3 assumptions · 0 invented entities

The central claims rest on hand-chosen kernel widths and unspecified Matern kernel parameters. The HSIC-based objective is asserted rather than derived, and the graph refinement introduces an ambiguous broadcast operation. No new physical or conceptual entities are postulated.

free parameters (3)
  • Gaussian kernel width delta = small=1, large=9
    Hand-picked widths control the distance decay in the dependency function. The paper does not report a tuning procedure or sensitivity analysis.
  • Matern kernel amplitude alpha
    The kernel in Eq. (5)-(6) depends on alpha, but the paper never states a value, a learning rule, or a default.
  • Matern kernel length scale l
    The kernel also depends on the length scale l, which is not specified or learned in the described framework.
assumptions (3)
  • domain assumption Maximizing HSIC between motion features and labels improves classification accuracy
    The learning objective in Eq. (9) adds HSIC to cross-entropy without a formal proof. The paper claims a mathematical derivation but no theorem or guarantee is stated.
  • domain assumption Gaussian correlation of joint feature vectors captures action-relevant non-linear dependencies between distant joints
    Eq. (2) defines R as a fixed Gaussian function of feature differences. The paper assumes this measure is informative for actions like kicking, but does not demonstrate that feature-space distance corresponds to action-relevant coordination.
  • ad hoc to paper The broadcast addition Ac = A + WcR produces a valid adjacency for graph convolution
    Eq. (4) is stated with 'broadcast manner'; the dimensional compatibility of R in R^{N x N x C'} with A in R^{N x N} is not rigorously specified, which affects the validity of the update rule.

how reviews work

0 comments
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

Figures reproduced from arXiv: 2412.18780 by the authors.

Figure 1
Figure 1. The conceptual diagram illustrates the mapping [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. The diagram illustrates the dependency refine [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. The overall pipeline of our HSIC-based framework aims at recognizing the action classes of the motion sequences. [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (2 more)
Figure 5
Figure 5. Figure 5: The histograms show the quantitative results of ap [PITH_FULL_IMAGE:figures/full_fig_p007_5.png]
Figure 4
Figure 4. Figure 4: The visualization illustrates feature representations [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

46 extracted references · 36 canonical work pages

  1. [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. [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. [3]

    Bertsimas, D.; and Koduri, N. 2022. Data-driven optimization: A reproducing kernel Hilbert space approach. Operations Research, 70(1): 454--471

  4. [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

  5. [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

  6. [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

  7. [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

  8. [8]

    H.; Chi, S.; Lee, S

    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

Show all 46 references
  1. [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

  2. [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

  3. [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

  4. [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

  5. [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

  6. [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

  7. [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

  8. [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

  9. [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

  10. [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

  11. [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

  12. [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

  13. [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

  14. [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

  15. [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

  16. [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

  17. [25]

    Majdara, A.; and Nooshabadi, S. 2022. Efficient Density Estimation for High-Dimensional Data. IEEE Access, 10: 16592--16608

  18. [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

  19. [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

  20. [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

  21. [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

  22. [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

  23. [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

  24. [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

  25. [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

  26. [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

  27. [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

  28. [36]

    K.; and Rasmussen, C

    Williams, C. K.; and Rasmussen, C. E. 2006. Gaussian processes for machine learning, volume 2. MIT press Cambridge, MA

  29. [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

  30. [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

  31. [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

  32. [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

  33. [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

  34. [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

  35. [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

  36. [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

  37. [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

  38. [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

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.