<?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>emergency response training &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/emergency-response-training/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Fri, 04 Sep 2026 21:03:19 +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>emergency response training &#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>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>
		<item>
		<title>Paramedic Students in Jordan: Self-Directed Learning Readiness</title>
		<link>https://scienmag.com/paramedic-students-in-jordan-self-directed-learning-readiness/</link>
		
		<dc:creator><![CDATA[Courtney Benton]]></dc:creator>
		<pubDate>Wed, 12 Nov 2025 05:22:41 +0000</pubDate>
				<category><![CDATA[Science Education]]></category>
		<category><![CDATA[challenges in paramedic education]]></category>
		<category><![CDATA[educational needs in paramedic training]]></category>
		<category><![CDATA[emergency response training]]></category>
		<category><![CDATA[evolving educational frameworks in medicine]]></category>
		<category><![CDATA[Healthcare workforce development]]></category>
		<category><![CDATA[lifelong learning in healthcare professions]]></category>
		<category><![CDATA[medical education transformation]]></category>
		<category><![CDATA[multi-institutional study in healthcare]]></category>
		<category><![CDATA[paramedic students in Jordan]]></category>
		<category><![CDATA[self-directed learning in paramedic education]]></category>
		<category><![CDATA[self-directed learning readiness]]></category>
		<category><![CDATA[student attitudes toward self-directed learning]]></category>
		<guid isPermaLink="false">https://scienmag.com/paramedic-students-in-jordan-self-directed-learning-readiness/</guid>

					<description><![CDATA[In a groundbreaking study that has implications for medical education worldwide, researchers from Jordan have shed light on the readiness for self-directed learning among paramedic students. The findings of this multi-institutional study, published in BMC Medical Education, reveal significant insights that could transform how paramedic training is approached. With the increasing demand for skilled healthcare [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>In a groundbreaking study that has implications for medical education worldwide, researchers from Jordan have shed light on the readiness for self-directed learning among paramedic students. The findings of this multi-institutional study, published in BMC Medical Education, reveal significant insights that could transform how paramedic training is approached. With the increasing demand for skilled healthcare professionals, this research underscores the necessity for educational systems to evolve and meet the needs of both students and the healthcare industry.</p>
<p>Self-directed learning, a process where individuals take the initiative in diagnosing their learning needs, formulating goals, identifying resources, and evaluating outcomes, is particularly vital in demanding fields such as medicine and emergency response. The study assessed a diverse group of paramedic students across multiple institutions, examining their levels of readiness for such educational approaches. The critical analysis of this readiness illuminates the potential strengths and weaknesses within the current educational frameworks utilized in paramedic training.</p>
<p>One key finding was that a significant portion of the participants exhibited a favorable attitude toward self-directed learning. This disposition is particularly encouraging, as it suggests that students are not only willing to take charge of their educational journeys but are also aware of the importance of life-long learning in their future careers as paramedics. The ability to self-direct is crucial in emergency situations where quick decision-making and adaptability are paramount.</p>
<p>Moreover, the study revealed some alarming gaps in the students&#8217; preparedness for self-directed learning. While many students recognized its benefits, there were notable deficiencies in their skills to identify appropriate learning resources and strategies. This disconnect raises important questions about the effectiveness of current educational practices that may not be adequately equipping students with the necessary tools needed for independent learning and critical thinking.</p>
<p>In response to these findings, the researchers advocate for a curricular review and redesign that emphasizes self-directed learning strategies within paramedic training programs. Educational institutions must consider integrating structured learning experiences that enhance students’ autonomy and capability to identify their learning needs. Active learning methodologies, such as problem-based learning or simulation exercises, could play critical roles in fostering a culture of self-directed learning among paramedics.</p>
<p>The online nature of many educational resources presents both challenges and opportunities for self-directed learning. Students today have access to incredible volumes of information through the internet; however, sifting through this plethora of content to identify credible sources can be daunting. The researchers emphasize the importance of teaching students how to discern valuable information from misleading or incorrect data, especially in a field where misinformation could have serious real-world consequences.</p>
<p>Encouragingly, the study also points to potential interventions that can bolster students&#8217; readiness for self-directed learning. Mentorship programs and peer collaboration can be utilized to create supportive networks that empower students to take charge of their education, share learning strategies, and offer feedback to one another. Establishing a learning community where students feel comfortable discussing their challenges and triumphs could help build resilience and a greater capacity for self-direction.</p>
<p>Additionally, the role of instructors in fostering self-directed learning should not be underestimated. Educators can create environments that encourage inquiry and exploration, where students feel safe to ask questions and seek assistance. Workshops on self-directed learning techniques, coupled with regular assessments that encourage reflection on personal learning goals, can enhance students’ competencies and instill a sense of ownership over their education.</p>
<p>Transitioning into a self-directed learning paradigm can present hurdles, particularly in traditional educational settings that rely heavily on instructor-led approaches. However, by gradually implementing elements that support self-direction, institutions can foster an educational atmosphere that prioritizes student agency and adaptability. This transition is particularly critical in the context of paramedic training, where the ability to adapt and learn autonomously can directly impact patient outcomes.</p>
<p>As the study advocates for changes within health education, it also highlights the broader implications for public health. By preparing paramedic students to be proactive learners, we empower the next generation of healthcare professionals to respond more effectively to the ever-evolving landscape of medical emergencies. A resilient and adaptable workforce can contribute to enhanced health outcomes and improved community safety.</p>
<p>This multi-institutional study marks a significant step toward advancing paramedic education, but it is only the beginning. There is a pressing need for ongoing research to monitor the effectiveness of changes made in curricula following these findings. As educational methodologies evolve, continuous feedback and adaptation will ensure that paramedic students remain well-prepared for their vital roles in society.</p>
<p>In conclusion, the readiness for self-directed learning among paramedic students is a critical area of exploration that warrants continued attention. The insights provided by this study not only contribute to the academic discourse surrounding medical education but also hold the potential to inform policies and practices that enhance the quality of healthcare delivery. As higher education institutions reflect on these findings, the push toward fostering self-directed learners could yield significant benefits for healthcare professionals and their communities in the long run.</p>
<hr />
<p><strong>Subject of Research</strong>: Readiness for self-directed learning among paramedic students.</p>
<p><strong>Article Title</strong>: Readiness for self-directed learning among paramedic students in Jordan: A multi-institutional study.</p>
<p><strong>Article References</strong>:</p>
<p class="c-bibliographic-information__citation">Alwidyan, M.T., Al-Nusour, E.A., Alrawashdeh, A. <i>et al.</i> Readiness for self-directed learning among paramedic students in Jordan: A multi-institutional study.<br />
                    <i>BMC Med Educ</i> <b>25</b>, 1575 (2025). https://doi.org/10.1186/s12909-025-07717-3</p>
<p><strong>Image Credits</strong>: AI Generated</p>
<p><strong>DOI</strong>: <span class="c-bibliographic-information__value">https://doi.org/10.1186/s12909-025-07717-3</span></p>
<p><strong>Keywords</strong>: self-directed learning, paramedic education, health education, medical training, emergency response, student preparedness, lifelong learning, educational strategies, Jordan.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">104370</post-id>	</item>
	</channel>
</rss>
