<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>action recognition &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/action-recognition/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Sun, 13 Sep 2026 01:30:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>action recognition &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>New AI framework teaches video models to reason about cause and effect, not just correlations</title>
		<link>https://scienmag.com/new-ai-framework-teaches-video-models-to-reason-about-cause-and-effect-not-just-correlations/</link>
		
		<dc:creator><![CDATA[Blake Davidson]]></dc:creator>
		<pubDate>Sun, 13 Sep 2026 01:30:09 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[action recognition]]></category>
		<category><![CDATA[causal reasoning in AI]]></category>
		<category><![CDATA[causal representation learning]]></category>
		<category><![CDATA[challenges in computer vision benchmarks]]></category>
		<category><![CDATA[computer vision]]></category>
		<category><![CDATA[contrastive learning for videos]]></category>
		<category><![CDATA[counterfactual learning]]></category>
		<category><![CDATA[limitations of current video models]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[masked video modeling]]></category>
		<category><![CDATA[masked video modeling techniques]]></category>
		<category><![CDATA[motion and action recognition]]></category>
		<category><![CDATA[progression towards causal inference in AI]]></category>
		<category><![CDATA[scene dynamics generalization]]></category>
		<category><![CDATA[self-supervised learning]]></category>
		<category><![CDATA[self-supervised learning in video models]]></category>
		<category><![CDATA[semantic supervision in video AI]]></category>
		<category><![CDATA[structural causal models]]></category>
		<category><![CDATA[temporal interventions]]></category>
		<category><![CDATA[TRACE]]></category>
		<category><![CDATA[TRACE framework for video analysis]]></category>
		<category><![CDATA[video understanding]]></category>
		<category><![CDATA[VideoMAE]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=200472</guid>

					<description><![CDATA[Researchers have developed TRACE, a self-supervised framework that teaches video AI models to reason about interventions and counterfactuals rather than statistical correlations, achieving state-of-the-art results across major video benchmarks.]]></description>
										<content:encoded><![CDATA[<p>Artificial intelligence systems that watch video have become remarkably good at recognizing what they see, but they remain surprisingly poor at understanding why things happen. A research team now reports a new self-supervised framework, called TRACE, that pushes video understanding models beyond memorizing statistical patterns and toward something closer to causal reasoning about motion and action. The work, published in Machine Learning with Applications, addresses one of the most persistent weaknesses in modern computer vision: models that perform brilliantly on benchmarks yet fail when the dynamics of a scene change in ways they have never encountered.</p>
<p>The problem, according to the authors, stems from how current self-supervised learning methods are built. Most approaches fall into three broad families. Transformation-based methods ask models to predict the temporal order of shuffled frames or recognize motion patterns. Contrastive learning approaches maximize agreement between differently augmented views of the same video. Masked video modeling techniques, which currently lead the field, reconstruct heavily masked spatiotemporal tokens, with systems such as VideoMAE demonstrating that this strategy yields highly transferable representations. More recent methods like SMILE inject semantic supervision from pretrained vision-language models and motion-aware masking to sharpen temporal sensitivity.</p>
<p>Yet all of these methods share a common limitation: they learn correlations between observed frames without modeling the underlying mechanisms that generate temporal dynamics. Real-world video is produced by structured interactions between objects, agents, and environments, where actions lead to observable consequences over time. Correlation-driven objectives allow models to exploit shortcuts, such as static appearance cues or temporal redundancy, a phenomenon the authors link to well-documented shortcut learning in deep networks. The result is representations that may lack robustness under distribution shifts, fail to generalize to unseen dynamics, and struggle with tasks requiring reasoning about actions and their effects.</p>
<p>TRACE, short for Temporal Causal Representation Learning for Video Understanding, tackles this gap by borrowing an idea from causal inference: the intervention. Inspired by Judea Pearl&#8217;s do-operator, the framework approximates the effect of intervening on latent temporal factors by modifying motion dynamics in a learned latent space and observing how future representations change. Crucially, the authors emphasize that TRACE does not perform true causal discovery or identifiable causal inference. Instead, it offers a practical approximation of intervention-based learning that captures intervention-sensitive temporal dependencies without requiring explicit causal supervision.</p>
<p>Technically, the framework rests on three pillars. First, a transformer-based encoder maps video frames into latent tokens that are explicitly decomposed into two 384-dimensional components: a content branch that preserves stable scene semantics and a motion branch that captures temporal dynamics. Second, a temporal intervention module perturbs the motion component through three structured operations. Motion perturbation scales temporal changes and injects noise to simulate faster or slower action dynamics. Token-level intervention permutes latent tokens along trajectories to disrupt temporal correspondence. Structural intervention masks selected edges in a learned temporal dependency graph, simulating altered interactions between scene components. Third, a counterfactual prediction module is trained to forecast future latent representations conditioned on the intervened state, with a consistency loss aligning predictions with approximated counterfactual outcomes and a separation term preventing trivial identity mappings.</p>
<p>The authors are careful to distinguish these interventions from conventional data augmentation. Temporal shuffling, frame dropping, and playback speed variation treat perturbed samples as additional views of the same video, aiming for invariance. TRACE instead intervenes after decomposing the latent representation, acting exclusively on motion while an invariance constraint keeps content fixed. The intervened representation becomes the input to the prediction module, so the model must learn how changes in motion affect future evolution rather than simply ignoring perturbations. An additional intervention-aware contrastive objective uses hard negatives drawn from temporally inconsistent or intervention-mismatched trajectories, pushing the model to separate causally valid evolution from implausible alternatives.</p>
<p>The empirical results are striking. Under linear probing, TRACE outperformed the strongest baseline, SMILE, by 3.9 percent on Something-Something V2, a dataset demanding fine-grained temporal reasoning, and by 1.7 percent on EPIC-Kitchens, while also gaining 2.7 percent on appearance-dominated Kinetics-400 and 1.3 percent on UCF-101. Under full fine-tuning, it improved over SMILE by 2.2 percent on SSv2 and 1.5 percent on K400, reaching 74.3 and 84.6 percent Top-1 accuracy respectively. All comparisons were statistically significant in paired two-tailed t-tests over five independent runs, with p-values below 0.05, and standard deviations remained consistently low, indicating stability across random initializations.</p>
<p>Ablation studies confirmed that every component contributes, with the temporal intervention module proving most critical: removing it cost 3.8 percent on Kinetics-400 and 2.7 percent on SSv2. Cross-dataset transfer showed gains of 3.9 percent for Kinetics-400 to SSv2 and 2.6 percent in the reverse direction, and under controlled motion perturbations at test time TRACE&#8217;s accuracy drop was nearly halved, from minus 9.1 percent for SMILE to minus 4.8 percent. On a CLEVRER-style synthetic benchmark with known physical rules, TRACE reached 76.9 percent causal reasoning accuracy versus 71.4 for SMILE, and achieved the highest counterfactual prediction consistency at 0.81 cosine similarity. Notably, the intervention and counterfactual modules are used only during pretraining, so inference cost remains identical to standard transformer encoders, with total computational overhead of roughly 4 to 5 percent during training.</p>
<p>Qualitative visualizations reinforced the story. t-SNE and UMAP projections showed content representations forming compact clusters aligned with action categories, while motion representations grouped actions sharing similar dynamics regardless of semantics. Attention and motion sensitivity maps revealed that TRACE concentrates on hands, manipulated objects, and interaction points, highlighting the take-off phase of a basketball dunk, the release of a javelin, or the subtle hand-object interactions in egocentric kitchen videos, precisely the regions where altering motion would most change future outcomes.</p>
<p>The authors frame TRACE as a scalable pathway toward causally grounded video representation learning that integrates with modern architectures without manual annotation. They acknowledge open challenges, including principled identification of true causal factors in real-world video, extension to multimodal signals such as language and audio, incorporation of physical constraints and structured world models, and application to video question answering, planning, and embodied decision-making. If the approach generalizes, it could mark a meaningful step toward machines that do not merely watch the world unfold, but understand what would happen if it unfolded differently.</p>
<p><strong>Subject of Research:</strong> Intervention-aware self-supervised temporal representation learning for causal video understanding</p>
<p><strong>Article Title:</strong> TRACE: Intervention-aware temporal representation learning for video understanding</p>
<p><strong>Article References:</strong> Chaudhry, H. N., Kulsoom, F., Mohsin, S. M., Aslam, S., &amp; Ashraf, N. (2026). TRACE: Intervention-aware temporal representation learning for video understanding. <em>Machine Learning with Applications, 25</em>, Article 100976. <a href="https://doi.org/10.1016/j.mlwa.2026.100976" rel="noopener noreferrer">https://doi.org/10.1016/j.mlwa.2026.100976</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1016/j.mlwa.2026.100976" rel="noopener noreferrer">10.1016/j.mlwa.2026.100976</a></p>
<p><strong>Keywords:</strong> TRACE, video understanding, self-supervised learning, causal representation learning, temporal interventions, counterfactual learning, masked video modeling, action recognition, VideoMAE, machine learning, computer vision, structural causal models</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">200472</post-id>	</item>
		<item>
		<title>Real-time multimedia CPR training feedback using pose estimation and action recognition</title>
		<link>https://scienmag.com/real-time-multimedia-cpr-training-feedback-using-pose-estimation-and-action-recognition/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Fri, 04 Sep 2026 21:03:16 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[action recognition]]></category>
		<category><![CDATA[AI-powered CPR coaching]]></category>
		<category><![CDATA[AI-powered medical education]]></category>
		<category><![CDATA[augmented CPR training]]></category>
		<category><![CDATA[automated CPR skill assessment]]></category>
		<category><![CDATA[bystander CPR improvement]]></category>
		<category><![CDATA[cognitive load reduction in medical learning]]></category>
		<category><![CDATA[CPR training]]></category>
		<category><![CDATA[CPR training feedback system]]></category>
		<category><![CDATA[digital assistant for first aid training]]></category>
		<category><![CDATA[emergency response training]]></category>
		<category><![CDATA[enhancing bystander CPR skills]]></category>
		<category><![CDATA[improving CPR outcomes with AI]]></category>
		<category><![CDATA[intelligent healthcare systems]]></category>
		<category><![CDATA[interactive multimedia CPR education]]></category>
		<category><![CDATA[multimedia CPR instruction]]></category>
		<category><![CDATA[multimedia tools for emergency training]]></category>
		<category><![CDATA[pose estimation]]></category>
		<category><![CDATA[posture and technique correction during CPR]]></category>
		<category><![CDATA[real-time audiovisual feedback for resuscitation]]></category>
		<category><![CDATA[real-time feedback]]></category>
		<category><![CDATA[real-time pose estimation for CPR]]></category>
		<category><![CDATA[skeleton-based action recognition]]></category>
		<category><![CDATA[skeleton-based movement analysis]]></category>
		<guid isPermaLink="false">https://scienmag.com/real-time-multimedia-cpr-training-feedback-using-pose-estimation-and-action-recognition/</guid>

					<description><![CDATA[A team of researchers in Taiwan has built an artificial intelligence system that watches people perform cardiopulmonary resuscitation and tells them, instantly and out loud, exactly what they are doing wrong. The system, described in a new study published in Multimedia Tools and Applications, combines human pose estimation with skeleton-based action recognition to deliver real-time [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>A team of researchers in Taiwan has built an artificial intelligence system that watches people perform cardiopulmonary resuscitation and tells them, instantly and out loud, exactly what they are doing wrong. The system, described in a new study published in Multimedia Tools and Applications, combines human pose estimation with skeleton-based action recognition to deliver real-time audio-visual feedback during CPR training, and in a controlled trial with 60 participants it produced markedly better skill performance, lower cognitive load and higher learner satisfaction than conventional instruction alone.</p>
<p>Cardiac arrest remains one of the most time-critical emergencies in medicine. Survival depends overwhelmingly on what happens in the first minutes, and high-quality CPR, delivered with correct posture, depth and sequence, is one of the few interventions bystanders can provide before emergency services arrive. Yet training outcomes vary widely, and studies cited by the authors point to persistent challenges in nursing education and public awareness campaigns across Europe. Traditional CPR courses rely on instructors observing multiple trainees at once, which makes fine-grained, continuous correction of every compression and hand position practically impossible. The new system was designed to fill that gap by acting as a tireless, always-attentive digital assistant that evaluates every movement the moment it happens.</p>
<p>The technical core of the system is a two-stage pipeline. The first stage uses HRNet, a deep neural network architecture for human pose estimation that maintains high-resolution representations throughout its processing stages. Unlike architectures that downscale images and then attempt to recover spatial detail, HRNet preserves fine-grained information about body joints, which is essential for CPR, where subtle deviations in arm angle or shoulder alignment can mean the difference between effective and ineffective chest compressions. The network converts a standard camera feed into a skeletal representation of the trainee, a stick-figure abstraction that captures where the head, shoulders, elbows, wrists, hips and knees are in each frame.</p>
<p>The second stage takes those skeleton sequences and classifies what the trainee is actually doing. The researchers employed ST-GCN++, an improved version of the Spatio-Temporal Graph Convolutional Network, a class of models built specifically for skeleton-based action recognition. A human skeleton is naturally a graph: joints are nodes, and bones are edges. A graph convolutional network propagates information across that graph, learning patterns both in space, how the joints relate to each other in a single frame, and in time, how those relationships evolve across a sequence of frames. The &#8220;plus-plus&#8221; refinement adds improved backbone design and multi-stream inputs, boosting accuracy without requiring enormous computational resources.</p>
<p>To make the system work in real time, the team segmented the streaming video into short clips, classified the CPR actions on the fly, and compared the recognized action sequence against the standard CPR procedure. This is where the &#8220;process-aware&#8221; component comes in. The system does not merely ask whether a given movement resembles a chest compression; it tracks whether the actions are happening in the correct order, whether the posture matches the protocol, and whether the trainee is hesitating. When execution order or posture deviates from the standard procedure, the system immediately triggers audio-visual prompts, essentially coaching the learner in the moment rather than after the fact. The architecture is deliberately lightweight and runs on commodity hardware, a design decision that opens the door to deployment in schools, community centers, and remote or resource-constrained settings where expensive manikin sensor systems are unavailable.</p>
<p>The machine-learning performance figures are strong. Evaluated with randomized segment-level splits, the action classifier achieved an accuracy of 0.93 and a recall of 0.93, with a balanced accuracy of 0.91 and a macro-averaged F1-score of 0.91. The use of balanced accuracy and macro-averaged F1 indicates the team was attentive to class imbalance, ensuring the model performs well across all CPR action categories rather than excelling only on the most common ones. The researchers framed the entire work as a controlled feasibility study, and were careful to note that the model evaluation used segment-level randomization, a detail that matters because action-recognition models can sometimes exploit temporal redundancy between adjacent clips if data splitting is not handled properly.</p>
<p>The team then took the system out of the lab&#8217;s benchmark datasets and into a quasi-experimental training study. Sixty participants were divided into two groups of thirty. One group received traditional instructor-led CPR training; the other trained with the intelligent feedback system. The entire experiment, including participant briefing, a pre-test, instructor-led instruction, group-based practice, and post-test assessment, was completed over approximately eight hours. Performance after training was assessed by a blinded CPR instructor, who scored each participant on action sequence correctness and hesitation duration without knowing which group the participant had belonged to, a design choice that reduces evaluator bias.</p>
<p>The results were unambiguous. The group trained with the intelligent system significantly outperformed the traditional training group in skill execution, with a mean score of 89 versus 72, a difference that was highly statistically significant with p less than 0.001 and a large effect size, reflected in a rank-biserial correlation of 0.606. In practical terms, trainees who received instant AI feedback not only performed better but also hesitated less, suggesting the system helped them internalize the correct procedural sequence rather than forcing them to consciously recall it under pressure. The experimental group also reported lower cognitive load, measured with established psychological instruments, an outcome the authors link to the way immediate, automated feedback relieves learners of the burden of self-monitoring while performing a physically and mentally demanding task.</p>
<p>Usability and satisfaction metrics told a similar story. The system achieved a System Usability Scale score of 78.6, placing it in the upper range of the widely used 0-to-100 usability instrument, and participants expressed greater satisfaction with their training experience compared with the traditional group. The authors suggest that skeleton-based action recognition coupled with real-time multisensory feedback can support practical skill acquisition and learner confidence in a controlled feasibility setting, and that the reduction in cognitive load may be a key mechanism behind the improved learning outcomes, since overload during skill practice is known to impair retention.</p>
<p>The implications extend well beyond CPR. The study&#8217;s authors, Ming-Chuan Chiu and Zi-Heng Huang of National Tsing Hua University and Meng-Chun Kao of Yuanpei University of Medical Technology, note that the same skeleton-based approach could be extended, after further validation and runtime profiling, to other skill-based domains, from industrial assembly and physical rehabilitation to surgical technique and workplace safety training. Because the system needs only a camera and commodity computing hardware, it avoids the cost barrier of sensor-instrumented manikins, which could make high-quality, feedback-rich training accessible in low-resource environments and remote learning scenarios where certified instructors are scarce.</p>
<p>The research was supported by the National Science and Technology Council, Taiwan, and approved by the Research Ethics Review Committee of National Tsing Hua University. The team emphasizes that the work remains a feasibility study: larger samples, longer-term retention testing and real-world deployment studies will be needed before the system can be recommended as a replacement for, rather than a supplement to, certified CPR instruction. But the combination of near-human-level action recognition accuracy, measurable improvements in trainee performance, and a lightweight, hardware-agnostic design makes a compelling case that the next generation of life-saving training may not need a human eye on every compression, only a camera, a skeleton, and a graph neural network watching the bones move.</p>
<div class="scienmag-article-metadata"><strong>Subject of Research:</strong> A real-time multimedia feedback system for CPR training based on human pose estimation (HRNet) and skeleton-based action recognition (ST-GCN++)</p>
<p><strong>Article Title:</strong> Development of a real-time multimedia feedback system for CPR training based on human pose estimation and skeleton-based action recognition</p>
<p><strong>Article References:</strong> Chiu, M.-C., Huang, Z.-H., &amp; Kao, M.-C. (2026). Development of a real-time multimedia feedback system for CPR training based on human pose estimation and skeleton-based action recognition. <em>Multimedia Tools and Applications, 85</em>(9), Article 733. <a href="https://doi.org/10.1007/s11042-026-21896-1" target="_blank" rel="noopener noreferrer">https://doi.org/10.1007/s11042-026-21896-1</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s11042-026-21896-1" target="_blank" rel="noopener noreferrer">10.1007/s11042-026-21896-1</a></p>
<p><strong>Keywords:</strong> human pose estimation, skeleton-based action recognition, HRNet, ST-GCN++, real-time visual and auditory feedback, cardiopulmonary resuscitation (CPR), CPR training, real-time feedback system, multimedia learning system</p>
</div>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">187509</post-id>	</item>
	</channel>
</rss>
