REVIEW 3 major objections 8 minor 300 references
Two-Stage Multi-Modal Fusion with Adaptive Alignment for Action Quality Assessment
T0 review · 3 major / 8 minor · reviewed 2026-07-09 · glm-5.2
Pith's one-line read Align visual modalities first, add text second: staged fusion lifts action quality scoring by 21%
desk verdict Two things: the two-stage alignment idea is reasonable and the ablations back it up, but the headline 21% gain on the authors' own dataset is confounded by clinical text that likely leaks severity information. 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
DualAlign uses a Gramian volume alignment loss (adapted from GRAM) applied in two stages. In stage one, RGB, optical flow, and skeleton embeddings are aligned by minimizing the determinant of their Gram matrix, with RGB as the anchor modality. In stage two, the stabilized visual representation is aligned with a CLIP-derived textual embedding using the same volume-minimization principle. Prediction uses an Equiangular Tight Frame (ETF) prototype structure for discrete grading and a coarse-to-fine strategy for continuous regression.
What would settle it
If a properly tuned single-stage alignment method (using all four modalities simultaneously with well-chosen loss weights and modality-specific encoders) matched or exceeded DualAlign's performance on MM-JDM, the core claim that staged alignment is necessary would be undermined. Alternatively, if reversing the fusion order (text first, then visual) produced equivalent results on a different dataset with different modality abstraction hierarchies, the generality of the staging principle would be questioned.
Extended reading notes
Core claim
The central finding is that the order in which modalities are aligned matters more than the alignment mechanism itself. A Gramian volume loss applied simultaneously to all four modalities (single-stage) yields 60.55 SRCC, which is worse than removing alignment entirely (63.82). The same loss decomposed into two stages—visual-visual first, visual-textual second—yields 85.44. This gap demonstrates that the benefit comes from respecting the structural hierarchy between modality types: visual modalities share spatiotemporal structure and can be coherently merged, while text operates at a semantic level that, if introduced prematurely, distorts the visual manifold before it has stabilized. The CK
Load-bearing premise
The 21.16% improvement margin on MM-JDM depends on baseline methods designed for different datasets and modality configurations being fairly adapted to MM-JDM's four-modality input and 12-action grading protocol. The paper states that baselines are adapted while preserving original model designs when direct transfer is not feasible, but does not specify the exact adaptations or report which modalities each baseline used on MM-JDM. If baselines were disadvantaged by suboptimal
Editorial extensions
If this is right
- If staged alignment generalizes, then any multi-modal system combining modalities of different abstraction levels (e.g., audio + video + text) should benefit from first aligning same-type modalities before cross-type fusion, rather than aligning everything jointly.
- The finding that single-stage Gramian alignment is worse than no alignment suggests that existing multi-modal alignment methods that treat all modalities symmetrically may be actively harming performance in settings with heterogeneous modality types.
- The clinical dataset MM-JDM, with its realistic noise and class imbalance, provides a testbed for whether methods developed on clean sports benchmarks transfer to medical assessment—results show most prior methods degrade substantially.
- Zero-shot evaluation of GPT-4o and Gemini-3 Pro on the same task (SRCC near zero) indicates that general-purpose large multi-modal models cannot yet replace specialized AQA systems for fine-grained movement quality scoring.
Reading between the lines
- The two-stage principle may extend beyond visual-then-textual: any system with a hierarchy of modality abstraction levels could benefit from a staged alignment protocol where structurally similar modalities are consolidated first, then progressively integrated with higher-level ones.
- The CKA analysis showing moderate rather than saturated cross-modal similarity after alignment suggests an optimal alignment target exists between independence and collapse—over-alignment may suppress discriminative modality-specific information, which has implications for how alignment quality is evaluated in multi-modal learning generally.
- The 21.16% margin on MM-JDM versus 3-6% on established sports benchmarks raises the question of whether staged alignment provides the most benefit in noisy, small-data, clinically realistic settings where cross-modal discrepancies are most severe—this could guide where to deploy such methods.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes DualAlign, a two-stage multi-modal alignment framework for Action Quality Assessment (AQA). In the first stage, visual modalities (RGB, optical flow, skeleton) are aligned using an adapted Gramian volume loss. In the second stage, the stabilized visual representation is aligned with textual semantics. The authors also introduce MM-JDM, a new multi-modal AQA dataset for Juvenile Dermatomyositis muscle strength assessment, comprising 1639 samples across 12 actions with four modalities. Experiments on MM-JDM show a 21.16% SRCC improvement over the best prior method, with smaller gains on RG (3.53%) and Fis-V (5.95%). Ablation studies support the two-stage design, showing that one-stage GRAM alignment performs worse than no alignment, and that reversed fusion order degrades performance.
Significance. The paper makes two contributions: (1) a principled two-stage alignment architecture that adapts the Gramian volume loss to a progressive visual-then-textual fusion pipeline, and (2) a clinically motivated multi-modal dataset (MM-JDM) with four modalities including structured text. The ablation studies (Tab. 6, Fig. 9) are thorough and internally consistent with the central design claim: the one-stage GRAM variant (60.55 SRCC) performs worse than no alignment (63.82), and the reversed fusion order degrades SRCC by 14%. The missing-modality and label-scarcity robustness experiments (Figs. 14, 15) add practical value. The framework is evaluated against both specialized AQA baselines and zero-shot mLLMs (Fig. 6), and code is stated to be publicly available.
major comments (3)
- §4.2, Textual Data; Tab. 6 (w/o Text row); Fig. 17: The text descriptions on MM-JDM include clinical physical examination notes containing JDM-specific signs (e.g., Fig. 17(b): 'Gottron sign is positive'; Fig. 17(c): 'purple red edematous rash on both eyelids,' 'V-neck sign (+)'). These cutaneous manifestations are established clinical indicators of JDM disease activity, and the grading targets (CMAS-based motor function scores) also reflect disease activity. The paper's defense — 'The finalized descriptions do not contain severity-related cues that are not observable from the video' (§4.2) — does not address the actual concern: textual clinical terminology may provide a shortcut that is far easier to learn than extracting the same information from raw pixels. The ablation (Tab. 6) shows text contributes ~11 SRCC points (85.44 to 74.50), roughly half the margin over the best baseline. On
- §4.2, Textual Data; Tab. 6 (w/o Text row); Fig. 17 (continued): RG and Fis-V, where the physical examination field is left empty (§5.1), gains are only 3.53% and 5.95%, consistent with the hypothesis that clinical text on MM-JDM contributes severity-correlated information. To rule out this confound, the authors should run a controlled ablation on MM-JDM where the physical examination field is replaced with a neutral placeholder (as done for RG/Fis-V), keeping only action and subject descriptions. If the SRCC drop is modest, the concern is alleviated; if it is large, approximately half of the headline 21.16% margin is attributable to text content rather than the alignment framework. This is load-bearing for the central claim because the 21.16% figure is the paper's headline result.
- §5.1, Implementation Details: The paper states that baselines were adapted when 'direct transfer to MM-JDM is not feasible' but does not specify the exact adaptations or report the modality configurations used by each baseline on MM-JDM. Tab. 3 lists both unimodal and multi-modal baselines, but it is unclear which modalities each baseline received. For example, MLA-VL was designed for audio-visual input; did it receive audio on MM-JDM? If baselines were evaluated under different modality configurations than DualAlign's four-modality input, the 21.16% margin may be inflated. The authors should report, for each baseline in Tab. 3, the exact modality configuration used and the specific adaptations applied.
minor comments (8)
- §3.2, Eq. (10): The summation index K in the denominator appears to range over modality choices for the anchor, but K was previously defined as the number of modality vectors. Clarify whether K=3 (video, flow, skeleton) or whether it indexes candidate anchors.
- §3.3, Eq. (15): The same K notation appears in a two-modality (visual-textual) setting. If K=2 here, state this explicitly to avoid confusion with the K=3 first-stage usage.
- Tab. 3: Several baselines show identical SRCC values across multiple actions (e.g., 51.46 for CoRe, GDLT, HGCN, T2CR on Action 02; 37.77 for multiple methods on Action 12). This may reflect ties in ranking, but it would help to note whether these are exact ties or rounding artifacts.
- Fig. 2: The architecture diagram is dense and some labels are difficult to read. Consider enlarging key components or splitting into sub-figures for clarity.
- §5.1: The number of uniformly sampled frames (103) is mentioned in the implementation details but not in the notation section (§3.1) where T is introduced. Cross-reference for clarity.
- Tab. 7 caption: The table title says 'Comparison results with different backbones' but the table also includes similarity distribution plots. Consider a more descriptive caption.
- §5.2: The text states DualAlign outperforms the previous best by '3.4%' on RG, but Tab. 4 shows MLA-VL at 0.849 and DualAlign at 0.878, which is a 3.4% relative improvement. This should be stated as 'relative' to avoid ambiguity.
- Fig. 16: The diversity index formula (Eq. 20) uses q both as the number of categories and in the normalization factor. Clarify that q is the number of non-empty grade categories for each action.
Simulated Author's Rebuttal
We thank the referee for a careful and constructive review. The three major comments raise important points about (1) potential label leakage through clinical text on MM-JDM, (2) the need for a controlled ablation isolating the physical examination field, and (3) transparency regarding baseline modality configurations and adaptations. We address each below.
read point-by-point responses
-
Referee: §4.2, Textual Data; Tab. 6 (w/o Text row); Fig. 17: The text descriptions on MM-JDM include clinical physical examination notes containing JDM-specific signs (e.g., Gottron sign, heliotrope rash, V-neck sign). These cutaneous manifestations are established clinical indicators of JDM disease activity, and the grading targets (CMAS-based motor function scores) also reflect disease activity. The paper's defense — 'The finalized descriptions do not contain severity-related cues that are not observable from the video' — does not address the actual concern: textual clinical terminology may provide a shortcut that is far easier to learn than extracting the same information from raw pixels. The ablation (Tab. 6) shows text contributes ~11 SRCC points (85.44 to 74.50), roughly half the margin over the best baseline.
Authors: The referee raises a valid and important concern. We agree that our original defense in §4.2 does not fully address the shortcut-learning risk. The distinction between 'observable from video' and 'easily learnable from text' is real: even if cutaneous signs like Gottron papules are technically visible in RGB frames, a model may learn to exploit the textual mention of these signs as a far cheaper proxy for disease severity, rather than learning to detect them visually. This is a genuine confound that our current experiments do not rule out. We acknowledge this limitation honestly. revision: partial
-
Referee: §4.2, Textual Data; Tab. 6 (w/o Text row); Fig. 17 (continued): To rule out this confound, the authors should run a controlled ablation on MM-JDM where the physical examination field is replaced with a neutral placeholder (as done for RG/Fis-V), keeping only action and subject descriptions. If the SRCC drop is modest, the concern is alleviated; if it is large, approximately half of the headline 21.16% margin is attributable to text content rather than the alignment framework. This is load-bearing for the central claim because the 21.16% figure is the paper's headline result.
Authors: We agree that this controlled ablation is necessary and will run it for the revision. Specifically, we will train DualAlign on MM-JDM with the physical examination field replaced by a neutral placeholder (matching the RG/Fis-V protocol), retaining only action and subject descriptions. We will report the resulting SRCC alongside the full-text and no-text conditions in an updated Tab. 6. We will also add an explicit discussion of this confound in §4.2 and qualify the headline 21.16% figure accordingly. If the drop is large, we will transparently report that a portion of the MM-JDM margin is attributable to clinical text content rather than the alignment framework alone, and we will emphasize the RG and Fis-V results (where text contains no clinical examination notes) as cleaner tests of the alignment contribution. We note that on RG and Fis-V, where the physical examination field is already empty, DualAlign still achieves gains of 3.53% and 5.95% over the prior state of the art, which supports the alignment framework's contribution independent of clinical text. However, we acknowledge that the magnitude of text contribution on MM-JDM cannot be determined without the requested experiment, and we commit to running it. revision: yes
-
Referee: §5.1, Implementation Details: The paper states that baselines were adapted when 'direct transfer to MM-JDM is not feasible' but does not specify the exact adaptations or report the modality configurations used by each baseline on MM-JDM. Tab. 3 lists both unimodal and multi-modal baselines, but it is unclear which modalities each baseline received. For example, MLA-VL was designed for audio-visual input; did it receive audio on MM-JDM? If baselines were evaluated under different modality configurations than DualAlign's four-modality input, the 21.16% margin may be inflated.
Authors: The referee is correct that this information is missing from the manuscript and is essential for interpreting the comparison. We will add a table in the revised §5.1 specifying, for each baseline in Tab. 3, the exact modality configuration used and the specific adaptations applied. To preview: unimodal baselines (CoRe, GDLT, HGCN, DAE, T2CR, CoFInAl, PHI) received RGB video only, consistent with their original designs. Multi-modal baselines received their originally designed modalities: MVLA received RGB + text, PAMFN received RGB + skeleton, RICA2 received RGB + skeleton, and MLA-VL received RGB + audio + text (audio extracted from the recording environment). MM-JDM does not include a dedicated audio modality, but ambient audio is present in the raw recordings; for MLA-VL, we used this ambient audio. All baselines used the same dataset splits, input preprocessing, and evaluation protocol. The adaptations were limited to input dimension matching and action-specific prediction heads (to accommodate MM-JDM's per-action grade ranges), with all other hyperparameters following the original implementations. We agree this transparency is important and will include it in the revision. revision: yes
Circularity Check
Minor self-citation for the prototype-based prediction mechanism; no circularity in the central two-stage alignment claim
full rationale
The paper's central methodological contribution — the two-stage alignment framework (DualAlign) with adapted Gramian volume loss — is derived from an externally cited method (GRAM, Cicchetti et al., 2024) and is validated against external benchmarks (RG, Fis-V) and internally consistent ablations (Tab. 6, Fig. 9). The GRAM loss formulation (Def. 1, Eqs. 4-9) is cited from external work and adapted, not defined in terms of the paper's own outputs. The prototype-based prediction mechanism (Eq. 1-2) is self-cited from Zhou et al. (2024a, CoFInAl), but this is a standard classification head that is not load-bearing for the alignment claim itself — it is an inference-time mechanism independent of the alignment losses. The ablation comparing two-stage vs. one-stage alignment (Fig. 9, Tab. 6) uses the authors' own one-stage variant as a baseline, which is a legitimate internal comparison rather than circular reasoning. The MM-JDM dataset is self-constructed, but results on external datasets (RG, Fis-V) provide independent validation. The text modality concern raised by the skeptic (clinical signs in text descriptions potentially confounding severity prediction) is a correctness risk about label leakage, not a circularity issue — the paper explicitly addresses this (Sec. 4.2) and the text field is left empty on external datasets. No step in the derivation chain reduces to its inputs by construction. The self-citation of CoFInAl for the prediction mechanism is minor and does not undermine the independence of the central alignment contribution. Score 2 reflects this minor self-citation that is not load-bearing for the main claim.
Assumptions & free parameters
free parameters (6)
- λ1 (visual alignment loss weight) =
1.0
- λ2 (visual-textual alignment loss weight) =
1.0
- τ (temperature parameter) =
0.1
- D1 (visual feature dimension) =
1024
- D2 (shared embedding dimension) =
512
- Number of uniformly sampled frames =
103
assumptions (5)
- domain assumption Visual modalities (RGB, flow, skeleton) share relatively homogeneous spatiotemporal structures and can be aligned before textual semantics are introduced.
- domain assumption Video (RGB) is the natural anchor modality for visual alignment because it provides the most comprehensive spatiotemporal representation.
- domain assumption Textual descriptions generated by GPT-4o and reviewed by clinicians do not contain grade-related cues that could cause label leakage.
- domain assumption The ETF prototype structure is appropriate for both discrete grading and continuous regression in AQA.
- domain assumption Baselines adapted to MM-JDM preserve their original model design and are fairly comparable.
invented entities (2)
-
MM-JDM dataset
independent evidence
-
Two-stage Gramian alignment (adapted GRAM)
independent evidence
Cite this review
Pith. "Pith review of Two-Stage Multi-Modal Fusion with Adaptive Alignment for Action Quality Assessment." pith.science (2026). https://pith.science/paper/JBYEAJIZ
@misc{pith2026260707438,
author = {Pith},
title = {Pith review of: Two-Stage Multi-Modal Fusion with Adaptive Alignment for Action Quality Assessment},
year = {2026},
howpublished = {\url{https://pith.science/paper/JBYEAJIZ}},
note = {Machine review of arXiv:2607.07438}
}
read the original abstract
Action Quality Assessment (AQA) aims to evaluate how well a person performs a movement, which is essential in applications such as sports scoring, skill assessment, and healthcare. However, unimodal approaches often struggle to capture subtle cues of movement quality in real-world settings. Although multi-modal inputs provide complementary information, existing methods still face two major challenges: heterogeneous modalities often lead to cross-modal misalignment and unstable fusion, and reliable multi-modal annotation is costly, resulting in limited dataset diversity. To address these challenges, we propose DualAlign, a two-stage multi-modal fusion framework with adaptive alignment. The framework first constructs a coherent visual representation by maximizing shared structural information across RGB video, optical flow, and skeleton modalities. Textual semantics are then incorporated after visual stabilization, allowing high-level descriptions to complement rather than distort the underlying visual manifold. To evaluate the framework under realistic multi-modal conditions, we introduce MM--JDM, a movement-quality assessment dataset integrating RGB videos, optical flow, skeleton sequences, and structured text. MM--JDM naturally exhibits modality noise, class imbalance, and label scarcity, making it a challenging benchmark for studying multi-modal fusion and alignment. Extensive experiments show that DualAlign improves average correlation on MM--JDM by 21.16% over the state-of-the-art methods and achieves gains of 3.53% and 5.95% on the RG and Fis-V benchmarks, respectively. DualAlign also remains robust under missing-modality and label-scarce conditions.
Figures
Figures from the paper (11 more)
Reference graph
Works this paper leans on
-
[1]
InfoGCN++: Learning Representation by Predicting the Future for Online Skeleton-based Action Recognition , author=
-
[2]
Neural Collapse: A Review on Modelling Principles and Generalization
Neural collapse: A review on modelling principles and generalization , author=. arXiv preprint arXiv:2206.04041 , year=
-
[3]
Transactions on Machine Learning Research , year=
Neural Collapse: A Review on Modelling Principles and Generalization , author=. Transactions on Machine Learning Research , year=
-
[4]
A geometric analysis of neural collapse with unconstrained features , author=
-
[5]
VideoPrism: A Foundational Visual Encoder for Video Understanding , author =. 2024 , volume =
work page 2024
-
[6]
Languagebind: Extending video-language pretraining to n-modality by language-based semantic alignment , author=. arXiv preprint arXiv:2310.01852 , year=
-
[7]
LanguageBind: Extending Video-Language Pretraining to N-modality by Language-based Semantic Alignment , author=. 2024 , url=
work page 2024
-
[8]
Imagebind: One embedding space to bind them all , author=
Show all 300 references
-
[9]
arXiv preprint arXiv:2412.11959 , year=
Gramian Multimodal Representation Learning and Alignment , author=. arXiv preprint arXiv:2412.11959 , year=
-
[10]
Accommodating audio modality in CLIP for multimodal processing , author=
-
[11]
arXiv preprint arXiv:2411.17040 , year=
Multimodal Alignment and Fusion: A Survey , author=. arXiv preprint arXiv:2411.17040 , year=
-
[12]
International Journal of Computer Vision , year =
Multimodal Alignment and Fusion: A Survey , author =. International Journal of Computer Vision , year =
-
[13]
Pointclip: Point cloud understanding by clip , author=
-
[14]
Neurocomputing , volume=
Clip4clip: An empirical study of clip for end to end video clip retrieval and captioning , author=. Neurocomputing , volume=. 2022 , publisher=
2022
-
[15]
Breakthroughs in statistics: methodology and distribution , pages=
Relations between two sets of variates , author=. Breakthroughs in statistics: methodology and distribution , pages=
-
[16]
SIAM review , volume=
An overview of sequence comparison: Time warps, string edits, and macromolecules , author=. SIAM review , volume=. 1983 , publisher=
1983
-
[17]
Learning transferable visual models from natural language supervision , author=
-
[18]
Clap learning audio concepts from natural language supervision , author=
-
[19]
Where are we now? , author=
Juvenile dermatomyositis. Where are we now? , author=. Clinical and Experimental Rheumatology , volume=. 2022 , publisher=
2022
-
[20]
Nature Reviews Rheumatology , volume=
Update on outcome assessment in myositis , author=. Nature Reviews Rheumatology , volume=. 2018 , publisher=
2018
-
[21]
Current rheumatology reports , volume=
Juvenile dermatomyositis , author=. Current rheumatology reports , volume=
-
[22]
Multimodal learning with incomplete modalities by knowledge distillation , author=
-
[23]
Hard No-Box Adversarial Attack on Skeleton-Based Human Action Recognition with Skeleton-Motion-Informed Gradient , author=
-
[24]
ACM Computing Surveys (CSUR) , volume=
A survey of learning causality with data: Problems and methods , author=. ACM Computing Surveys (CSUR) , volume=. 2020 , publisher=
2020
-
[25]
arXiv preprint arXiv:2411.16619 , year=
Human-Activity AGV Quality Assessment: A Benchmark Dataset and an Objective Evaluation Metric , author=. arXiv preprint arXiv:2411.16619 , year=
-
[26]
A comprehensive survey of continual learning: theory, method and application , author=
-
[27]
Hierarchical decomposition of prompt-based continual learning: Rethinking obscured sub-optimality , author=
-
[28]
Realtime multi-person 2d pose estimation using part affinity fields , author=
-
[29]
Image Analysis: 13th Scandinavian Conference, SCIA 2003 Halmstad, Sweden, June 29--July 2, 2003 Proceedings 13 , pages=
Two-frame motion estimation based on polynomial expansion , author=. Image Analysis: 13th Scandinavian Conference, SCIA 2003 Halmstad, Sweden, June 29--July 2, 2003 Proceedings 13 , pages=
2003
-
[30]
2020 , note=
OpenMMLab Pose Estimation Toolbox and Benchmark , author=. 2020 , note=
2020
-
[31]
Learnable triangulation of human pose , author=
-
[32]
arXiv preprint arXiv:1906.08172 , year=
Mediapipe: A framework for building perception pipelines , author=. arXiv preprint arXiv:1906.08172 , year=
1906 arXiv
-
[33]
Learning to estimate 3d hand pose from single rgb images , author=
-
[34]
Convolutional pose machines , author=
-
[35]
Deep network for the integrated 3d sensing of multiple people in natural images , author=
-
[36]
Depth Dataset Using Microsoft Kinect-v2 , author=
-
[37]
Motionagformer: Enhancing 3d human pose estimation with a transformer-gcnformer network , author=
-
[38]
Vitpose: Simple vision transformer baselines for human pose estimation , author=
-
[39]
3d human pose estimation in video with temporal convolutions and semi-supervised training , author=
-
[40]
arXiv preprint arXiv:2408.00672 , year=
ExpertAF: Expert Actionable Feedback from Video , author=. arXiv preprint arXiv:2408.00672 , year=
-
[41]
arXiv preprint arXiv:2411.17130 , year=
TechCoach: Towards Technical Keypoint-Aware Descriptive Action Coaching , author=. arXiv preprint arXiv:2411.17130 , year=
-
[42]
2024 , pages =
Li, Yuan-Ming and Huang, Wei-Jin and Wang, An-Lan and Zeng, Ling-An and Meng, Jing-Ke and Zheng, Wei-Shi , title =. 2024 , pages =
2024
-
[43]
Proceedings of AI-ED , volume=
Automated video assessment of human performance , author=. Proceedings of AI-ED , volume=
-
[44]
Analyzing diving: A dataset for judging action quality , author=
-
[45]
Estimation of skill levels in sports based on hierarchical spatio-temporal correspondences , author=
-
[46]
Assessing the quality of actions , author=
-
[47]
, author=
Dynamical Regularity for Action Analysis. , author=
-
[48]
Workshop on Modeling and Monitoring of Computer Assisted Interventions 2014 , year=
Video based assessment of OSATS using sequential motion textures , author=. Workshop on Modeling and Monitoring of Computer Assisted Interventions 2014 , year=
2014
-
[49]
International journal of computer assisted radiology and surgery , volume=
Automated video-based assessment of surgical skills for training and evaluation in medical schools , author=. International journal of computer assisted radiology and surgery , volume=
-
[50]
The International Journal of Medical Robotics and Computer Assisted Surgery , volume=
Automated robot-assisted surgical skill evaluation: Predictive analytics approach , author=. The International Journal of Medical Robotics and Computer Assisted Surgery , volume=. 2018 , publisher=
2018
-
[51]
Computer vision and image understanding , volume=
A comparative study of pose representation and dynamics modelling for online motion quality assessment , author=. Computer vision and image understanding , volume=. 2016 , publisher=
2016
-
[52]
Attractor-shape for dynamical analysis of human movement: Applications in stroke rehabilitation and action recognition , author=
-
[53]
2005 IEEE international workshop on visual surveillance and performance evaluation of tracking and surveillance , pages=
Behavior recognition via sparse spatio-temporal features , author=. 2005 IEEE international workshop on visual surveillance and performance evaluation of tracking and surveillance , pages=
2005
-
[54]
On space-time interest points , author=
-
[55]
Learning realistic human actions from movies , author=
-
[56]
A 3-dimensional sift descriptor and its application to action recognition , author=
-
[57]
Action recognition with improved trajectories , author=
-
[58]
arXiv preprint arXiv:1808.01340 , year=
A short note about kinetics-600 , author=. arXiv preprint arXiv:1808.01340 , year=
-
[59]
Learning structured output representation using deep conditional generative models , author=
-
[60]
Learning spatio-temporal representation with pseudo-3d residual networks , author=
-
[61]
Attention is All you Need , volume =
Vaswani, Ashish and Shazeer, Noam and Parmar, Niki and Uszkoreit, Jakob and Jones, Llion and Gomez, Aidan N and Kaiser, ukasz and Polosukhin, Illia , booktitle = NeurIPS, editor =. Attention is All you Need , volume =
-
[62]
Learning spatiotemporal features with 3d convolutional networks , author=
-
[63]
Quo vadis, action recognition? a new model and the kinetics dataset , author=
-
[64]
arXiv preprint arXiv:1705.06950 , year=
The kinetics human action video dataset , author=. arXiv preprint arXiv:1705.06950 , year=
-
[65]
Imagenet classification with deep convolutional neural networks , author=
-
[66]
Deep residual learning for image recognition , author=
-
[67]
Video swin transformer , author=
-
[68]
Ssd: Single shot multibox detector , author=
-
[69]
Mask r-cnn , author=
-
[70]
arXiv preprint arXiv:1312.6114 , year=
Auto-encoding variational bayes , author=. arXiv preprint arXiv:1312.6114 , year=
-
[71]
EgoExoLearn: A Dataset for Bridging Asynchronous Ego-and Exo-centric View of Procedural Activities in Real World , author=
-
[72]
2024 , doi =
Vision-based human action quality assessment: A systematic review , journal =. 2024 , doi =
2024
-
[73]
Collaborative Weakly Supervised Video Correlation Learning for Procedure-Aware Instructional Video Analysis , author=
-
[74]
Achieving Procedure-Aware Instructional Video Correlation Learning Under Weak Supervision from a Collaborative Perspective , author=
-
[75]
RICA ^2 : Rubric-Informed, Calibrated Assessment of Actions , author =
-
[76]
Proceedings of the 28th International Conference on Intelligent User Interfaces , pages=
IRIS: Interpretable Rubric-Informed Segmentation for Action Quality Assessment , author=. Proceedings of the 28th International Conference on Intelligent User Interfaces , pages=
-
[77]
LucidAction: A Hierarchical and Multi-model Dataset for Comprehensive Action Quality Assessment , author=
-
[78]
Visual-semantic Alignment Temporal Parsing for Action Quality Assessment , author=
-
[79]
2024 , issn =
Dual-referenced assistive network for action quality assessment , journal =. 2024 , issn =
2024
-
[80]
MICCAI workshop: M2cai , pages=
Jhu-isi gesture and skill assessment working set (jigsaws): A surgical activity dataset for human motion modeling , author=. MICCAI workshop: M2cai , pages=
-
[81]
Sensors , volume=
A survey of vision-based human action evaluation methods , author=. Sensors , volume=. 2019 , publisher=
2019
-
[82]
A Figure Skating Jumping Dataset for Replay-Guided Action Quality Assessment , author=
-
[83]
What and how well you performed? a multitask learning approach to action quality assessment , author=
-
[84]
Localization-assisted Uncertainty Score Disentanglement Network for Action Quality Assessment , author=
-
[85]
2023 , volume=
Learning Semantics-Guided Representations for Scoring Figure Skating , author=. 2023 , volume=
2023
-
[86]
Fine-grained spatio-temporal parsing network for action quality assessment , author=
-
[87]
Pecop: Parameter efficient continual pretraining for action quality assessment , author=
-
[88]
Applied Intelligence , volume=
Improving action quality assessment with across-staged temporal reasoning on imbalanced data , author=. Applied Intelligence , volume=. 2023 , publisher=
2023
-
[89]
2024 , volume =
Multimodal Action Quality Assessment , author =. 2024 , volume =
2024
-
[90]
Proceedings of the 14th PErvasive Technologies Related to Assistive Environments Conference , pages=
Towards improved and interpretable action quality assessment with self-supervised alignment , author=. Proceedings of the 14th PErvasive Technologies Related to Assistive Environments Conference , pages=
-
[91]
Narrative Action Evaluation with Prompt-Guided Multimodal Interaction , author=
-
[92]
Uncertainty-aware score distribution learning for action quality assessment , author=
-
[93]
Hierarchical NeuroSymbolic Approach for Comprehensive and Explainable Action Quality Assessment , author=
-
[94]
arXiv preprint arXiv:2406.06087 , year=
GAIA: Rethinking Action Quality Assessment for AI-Generated Videos , author=. arXiv preprint arXiv:2406.06087 , year=
-
[95]
FineSports: A Multi-person Hierarchical Sports Video Dataset for Fine-grained Action Understanding , author=
-
[96]
FineRehab: A Multi-modality and Multi-task Dataset for Rehabilitation Analysis , author=
-
[97]
2024 , volume =
Continual Action Assessment via Task-Consistent Score-Discriminative Feature Distribution Modeling , author=. 2024 , volume =
2024
-
[98]
Likert scoring with grade decoupling for long-term action assessment , author=
-
[99]
arXiv preprint arXiv:2207.14513 , year=
Uncertainty-driven action quality assessment , author=. arXiv preprint arXiv:2207.14513 , year=
-
[100]
Action assessment by joint relation graphs , author=
-
[101]
Action quality assessment with temporal parsing transformer , author=
-
[102]
Hierarchical graph convolutional networks for action quality assessment , author=
-
[103]
Pairwise contrastive learning network for action quality assessment , author=
-
[104]
Finediving: A fine-grained dataset for procedure-aware action quality assessment , author=
-
[105]
Neural Computing and Applications , volume=
Auto-encoding score distribution regression for action quality assessment , author=. Neural Computing and Applications , volume=
-
[106]
Logo: A long-form video dataset for group action quality assessment , author=
-
[107]
Group-aware contrastive regression for action quality assessment , author=
-
[108]
CoFInAl: Enhancing Action Quality Assessment with Coarse-to-Fine Instruction Alignment , author =
-
[109]
2024 , volume =
Vision-Language Action Knowledge Learning for Semantic-Aware Action Quality Assessment , author =. 2024 , volume =
2024
-
[110]
Information Sciences , volume=
Two-path target-aware contrastive regression for action quality assessment , author=. Information Sciences , volume=. 2024 , publisher=
2024
-
[111]
3rd International Conference on Artificial Intelligence, Automation, and High-Performance Computing (AIAHPC 2023) , volume=
A novel blind action quality assessment based on multi-headed GRU network and attention mechanism , author=. 3rd International Conference on Artificial Intelligence, Automation, and High-Performance Computing (AIAHPC 2023) , volume=. 2023 , organization=
2023
-
[112]
Signal, Image and Video Processing , volume=
Temporal attention learning for action quality assessment in sports video , author=. Signal, Image and Video Processing , volume=
-
[113]
Proceedings of the 2023 4th International Conference on Control, Robotics and Intelligent System , pages=
Multi-Stage Action Quality Assessment Method , author=. Proceedings of the 2023 4th International Conference on Control, Robotics and Intelligent System , pages=
2023
-
[114]
IEICE Transactions on Fundamentals of Electronics, Communications and Computer Sciences , year=
A Hierarchical Joint Training based Replay-Guided Contrastive Transformer for Action Quality Assessment of Figure Skating , author=. IEICE Transactions on Fundamentals of Electronics, Communications and Computer Sciences , year=
-
[115]
2023 International Conference on Machine Learning and Cybernetics (ICMLC) , pages=
Action Quality Assessment for ASD Behaviour Evaluation , author=. 2023 International Conference on Machine Learning and Cybernetics (ICMLC) , pages=
2023
-
[116]
Pattern Recognition Letters , volume=
Learning time-aware features for action quality assessment , author=. Pattern Recognition Letters , volume=. 2022 , publisher=
2022
-
[117]
Proceedings of the IEEE/CVF winter conference on applications of computer vision , pages=
EAGLE-Eye: Extreme-Pose Action Grader Using Detail Bird's-Eye View , author=. Proceedings of the IEEE/CVF winter conference on applications of computer vision , pages=
-
[118]
Aifit: Automatic 3d human-interpretable feedback models for fitness training , author=
-
[119]
arXiv preprint arXiv:2408.11687 , year=
Interpretable Long-term Action Quality Assessment , author=. arXiv preprint arXiv:2408.11687 , year=
-
[120]
Applied Intelligence , volume=
Label-reconstruction-based pseudo-subscore learning for action quality assessment in sporting events , author=. Applied Intelligence , volume=
-
[121]
Pacific Rim Conference on Multimedia , pages=
End-to-end learning for action quality assessment , author=. Pacific Rim Conference on Multimedia , pages=
-
[122]
An asymmetric modeling for action assessment , author=
-
[123]
Automatic modelling for interactive action assessment , author=
-
[124]
Action quality assessment using siamese network-based deep metric learning , author=
-
[125]
Hybrid dynamic-static context-aware attention network for action assessment in long videos , author=
-
[126]
S3d: Stacking segmental p3d for action quality assessment , author=
-
[127]
Learning to score olympic events , author=
-
[128]
Action quality assessment across multiple actions , author=
-
[129]
Learning to score figure skating sport videos , author=
-
[130]
Semi-supervised action quality assessment with self-supervised segment feature recovery , author=
-
[131]
IEEE Access , volume=
Assessing human motion during exercise using machine learning: A literature review , author=. IEEE Access , volume=
-
[132]
2021 International conference on networking systems of AI (INSAI) , pages=
A survey of video-based action quality assessment , author=. 2021 International conference on networking systems of AI (INSAI) , pages=
2021
-
[133]
A video-based augmented reality system for human-in-the-loop muscle strength assessment of juvenile dermatomyositis , author=
-
[134]
Adaptive action assessment , author=
-
[135]
Journal of Visual Communication and Image Representation , volume=
Skeleton-based deep pose feature learning for action quality assessment on figure skating videos , author=. Journal of Visual Communication and Image Representation , volume=. 2022 , publisher=
2022
-
[136]
Knowledge-Based Systems , volume=
Learning and fusing multiple hidden substages for action quality assessment , author=. Knowledge-Based Systems , volume=. 2021 , publisher=
2021
-
[137]
Scoringnet: Learning key fragment for action quality assessment with ranking loss in skilled sports , author=
-
[138]
Proceedings of the 2021 International Conference on Multimodal Interaction , pages=
Improving the movement synchrony estimation with action quality assessment in children play therapy , author=. Proceedings of the 2021 International Conference on Multimodal Interaction , pages=
2021
-
[139]
IEEE Transactions on Instrumentation and Measurement , year=
Learning sparse temporal video mapping for action quality assessment in floor gymnastics , author=. IEEE Transactions on Instrumentation and Measurement , year=
-
[140]
Applied Intelligence , volume=
Multi-skeleton structures graph convolutional network for action quality assessment in long videos , author=. Applied Intelligence , volume=
-
[141]
FineParser: A Fine-grained Spatio-temporal Action Parser for Human-centric Action Quality Assessment , author=
-
[142]
Sensors , volume=
Action quality assessment model using specialists’ gaze location and kinematics data—focusing on evaluating figure skating jumps , author=. Sensors , volume=. 2023 , publisher=
2023
-
[143]
International Journal of Computer Vision , year =
Procedure-Aware Action Quality Assessment: Datasets and Performance Evaluation , author=. International Journal of Computer Vision , year =
-
[144]
Skating-mixer: Long-term sport audio-visual modeling with mlps , author=
-
[145]
Electronics , volume=
Learning effective skeletal representations on RGB video for fine-grained human action quality assessment , author=. Electronics , volume=. 2020 , publisher=
2020
-
[146]
Contrastive Self-Supervised Learning for Automated Multi-Modal Dance Performance Assessment , author=
-
[147]
Am I a baller? basketball performance assessment from first-person videos , author=
-
[148]
IEEE Access , year=
MMW-AQA: Multimodal In-the-Wild Dataset for Action Quality Assessment , author=. IEEE Access , year=
-
[149]
Complex & Intelligent Systems , volume=
Gaussian guided frame sequence encoder network for action quality assessment , author=. Complex & Intelligent Systems , volume=
-
[150]
Applied Intelligence , volume=
Assessing action quality with semantic-sequence performance regression and densely distributed sample weighting , author=. Applied Intelligence , volume=
-
[151]
arXiv preprint arXiv:2407.19675 , year=
Semi-Supervised Teacher-Reference-Student Architecture for Action Quality Assessment , author=. arXiv preprint arXiv:2407.19675 , year=
-
[152]
arXiv preprint arXiv:2307.02730 , year=
Fine-grained Action Analysis: A Multi-modality and Multi-task Dataset of Figure Skating , author=. arXiv preprint arXiv:2307.02730 , year=
-
[153]
Iberian Conference on Pattern Recognition and Image Analysis , pages=
Improving action quality assessment using weighted aggregation , author=. Iberian Conference on Pattern Recognition and Image Analysis , pages=
-
[154]
2022 IEEE 24th International Workshop on Multimedia Signal Processing (MMSP) , pages=
Tai chi action quality assessment and visual analysis with a consumer rgb-d camera , author=. 2022 IEEE 24th International Workshop on Multimedia Signal Processing (MMSP) , pages=
2022
-
[155]
Multi-Stage Contrastive Regression for Action Quality Assessment , author=
-
[156]
Action quality assessment with ignoring scene context , author=
-
[157]
2021 10th International Conference on Information and Automation for Sustainability (ICIAfS) , pages=
Objectively measure player performance on Olympic weightlifting , author=. 2021 10th International Conference on Information and Automation for Sustainability (ICIAfS) , pages=
2021
-
[158]
Which is the Better Teacher Action? A New Ranking Model and Dataset , author=
-
[159]
arXiv preprint arXiv:2404.10383 , year=
Learning to Score Sign Language with Two-stage Method , author=. arXiv preprint arXiv:2404.10383 , year=
-
[160]
IEEE Access , year=
Contrastive Learning for Action Assessment using Graph Convolutional Networks with Augmented Virtual Joints , author=. IEEE Access , year=
-
[161]
arXiv preprint arXiv:2102.10555 , year=
Improving action quality assessment using resnets and weighted aggregation , author=. arXiv preprint arXiv:2102.10555 , year=
-
[162]
Journal of Physics: Conference Series , volume=
Prior Knowledge-guided Hierarchical Action Quality Assessment with 3D Convolution and Attention Mechanism , author=. Journal of Physics: Conference Series , volume=. 2023 , organization=
2023
-
[163]
2023 IEEE International Conference on Visual Communications and Image Processing (VCIP) , pages=
End-to-end Action Quality Assessment with Action Parsing Transformer , author=. 2023 IEEE International Conference on Visual Communications and Image Processing (VCIP) , pages=
2023
-
[164]
International Conference on Intelligent Computing , pages=
Segmentation and Quality Assessment of Continuous Fitness Movements Based on Vision , author=. International Conference on Intelligent Computing , pages=
-
[165]
Chinese Conference on Pattern Recognition and Computer Vision (PRCV) , pages=
Skeleton-Based Action Quality Assessment via Partially Connected LSTM with Triplet Losses , author=. Chinese Conference on Pattern Recognition and Computer Vision (PRCV) , pages=
-
[166]
Asia-Pacific Web (APWeb) and Web-Age Information Management (WAIM) Joint International Conference on Web and Big Data , pages=
Long Video Scoring Method Fusing High-Precision Pose and Spatio-Temporal Attention Modules , author=. Asia-Pacific Web (APWeb) and Web-Age Information Management (WAIM) Joint International Conference on Web and Big Data , pages=
-
[167]
International Symposium on Computer Science in Sport , pages=
Expert’s Gaze-Based Prediction Model for Assessing the Quality of Figure Skating Jumps , author=. International Symposium on Computer Science in Sport , pages=
-
[168]
2M-AF: A Strong Multi-Modality Framework For Human Action Quality Assessment with Self-supervised Representation Learning , author=
-
[169]
2024 7th International Conference on Advanced Algorithms and Control Engineering (ICAACE) , pages=
Action Quality Assessment with Multi-scale Temporal Attention Mechanism , author=. 2024 7th International Conference on Advanced Algorithms and Control Engineering (ICAACE) , pages=
2024
-
[170]
Tsa-net: Tube self-attention network for action quality assessment , author=
-
[171]
Fast online object tracking and segmentation: A unifying approach , author=
-
[172]
Proceedings of the 35th Annual ACM Symposium on Applied Computing , pages=
Towards a data-driven method for rgb video-based hand action quality assessment in real time , author=. Proceedings of the 35th Annual ACM Symposium on Applied Computing , pages=
-
[173]
2022 IEEE 11th Global Conference on Consumer Electronics (GCCE) , pages=
Precise Gymnastic Scoring from TV Playback , author=. 2022 IEEE 11th Global Conference on Consumer Electronics (GCCE) , pages=
2022
-
[174]
Analysis of Commonality and Difference for Action Quality Assessment , author=
-
[175]
European Conference on Computer Vision , volume =
Magr: Manifold-aligned graph regularization for continual action quality assessment , author =. European Conference on Computer Vision , volume =
-
[176]
2024 IEEE 37th International Symposium on Computer-Based Medical Systems (CBMS) , pages=
GYMetricPose: A light-weight angle-based graph adaptation for action quality assessment , author=. 2024 IEEE 37th International Symposium on Computer-Based Medical Systems (CBMS) , pages=
2024
-
[177]
Self-supervised subaction Parsing Network for Semi-supervised Action Quality Assessment , author=
-
[178]
International Conference on Medical Image Computing and Computer-Assisted Intervention , pages=
Sedskill: Surgical events driven method for skill assessment from thoracoscopic surgical videos , author=. International Conference on Medical Image Computing and Computer-Assisted Intervention , pages=. 2023 , organization=
2023
-
[179]
Medical Image Computing and Computer Assisted Intervention--MICCAI 2020: 23rd International Conference, Lima, Peru, October 4--8, 2020, Proceedings, Part III 23 , pages=
Towards accurate and interpretable surgical skill assessment: A video-based method incorporating recognized surgical gestures and skill levels , author=. Medical Image Computing and Computer Assisted Intervention--MICCAI 2020: 23rd International Conference, Lima, Peru, October...
2020
-
[180]
International Conference on Medical Image Computing and Computer-Assisted Intervention , pages=
Video-based surgical skills assessment using long term tool tracking , author=. International Conference on Medical Image Computing and Computer-Assisted Intervention , pages=
-
[181]
Proceedings of the IEEE/CVF international conference on computer vision workshops , pages=
Manipulation-skill assessment from videos with spatial attention network , author=. Proceedings of the IEEE/CVF international conference on computer vision workshops , pages=
-
[182]
Towards unified surgical skill assessment , author=
-
[183]
Domain knowledge-informed self-supervised representations for workout form assessment , author=
-
[184]
The pros and cons: Rank-aware temporal attention for skill determination in long videos , author=
-
[185]
Who's better? who's best? pairwise deep ranking for skill determination , author=
-
[186]
Adaptive stage-aware assessment skill transfer for skill determination , author=
-
[187]
IEEE Robotics and Automation Letters , volume=
Keep your eye on the best: contrastive regression transformer for skill assessment in robotic surgery , author=. IEEE Robotics and Automation Letters , volume=
-
[188]
British Journal of Surgery , volume=
Evaluation of objective tools and artificial intelligence in robotic surgery technical skills assessment: a systematic review , author=. British Journal of Surgery , volume=. 2024 , publisher=
2024
-
[189]
International Conference on Medical Image Computing and Computer-Assisted Intervention , pages=
Surgical skill assessment via video semantic aggregation , author=. International Conference on Medical Image Computing and Computer-Assisted Intervention , pages=
-
[190]
2021 IEEE 23rd international workshop on multimedia signal processing (MMSP) , pages=
Piano skills assessment , author=. 2021 IEEE 23rd international workshop on multimedia signal processing (MMSP) , pages=
2021
-
[191]
Rhythmer: Ranking-based Skill Assessment with Rhythm-aware Transformer , author=
-
[192]
Proceedings of the 6th International Workshop on Multimedia Content Analysis in Sports , pages=
Video-based Skill Assessment for Golf: Estimating Golf Handicap , author=. Proceedings of the 6th International Workshop on Multimedia Content Analysis in Sports , pages=
-
[193]
2021 11th International Conference on Information Technology in Medicine and Education (ITME) , pages=
Skeleton based action quality assessment of figure skating videos , author=. 2021 11th International Conference on Information Technology in Medicine and Education (ITME) , pages=
2021
-
[194]
Engineering Applications of Artificial Intelligence , volume=
An attention-based adaptive spatial--temporal graph convolutional network for long-video ergonomic risk assessment , author=. Engineering Applications of Artificial Intelligence , volume=. 2024 , publisher=
2024
-
[195]
arXiv preprint arXiv:2407.02738 , year=
ZEAL: Surgical Skill Assessment with Zero-shot Tool Inference Using Unified Foundation Model , author=. arXiv preprint arXiv:2407.02738 , year=
-
[196]
Relative hidden markov models for video-based evaluation of motion skills in surgical training , author=
-
[197]
A deep learning framework for assessing physical rehabilitation exercises , author=
-
[198]
Sensors , volume=
Vi-net—view-invariant quality of human movement assessment , author=. Sensors , volume=. 2020 , publisher=
2020
-
[199]
2021 43rd Annual International Conference of the IEEE Engineering in Medicine & Biology Society (EMBC) , pages=
Assessing physical rehabilitation exercises using graph convolutional network with self-supervised regularization , author=. 2021 43rd Annual International Conference of the IEEE Engineering in Medicine & Biology Society (EMBC) , pages=
2021
-
[200]
, author=
Enhancing Human Motion Assessment by Self-supervised Representation Learning. , author=. BMVC , pages=
-
[201]
AI-driven stroke rehabilitation systems and assessment: A systematic review , author=
-
[202]
Graph convolutional networks for assessment of physical rehabilitation exercises , author=
-
[203]
2022 IEEE 46th Annual Computers, Software, and Applications Conference (COMPSAC) , pages=
MRehab: Mutlimodal data acquisition and modeling framework for assessing stroke and cardiac rehabilitation exercises , author=. 2022 IEEE 46th Annual Computers, Software, and Applications Conference (COMPSAC) , pages=
2022
-
[204]
A contrastive learning network for performance metric and assessment of physical rehabilitation exercises , author=
-
[205]
International Conference on Artificial Neural Networks , pages=
A graph convolutional siamese network for the assessment and recognition of physical rehabilitation exercises , author=. International Conference on Artificial Neural Networks , pages=
-
[206]
A skeleton-based rehabilitation exercise assessment system with rotation invariance , author=
-
[207]
arXiv preprint arXiv:2306.09546 , year=
Cross-Modal Video to Body-joints Augmentation for Rehabilitation Exercise Quality Assessment , author=. arXiv preprint arXiv:2306.09546 , year=
-
[208]
Personalized monitoring in home healthcare: An assistive system for post hip replacement rehabilitation , author=
-
[209]
Proceedings of the 8th ACM/IEEE International Conference on Connected Health: Applications, Systems and Engineering Technologies , pages=
Short: Deep Learning Approach to Skeletal Performance Evaluation of Physical Therapy Exercises , author=. Proceedings of the 8th ACM/IEEE International Conference on Connected Health: Applications, Systems and Engineering Technologies , pages=
-
[210]
Automatic assessment of upper extremity function and mobile application for self-administered stroke rehabilitation , author=
-
[211]
The kimore dataset: Kinematic assessment of movement and clinical scores for remote monitoring of physical rehabilitation , author=
-
[212]
Data , volume=
A data set of human body movements for physical rehabilitation exercises , author=. Data , volume=. 2018 , publisher=
2018
-
[213]
2021 , publisher=
Skeleton-based human action evaluation using graph convolutional network for monitoring Alzheimer’s progression , author=. 2021 , publisher=
2021
-
[214]
2024 , volume =
EGCN++: A New Fusion Strategy for Ensemble Learning in Skeleton-Based Rehabilitation Exercise Assessment , author=. 2024 , volume =
2024
-
[215]
Bruce X. B. Yu and Yan Liu and Xiang Zhang and Gong Chen and Keith C. C. Chan , title =. Proceedings of the Thirty-First International Joint Conference on Artificial Intelligence,
-
[216]
2025 , volume=
PHI: Bridging Domain Shift in Long-Term Action Quality Assessment via Progressive Hierarchical Instruction , author=. 2025 , volume=
2025
-
[217]
Language-Guided Audio-Visual Learning for Long-Term Sports Assessment , author=
-
[218]
arXiv preprint arXiv:2303.13375 , year=
Capabilities of gpt-4 on medical challenge problems , author=. arXiv preprint arXiv:2303.13375 , year=
-
[219]
Frontiers in Medicine , volume=
Comparison of medical history documentation efficiency and quality based on GPT-4o: a study on the comparison between residents and artificial intelligence , author=. Frontiers in Medicine , volume=. 2025 , publisher=
2025
-
[220]
Proceedings of the Conference on Empirical Methods in Natural Language Processing , year =
Medclip: Contrastive learning from unpaired medical images and text , author=. Proceedings of the Conference on Empirical Methods in Natural Language Processing , year =
-
[221]
IEEE Transactions on Pattern Analysis and Machine Intelligence , year =
Human-centric Fine-grained Action Quality Assessment , author =. IEEE Transactions on Pattern Analysis and Machine Intelligence , year =
-
[222]
IEEE Transactions on Multimedia , year =
Quality-guided vision-language learning for long-term action quality assessment , author =. IEEE Transactions on Multimedia , year =
-
[223]
arXiv preprint arXiv:2510.06842 , year=
Continual Action Quality Assessment via Adaptive Manifold-Aligned Graph Regularization , author=. arXiv preprint arXiv:2510.06842 , year=
-
[224]
arXiv preprint arXiv:2412.11149 , year =
A Comprehensive Survey of Action Quality Assessment: Method and Benchmark , author =. arXiv preprint arXiv:2412.11149 , year =
-
[225]
Zhou, Kanglei and Cai, Ruizhi and Wang, Liyuan and Shum, Hubert P. H. and Liang, Xiaohui , title =. Pattern Recognition , year =
-
[226]
arXiv preprint arXiv:2511.21653 , year=
CaFlow: Enhancing Long-Term Action Quality Assessment with Causal Counterfactual Flow , author=. arXiv preprint arXiv:2511.21653 , year=
-
[227]
Finecausal: A causal-based framework for interpretable fine-grained action quality assessment , author=
-
[228]
arXiv preprint arXiv:2507.13618 , year=
Seed-x: Building strong multilingual translation llm with 7b parameters , author=. arXiv preprint arXiv:2507.13618 , year=
-
[229]
5-vl technical report , author=
Qwen2. 5-vl technical report , author=. arXiv preprint arXiv:2502.13923 , year=
-
[230]
International Journal of Computer Vision , year =
A Decade of Action Quality Assessment: Largest Systematic Survey of Trends, Challenges, and Future Directions , author =. International Journal of Computer Vision , year =
-
[231]
2026 , volume =
Dong, Xu and Liu, Xinran and Li, Wanqing and Adeyemi-Ejeye, Anthony and Gilbert, Andrew , title =. 2026 , volume =
2026
-
[232]
2026 , pages =
Zhou, Kanglei and Li, Chang and Pan, Qingyi and Wang, Liyuan , title =. 2026 , pages =
2026
-
[233]
Hongwei Yan and Kanglei Zhou and Yuchen Liu and Qingyu Shi and Yi Zhong and Liyuan Wang , booktitle=ICML, year=
-
[234]
2022 IEEE International Symposium on Mixed and Augmented Reality (ISMAR) , pages=
In-place gestures classification via long-term memory augmented network , author=. 2022 IEEE International Symposium on Mixed and Augmented Reality (ISMAR) , pages=. 2022 , organization=
2022
-
[235]
2021 IEEE International Symposium on Mixed and Augmented Reality (ISMAR) , pages=
Classifying in-place gestures with end-to-end point cloud learning , author=. 2021 IEEE International Symposium on Mixed and Augmented Reality (ISMAR) , pages=
2021
-
[236]
Medical Image Analysis , pages=
UniPET: a universal network for high-quality PET image denoising across varied dose reduction factors , author=. Medical Image Analysis , pages=
-
[237]
IEEE Journal of Biomedical and Health Informatics , year=
Restore-rwkv: Efficient and effective medical image restoration with rwkv , author=. IEEE Journal of Biomedical and Health Informatics , year=
-
[238]
International Conference on Medical Image Computing and Computer-Assisted Intervention , pages=
All-in-one medical image restoration via task-adaptive routing , author=. International Conference on Medical Image Computing and Computer-Assisted Intervention , pages=
-
[239]
IEEE Transactions on Medical Imaging , volume=
Attriprompter: Auto-prompting with attribute semantics for zero-shot nuclei detection via visual-language pre-trained models , author=. IEEE Transactions on Medical Imaging , volume=
-
[240]
IEEE Transactions on Pattern Analysis and Machine Intelligence , doi=
SDPT: Synchronous Dual Prompt Tuning for Visual-Language Pre-trained Models , author=. IEEE Transactions on Pattern Analysis and Machine Intelligence , doi=
-
[241]
(2025) Qwen2
Bai S, Chen K, Liu X, Wang J, Ge W, Song S, Dang K, Wang P, Wang S, Tang J, et al. (2025) Qwen2. 5-vl technical report. arXiv preprint arXiv:250213923
2025
-
[242]
In: Proceedings of the IEEE/CVF International Conference on Computer Vision, pp 2177--2185
Bertasius G, Soo Park H, Yu SX, Shi J (2017) Am i a baller? basketball performance assessment from first-person videos. In: Proceedings of the IEEE/CVF International Conference on Computer Vision, pp 2177--2185
2017
-
[243]
Pattern Recognition 119:108095
Bruce X, Liu Y, Chan KC, Yang Q, Wang X (2021) Skeleton-based human action evaluation using graph convolutional network for monitoring alzheimer’s progression. Pattern Recognition 119:108095
2021
-
[244]
IEEE Transactions on Pattern Analysis and Machine Intelligence 46(9):6471--6485
Bruce X, Liu Y, Chan KC, Chen CW (2024) Egcn++: A new fusion strategy for ensemble learning in skeleton-based rehabilitation exercise assessment. IEEE Transactions on Pattern Analysis and Machine Intelligence 46(9):6471--6485
2024
-
[245]
IEEE Transactions on Neural Systems and Rehabilitation Engineering 27(7):1436--1448
Capecci M, Ceravolo MG, Ferracuti F, Iarlori S, Monteriu A, Romeo L, Verdini F (2019) The kimore dataset: Kinematic assessment of movement and clinical scores for remote monitoring of physical rehabilitation. IEEE Transactions on Neural Systems and Rehabilitation Engineering 2...
2019
-
[246]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 6299--6308
Carreira J, Zisserman A (2017) Quo vadis, action recognition? a new model and the kinetics dataset. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 6299--6308
2017
-
[247]
(2025) Seed-x: Building strong multilingual translation llm with 7b parameters
Cheng S, Bao Y, Cao Q, Huang L, Kang L, Liu Z, Lu Y, Zhu W, Chen J, Huang Z, et al. (2025) Seed-x: Building strong multilingual translation llm with 7b parameters. arXiv preprint arXiv:250713618
2025
-
[248]
arXiv preprint arXiv:241211959
Cicchetti G, Grassucci E, Sigillo L, Comminiello D (2024) Gramian multimodal representation learning and alignment. arXiv preprint arXiv:241211959
2024
-
[249]
https://github.com/open-mmlab/mmpose, accessed: 2026-06-29
Contributors M (2020) Openmmlab pose estimation toolbox and benchmark. https://github.com/open-mmlab/mmpose, accessed: 2026-06-29
2020
-
[250]
IEEE Transactions on Neural Systems and Rehabilitation Engineering 30:410--419
Deb S, Islam MF, Rahman S, Rahman S (2022) Graph convolutional networks for assessment of physical rehabilitation exercises. IEEE Transactions on Neural Systems and Rehabilitation Engineering 30:410--419
2022
-
[251]
arXiv preprint arXiv:240811687
Dong X, Liu X, Li W, Adeyemi-Ejeye A, Gilbert A (2024) Interpretable long-term action quality assessment. arXiv preprint arXiv:240811687
2024
-
[252]
International Journal of Computer Vision 134(24)
Dong X, Liu X, Li W, Adeyemi-Ejeye A, Gilbert A (2026) Uil-aqa: Uncertainty-aware clip-level interpretable action quality assessment. International Journal of Computer Vision 134(24)
2026
-
[253]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 6057--6066
Doughty H, Damen D, Mayol-Cuevas W (2018) Who's better? who's best? pairwise deep ranking for skill determination. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 6057--6066
2018
-
[254]
IEEE Transactions on Multimedia 26:4987--4997
Du Z, He D, Wang X, Wang Q (2023) Learning semantics-guided representations for scoring figure skating. IEEE Transactions on Multimedia 26:4987--4997
2023
-
[255]
In: Proceedings of the IEEE International Conference on Acoustics, Speech and Signal Processing, pp 1--5
Elizalde B, Deshmukh S, Al Ismail M, Wang H (2023) Clap learning audio concepts from natural language supervision. In: Proceedings of the IEEE International Conference on Acoustics, Speech and Signal Processing, pp 1--5
2023
-
[256]
In: Proceedings of the IEEE International Conference on Acoustics, Speech and Signal Processing, pp 7695--7699
Fang M, Du X, Liu Q, Zhou Y, Liang Q, Liu S (2024) Which is the better teacher action? a new ranking model and dataset. In: Proceedings of the IEEE International Conference on Acoustics, Speech and Signal Processing, pp 7695--7699
2024
-
[257]
In: Image Analysis: 13th Scandinavian Conference, SCIA 2003 Halmstad, Sweden, June 29--July 2, 2003 Proceedings 13, pp 363--370
Farneb \"a ck G (2003) Two-frame motion estimation based on polynomial expansion. In: Image Analysis: 13th Scandinavian Conference, SCIA 2003 Halmstad, Sweden, June 29--July 2, 2003 Proceedings 13, pp 363--370
2003
-
[258]
International Journal of Computer Vision 131(3):659--679
Gao J, Pan JH, Zhang SJ, Zheng WS (2023) Automatic modelling for interactive action assessment. International Journal of Computer Vision 131(3):659--679
2023
-
[259]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 15180--15190
Girdhar R, El-Nouby A, Liu Z, Singh M, Alwala KV, Joulin A, Misra I (2023) Imagebind: One embedding space to bind them all. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 15180--15190
2023
-
[260]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops, pp 6018--6027
Han R, Zhou K, Atapour-Abarghouei A, Liang X, Shum HP (2025 a ) Finecausal: A causal-based framework for interpretable fine-grained action quality assessment. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops, pp 6018--6027
2025
-
[261]
arXiv preprint arXiv:251121653
Han R, Zhou K, Chen S, Atapour-Abarghouei A, Shum HP (2025 b ) Caflow: Enhancing long-term action quality assessment with causal counterfactual flow. arXiv preprint arXiv:251121653
2025
-
[262]
In: Breakthroughs in statistics: methodology and distribution, pp 162--190
Hotelling H (1992) Relations between two sets of variates. In: Breakthroughs in statistics: methodology and distribution, pp 162--190
1992
-
[263]
In: Proceedings of the ACM International Conference on Multimedia, pp 8590--8597
Ji Y, Ye L, Huang H, Mao L, Zhou Y, Gao L (2023) Localization-assisted uncertainty score disentanglement network for action quality assessment. In: Proceedings of the ACM International Conference on Multimedia, pp 8590--8597
2023
-
[264]
(2017) 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. (2017) The kinetics human action video dataset. arXiv preprint arXiv:170506950
2017
-
[265]
Information Sciences 664:120347
Ke X, Xu H, Lin X, Guo W (2024) Two-path target-aware contrastive regression for action quality assessment. Information Sciences 664:120347
2024
-
[266]
Transactions on Machine Learning Research ://openreview.net/forum?id=QTXocpAP9p
Kothapalli V (2023) Neural collapse: A review on modelling principles and generalization. Transactions on Machine Learning Research ://openreview.net/forum?id=QTXocpAP9p
2023
-
[267]
SIAM review 25(2):201--237
Kruskal JB (1983) An overview of sequence comparison: Time warps, string edits, and macromolecules. SIAM review 25(2):201--237
1983
-
[268]
In: Proceedings of the European Conference on Computer Vision, vol 13664, pp 457--473
Li M, Zhang HB, Lei Q, Fan Z, Liu J, Du JX (2022) Pairwise contrastive learning network for action quality assessment. In: Proceedings of the European Conference on Computer Vision, vol 13664, pp 457--473
2022
-
[269]
International Journal of Computer Vision 134:103, doi:10.1007/s11263-025-02667-1
Li S, Tang H (2026) Multimodal alignment and fusion: A survey. International Journal of Computer Vision 134:103, doi:10.1007/s11263-025-02667-1
2026 doi
-
[270]
In: Proceedings of the European Conference on Computer Vision, vol 15078, pp 363--382
Li YM, Huang WJ, Wang AL, Zeng LA, Meng JK, Zheng WS (2024 a ) Egoexo-fitness: Towards egocentric and exocentric full-body action understanding. In: Proceedings of the European Conference on Computer Vision, vol 15078, pp 363--382
2024
-
[271]
IEEE Transactions on Circuits and Systems for Video Technology 34(10):9112--9124
Li YM, Zeng LA, Meng JK, Zheng WS (2024 b ) Continual action assessment via task-consistent score-discriminative feature distribution modeling. IEEE Transactions on Circuits and Systems for Video Technology 34(10):9112--9124
2024
-
[272]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 9522--9531
Liu D, Li Q, Jiang T, Wang Y, Miao R, Shan F, Li Z (2021) Towards unified surgical skill assessment. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 9522--9531
2021
-
[273]
In: Proceedings of the ACM International Conference on Multimedia, pp 2437--2445
Liu Y, Cheng X, Ikenaga T (2023) A figure skating jumping dataset for replay-guided action quality assessment. In: Proceedings of the ACM International Conference on Multimedia, pp 2437--2445
2023
-
[274]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 3202--3211
Liu Z, Ning J, Cao Y, Wei Y, Zhang Z, Lin S, Hu H (2022) Video swin transformer. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 3202--3211
2022
-
[275]
Neurocomputing 508:293--304
Luo H, Ji L, Zhong M, Chen Y, Lei W, Duan N, Li T (2022) Clip4clip: An empirical study of clip for end to end video clip retrieval and captioning. Neurocomputing 508:293--304
2022
-
[276]
In: Proceedings of the European Conference on Computer Vision, vol 15089, pp 143--161
Majeedi A, Gajjala VR, Namburi SSSG, Li Y (2024) Rica ^2 : Rubric-informed, calibrated assessment of actions. In: Proceedings of the European Conference on Computer Vision, vol 15089, pp 143--161
2024
-
[277]
where are we now? Clinical and Experimental Rheumatology 40(2):394--403
McCann LJ, Livermore P, Wilkinson MGL, Wedderburn LR (2022) Juvenile dermatomyositis. where are we now? Clinical and Experimental Rheumatology 40(2):394--403
2022
-
[278]
In: Proceedings of the IEEE/CVF International Conference on Computer Vision, pp 6331--6340
Pan JH, Gao J, Zheng WS (2019) Action assessment by joint relation graphs. In: Proceedings of the IEEE/CVF International Conference on Computer Vision, pp 6331--6340
2019
-
[279]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops, pp 20--28
Parmar P, Tran Morris B (2017) Learning to score olympic events. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops, pp 20--28
2017
-
[280]
In: Proceedings of the European Conference on Computer Vision, vol 8694, pp 556--571
Pirsiavash H, Vondrick C, Torralba A (2014) Assessing the quality of actions. In: Proceedings of the European Conference on Computer Vision, vol 8694, pp 556--571
2014
-
[281]
(2021) Learning transferable visual models from natural language supervision
Radford A, Kim JW, Hallacy C, Ramesh A, Goh G, Agarwal S, Sastry G, Askell A, Mishkin P, Clark J, et al. (2021) Learning transferable visual models from natural language supervision. In: Proceedings of the International Conference on Machine Learning, pp 8748--8763
2021
-
[282]
Nature Reviews Rheumatology 14(5):303--318
Rider LG, Aggarwal R, Machado PM, Hogrel JY, Reed AM, Christopher-Stine L, Ruperto N (2018) Update on outcome assessment in myositis. Nature Reviews Rheumatology 14(5):303--318
2018
-
[283]
In: Proceedings of the AAAI Conference on Artificial Intelligence, vol 37, pp 9641--9649
Ruan L, Hu A, Song Y, Zhang L, Zheng S, Jin Q (2023) Accommodating audio modality in clip for multimodal processing. In: Proceedings of the AAAI Conference on Artificial Intelligence, vol 37, pp 9641--9649
2023
-
[284]
Data 3(1):1--15
Vakanski A, Jun Hp, Paul D, Baker R (2018) A data set of human body movements for physical rehabilitation exercises. Data 3(1):1--15
2018
-
[285]
In: Proceedings of the ACM International Conference on Multimedia, pp 4902--4910
Wang S, Yang D, Zhai P, Chen C, Zhang L (2021) Tsa-net: Tube self-attention network for action quality assessment. In: Proceedings of the ACM International Conference on Multimedia, pp 4902--4910
2021
-
[286]
In: Proceedings of the Conference on Empirical Methods in Natural Language Processing, pp 3876--3887
Wang Z, Wu Z, Agarwal D, Sun J (2022) Medclip: Contrastive learning from unpaired medical images and text. In: Proceedings of the Conference on Empirical Methods in Natural Language Processing, pp 3876--3887
2022
-
[287]
IEEE Transactions on Medical Imaging 44(2):982--993
Wu Y, Zhou Y, Saiyin J, Wei B, Lai M, Shou J, Xu Y (2024) Attriprompter: Auto-prompting with attribute semantics for zero-shot nuclei detection via visual-language pre-trained models. IEEE Transactions on Medical Imaging 44(2):982--993
2024
-
[288]
In: Proceedings of the AAAI Conference on Artificial Intelligence, pp 2901--2909
Xia J, Zhuge M, Geng T, Fan S, Wei Y, He Z, Zheng F (2023) Skating-mixer: Long-term sport audio-visual modeling with mlps. In: Proceedings of the AAAI Conference on Artificial Intelligence, pp 2901--2909
2023
-
[289]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 3232--3241
Xu A, Zeng LA, Zheng WS (2022 a ) Likert scoring with grade decoupling for long-term action assessment. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 3232--3241
2022
-
[290]
IEEE Transactions on Circuits and Systems for Video Technology 30(12):4578--4590
Xu C, Fu Y, Zhang B, Chen Z, Jiang YG, Xue X (2019) Learning to score figure skating sport videos. IEEE Transactions on Circuits and Systems for Video Technology 30(12):4578--4590
2019
-
[291]
In: Proceedings of the European Conference on Computer Vision, vol 15089, pp 423--440
Xu H, Ke X, Li Y, Xu R, Wu H, Lin X, Guo W (2024 a ) Vision-language action knowledge learning for semantic-aware action quality assessment. In: Proceedings of the European Conference on Computer Vision, vol 15089, pp 423--440
2024
-
[292]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 23967--23977
Xu H, Ke X, Wu H, Xu R, Li Y, Guo W (2025 a ) Language-guided audio-visual learning for long-term sports assessment. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 23967--23977
2025
-
[293]
IEEE Transactions on Multimedia 27:7326--7339
Xu H, Wu H, Ke X, Li Y, Xu R, Guo W (2025 b ) Quality-guided vision-language learning for long-term action quality assessment. IEEE Transactions on Multimedia 27:7326--7339
2025
-
[294]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 2949--2958
Xu J, Rao Y, Yu X, Chen G, Zhou J, Lu J (2022 b ) Finediving: A fine-grained dataset for procedure-aware action quality assessment. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 2949--2958
2022
-
[295]
International Journal of Computer Vision 132(12):6069--6090
Xu J, Rao Y, Zhou J, Lu J (2024 b ) Procedure-aware action quality assessment: Datasets and performance evaluation. International Journal of Computer Vision 132(12):6069--6090
2024
-
[296]
In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 14628--14637
Xu J, Yin S, Zhao G, Wang Z, Peng Y (2024 c ) Fineparser: A fine-grained spatio-temporal action parser for human-centric action quality assessment. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp 14628--14637
2024
-
[297]
IEEE Transactions on Pattern Analysis and Machine Intelligence 47(8):6242--6255
Xu J, Yin S, Peng Y (2025 c ) Human-centric fine-grained action quality assessment. IEEE Transactions on Pattern Analysis and Machine Intelligence 47(8):6242--6255
2025
-
[298]
In: Proceedings of the International Conference on Machine Learning, ://openreview.net/forum?id=Shb4ltB3J2
Yan H, Zhou K, Liu Y, Shi Q, Zhong Y, Wang L (2026) CE \ 4\ l: Continual ego, exo, and ego-exo learning. In: Proceedings of the International Conference on Machine Learning, ://openreview.net/forum?id=Shb4ltB3J2
2026
-
[299]
In: International Conference on Medical Image Computing and Computer-Assisted Intervention, pp 67--77
Yang Z, Chen H, Qian Z, Yi Y, Zhang H, Zhao D, Wei B, Xu Y (2024) All-in-one medical image restoration via task-adaptive routing. In: International Conference on Medical Image Computing and Computer-Assisted Intervention, pp 67--77
2024
-
[300]
IEEE Journal of Biomedical and Health Informatics 30(1)
Yang Z, Li J, Zhang H, Zhao D, Wei B, Xu Y (2025) Restore-rwkv: Efficient and effective medical image restoration with rwkv. IEEE Journal of Biomedical and Health Informatics 30(1)
2025
Reviewed July 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.