<?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>lessons &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/lessons/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Sat, 12 Sep 2026 21:48:50 +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>lessons &#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>AI Learns From Its Own Past to Sharpen Graph Neural Networks</title>
		<link>https://scienmag.com/ai-learns-from-its-own-past-to-sharpen-graph-neural-networks/</link>
		
		<dc:creator><![CDATA[Cassandra Pierce]]></dc:creator>
		<pubDate>Sat, 12 Sep 2026 21:48:50 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[data mining and knowledge discovery in graph models]]></category>
		<category><![CDATA[deep learning]]></category>
		<category><![CDATA[generalization challenges in GNNs]]></category>
		<category><![CDATA[graph data applications in finance and science]]></category>
		<category><![CDATA[graph neural network training techniques]]></category>
		<category><![CDATA[Graph Neural Networks]]></category>
		<category><![CDATA[improving GNN robustness]]></category>
		<category><![CDATA[innovative methods in graph machine learning]]></category>
		<category><![CDATA[knowledge distillation]]></category>
		<category><![CDATA[lessons]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[memory augmentation]]></category>
		<category><![CDATA[memory-augmented self-distillation]]></category>
		<category><![CDATA[neural network history learning]]></category>
		<category><![CDATA[node classification]]></category>
		<category><![CDATA[overfitting]]></category>
		<category><![CDATA[overfitting in graph models]]></category>
		<category><![CDATA[oversmoothing]]></category>
		<category><![CDATA[regularization]]></category>
		<category><![CDATA[relationship-based data analysis]]></category>
		<category><![CDATA[self-distillation]]></category>
		<category><![CDATA[self-learning in machine learning]]></category>
		<category><![CDATA[Taking]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=198856</guid>

					<description><![CDATA[Researchers have developed a memory-augmented self-distillation framework that boosts graph neural network accuracy by 2.5 to 6 percent across benchmark datasets.]]></description>
										<content:encoded><![CDATA[<p>Graph neural networks have become one of the most powerful tools in modern machine learning for making sense of data that lives in relationships rather than rows of a spreadsheet. From detecting money laundering in Bitcoin transaction networks to classifying scientific papers by their citation patterns, these models excel at learning from graphs, the mathematical structures that capture how entities connect. Yet despite their success, graph neural networks carry a persistent weakness that has frustrated researchers for years: they overfit. A model that performs brilliantly on the data it was trained on can falter badly when confronted with nodes it has never seen, undermining the very generalization that makes graph learning valuable in the real world.</p>
<p>A new study published in Data Mining and Knowledge Discovery by Saurabh Sharma and Joydeep Chandra of the Indian Institute of Technology Patna, together with Souvik Chowdhury of Jadavpur University, proposes an elegant way out of this trap. Their approach, called Memory Augmented Self Distillation, teaches a graph neural network to learn from its own history. Rather than relying on a separate, fully trained teacher model to guide a smaller student, the framework builds a memory of the network&#8217;s past states and draws on that stored knowledge to regularize and refine its current training. The result is a measurable improvement of 2.5 to 6 percent in accuracy across a range of benchmark datasets compared with existing graph neural network training and self-distillation methods.</p>
<p>To understand why this matters, it helps to look at the technique the new method builds upon: knowledge distillation. First popularized by Geoffrey Hinton and colleagues in 2015, knowledge distillation is a compression and regularization strategy in which a large, well-trained teacher network transfers its knowledge to a smaller student network. The student learns not only from the ground-truth labels but also from the teacher&#8217;s softer, richer output distributions, which encode subtle information about how confident the teacher is and which classes resemble one another. In domains like computer vision and natural language processing, distillation has become a standard tool for building compact, robust models.</p>
<p>Applying distillation to graph neural networks, however, has proven surprisingly difficult. The core obstacle is a phenomenon known as oversmoothing. Graph neural networks learn by passing messages along edges, allowing each node to aggregate information from its neighbors. When the network is deep, this repeated aggregation causes the representations of all nodes to converge toward indistinguishable similarity, effectively washing out the distinctive features that make classification possible. A teacher graph neural network that has been trained to convergence may therefore produce representations that are smooth but information-poor, offering the student little of value to learn from. Conventional teacher-student distillation, so effective elsewhere, struggles to deliver meaningful guidance in the graph setting.</p>
<p>Self-distillation, in which a network serves as its own teacher, sidesteps the need for a separate teacher but runs into a different problem: the information bottleneck. Because the student and the teacher share the same architecture and training data, the knowledge available to transfer is limited by what the model already contains. Without an external source of diverse information, self-distillation can become an echo chamber, reinforcing the model&#8217;s existing biases rather than correcting them. Previous efforts to make graph distillation work have explored multi-teacher setups, adversarial distillation, and structure-aware multilayer perceptrons, but each carries its own computational or methodological trade-offs.</p>
<p>The framework introduced by Sharma, Chowdhury, and Chandra takes a fundamentally different route. Instead of a single teacher or a fixed set of teachers, the method constructs a memory bank that captures diverse snapshots of the learning process as it unfolds. These memory entries act as multiple, heterogeneous knowledge sources drawn from the student model&#8217;s own trajectory through training. Because each snapshot reflects a different stage of learning, the memory collectively encodes a richer and more varied body of knowledge than any single model state could offer, directly addressing the information bottleneck that plagues conventional self-distillation.</p>
<p>The crucial question then becomes which of these stored sources the network should listen to at any given moment. Listening to a poorly trained early snapshot could mislead the model, while relying exclusively on the most recent state would recreate the echo chamber problem. The researchers solve this with a competency-based knowledge source selection mechanism. This mechanism dynamically evaluates how competent each memory source is relative to the current learning objective and selects the most pertinent one for distillation at each step. In effect, the network continuously asks which of its past selves has the most useful lesson to teach, and adapts its supervision accordingly. This adaptive selection transforms the memory from a static archive into an active, evolving curriculum.</p>
<p>The technical payoff of this design is twofold. First, the distillation signal from competent memory sources acts as a powerful regularizer, discouraging the network from drifting into the overconfident, overfit solutions that plague graph learning on limited labeled data. Second, because the memory sources are diverse, the student is exposed to a broader distribution of knowledge than it could generate on its own, improving the quality of its learned representations. The authors demonstrate these gains across multiple benchmark datasets, including widely used citation networks such as Cora, Citeseer, and Pubmed, as well as graph kernel benchmarks and an elliptic Bitcoin transaction dataset used for anti-money laundering research, where only a subset of classes was analyzed for the experiments.</p>
<p>The evaluation methodology reflects careful statistical practice, with paired t-tests used to establish the significance of the improvements over baseline methods. The comparisons span the landscape of graph neural network architectures, including graph convolutional networks, graph attention networks, and jumping knowledge networks, alongside recent distillation frameworks designed specifically for graphs. The consistency of the accuracy gains across datasets and architectures suggests that the benefit stems from the underlying principle of memory-augmented self-supervision rather than from tuning to any particular benchmark. The final student models also exhibited better generalization, retaining their performance advantages when evaluated beyond the training distribution.</p>
<p>Beyond the immediate results, the study points toward a broader shift in how researchers think about the training of graph-based models. The idea that a model&#8217;s own training history is a resource worth preserving and mining is a departure from the standard paradigm in which intermediate states are discarded the moment a new set of weights is computed. It resonates with a simple intuition: lessons from the past, properly curated, can guide better decisions in the present. For graph neural networks, whose vulnerability to overfitting and oversmoothing has limited the depth and reliability of the models practitioners can deploy, that intuition now has concrete, quantified support. As graph learning continues to expand into finance, chemistry, recommendation systems, and network security, techniques like Memory Augmented Self Distillation could become a standard component of the training pipeline, helping models not only to learn from data but to learn from themselves.</p>
<p><strong>Subject of Research:</strong> A memory-augmented self-distillation framework for improving the generalization of graph neural networks</p>
<p><strong>Article Title:</strong> Taking lessons from history: Memory Augmented Self Distillation for graph neural networks</p>
<p><strong>Article References:</strong> Taking lessons from history: Memory Augmented Self Distillation for graph neural networks. (n.d.). <a href="https://doi.org/10.1007/s10618-026-01258-z" rel="noopener noreferrer">https://doi.org/10.1007/s10618-026-01258-z</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10618-026-01258-z" rel="noopener noreferrer">10.1007/s10618-026-01258-z</a></p>
<p><strong>Keywords:</strong> graph neural networks, knowledge distillation, self-distillation, overfitting, oversmoothing, memory augmentation, node classification, regularization, deep learning, machine learning, Taking, lessons</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">198856</post-id>	</item>
		<item>
		<title>Managing Everyday Life in Double Exposure: Frail Older People’s Experiences During a Pandemic</title>
		<link>https://scienmag.com/managing-everyday-life-in-double-exposure-frail-older-peoples-experiences-during-a-pandemic/</link>
		
		<dc:creator><![CDATA[Kristina Jarvis]]></dc:creator>
		<pubDate>Thu, 03 Sep 2026 20:51:25 +0000</pubDate>
				<category><![CDATA[Medicine]]></category>
		<category><![CDATA[aging and resilience during COVID-19]]></category>
		<category><![CDATA[COVID-19 pandemic impact on frail older adults]]></category>
		<category><![CDATA[double]]></category>
		<category><![CDATA[double exposure effects on elderly during COVID-19]]></category>
		<category><![CDATA[during]]></category>
		<category><![CDATA[elderly adaptation to social distancing measures]]></category>
		<category><![CDATA[Everyday]]></category>
		<category><![CDATA[experiences]]></category>
		<category><![CDATA[experiences of frail seniors in quarantine]]></category>
		<category><![CDATA[Exposure]]></category>
		<category><![CDATA[Frail]]></category>
		<category><![CDATA[intersection of age-related vulnerabilities and pandemic restrictions]]></category>
		<category><![CDATA[lessons]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[managing]]></category>
		<category><![CDATA[mental health effects of COVID-19 on frail seniors]]></category>
		<category><![CDATA[occupational therapy insights on elderly pandemic experiences]]></category>
		<category><![CDATA[Older]]></category>
		<category><![CDATA[Pandemic]]></category>
		<category><![CDATA[people]]></category>
		<category><![CDATA[public health restrictions and elderly well-being]]></category>
		<category><![CDATA[qualitative study on older people's daily lives during pandemic]]></category>
		<category><![CDATA[Scientific Research]]></category>
		<category><![CDATA[social isolation and vulnerability in older adults]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=186739</guid>

					<description><![CDATA[When the Covid-19 pandemic swept through the world in early 2020, few groups felt its consequences as profoundly as frail older people. In Sweden, where people aged 70 and older were urged to restrict their social contacts and avoid gatherings,]]></description>
										<content:encoded><![CDATA[<p>When the Covid-19 pandemic swept through the world in early 2020, few groups felt its consequences as profoundly as frail older people. In Sweden, where people aged 70 and older were urged to restrict their social contacts and avoid gatherings, a new qualitative study has now documented in unusual depth how this advice played out in the daily lives of the most vulnerable members of that population. Published in the Scandinavian Journal of Occupational Therapy, the research reveals that frail older people experienced the pandemic not as a single burden but as a form of double exposure, in which their own age-related vulnerabilities intersected with external restrictions to constrain nearly every dimension of everyday life. The findings offer a technical and deeply human picture of what isolation does to people whose capacity to adapt is already diminished, and they carry lessons that extend far beyond any single public health crisis.</p>
<p>The study, conducted within the framework of the larger Swedish randomized controlled CGA Swed trial, set out to explore how frail older people managed everyday life in quarantine during the first year of the pandemic. Frailty, in the clinical sense, refers to a state of reduced bodily function, increased vulnerability, and diminished ability to handle stressors, often assessed through criteria such as general weakness, reduced endurance, weight loss, low physical activity, and slow walking speed. Because frailty markedly increases after the age of 80 and is associated with reduced quality of life, impaired cognition, and heightened risk of depression and pain, the researchers reasoned that this group would experience pandemic restrictions differently from healthier older adults. Yet, until now, in-depth knowledge about the consequences for frail older people specifically remained scarce, leaving a gap in both gerontology and occupational therapy research.</p>
<p>Twenty participants, aged 78 to 100 years and including 11 women and 9 men, were recruited through strategic sampling designed to capture heterogeneity in age, illness, functional ability, and dependence in activities of daily living. Almost all depended on home-help services, two lived in nursing homes, and seven rated their health as good while the rest described it as fair or poor. Because meeting in person posed an unacceptable infection risk, the researchers conducted semi-structured telephone interviews between October 2020 and February 2021, lasting from 11 to 33 minutes with a median of 23 minutes. Notably, recruitment and data collection never occurred digitally, an advantage the researchers highlight given that digital exclusion is itself a barrier for this population. The interviews were transcribed verbatim and analyzed using the qualitative content analysis method described by Graneheim and Lundman, in which meaning units are coded, grouped into categories, and distilled into themes, ultimately yielding one overarching theme and four subthemes.</p>
<p>That overarching theme, everyday life in double exposure, captures the central insight of the study: even before the pandemic, limitations already existed across multiple domains of these participants&#8217; lives as consequences of ageing and illness. Dependence on elder care services could negatively affect control over daily routines, and most participants had already adapted their leisure activities to a reduced capacity. The loss of friends to old age had narrowed social interactions, and reliance on relatives for support had heightened dependence. The restrictions then compounded every one of these pre-existing limitations. Rather than confronting the pandemic from a baseline of healthy autonomy, these older people faced a crisis that amplified vulnerabilities they were already struggling to manage, and their diminished capacity to generate new coping strategies made the disruption especially destabilizing.</p>
<p>The first subtheme, powerlessness under the restrictions, describes the tension between adhering to public health guidance and struggling with its suffocating impact. Participants spoke of the pandemic period as a lost year, a time of living unnaturally under a new set of rules about how to exist. The constraints heightened their awareness of life&#8217;s finite nature and intensified the desire to engage in meaningful occupations, while simultaneously undermining their sense of autonomy and occupational identity. For those in care homes, limitations were particularly severe, with periods when residents could not move through common areas or meet relatives, and when fellow residents died from the virus. One participant described a common room where only three grieving residents remained after many others had died at the same time. Relatives&#8217; opinions also shaped what activities participants felt permitted to pursue, an external control that reinforced feelings of limited agency and left some waiting for something to change without knowing how to influence their situation.</p>
<p>To manage this powerlessness, participants adopted a strategy the researchers termed acceptance and trust in the restrictions. Accepting the necessity and effectiveness of the measures became a way to cope with double exposure, allowing participants to focus on external factors such as vaccination prospects or changing seasons. Strict adherence, including avoiding all social contact, provided a sense of security for some, while others balanced precautions such as masks, sanitizers, and physical distance with continued essential activities. Healthcare was still sought when needed, and routine visits continued. Yet the study uncovered a novel and troubling finding: inconsistent adherence to safety measures among elder care staff, such as variable use of protective equipment, undermined participants&#8217; sense of security and even led some to cancel support services they clearly needed, despite having extensive care needs that limited that option. Over time, pandemic behaviors like distancing and abstaining from handshakes became routine, but adherence occasionally relaxed, with some participants prioritizing physical contact with close relatives over fear of infection, weighing emotional needs against physical risk.</p>
<p>The third subtheme, limitations in everyday life beyond control, documents how the pandemic profoundly restricted activities and deepened boredom. The inability to meet relatives, socialize with friends, or leave the home for everyday societal activities such as shopping, using public transport, or simply sitting on a bench was experienced as particularly restrictive. Shifting social and religious activities to digital platforms was often impossible due to limited technological skills or resources, meaning that lost participation also meant lost routines, health benefits, and intellectual engagement. Dependence on family members introduced further constraints, as feelings of being a burden inhibited participants from expressing their own needs. Practical frictions multiplied; one participant described the difficulty of coordinating a hairdresser visit with home care schedules that had themselves become unpredictable because of pandemic staffing uncertainties. One participant, asked what she did when spontaneous meetings were no longer possible, responded through tears that she simply lay down in bed and fell asleep, calling the situation awful.</p>
<p>Against these losses, the final subtheme, striving for meaningfulness in everyday life, reveals remarkable resilience. Participants adapted leisure activities to fit within restrictions, meeting friends outdoors when weather permitted, maintaining phone contact, and turning to solitary hobbies such as reading, puzzles, radio, crosswords, and television. Some expanded their use of smartphones and tablets to access social media or games, while others relied on relatives for basic digital tasks, but for many, technology remained inaccessible due to lack of access or competence. Crucially, even participants with digital tools did not perceive online interaction as a true replacement for in-person contact, consistent with prior research on occupational disruption. In care settings, the social interaction provided by care staff grew increasingly important, and some participants supported peers facing greater challenges, demonstrating solidarity, such as one resident who gave fruit to and talked with two women who died the very same night.</p>
<p>The authors conclude that frail older people may have limited capability to adapt to new circumstances, make active decisions to influence their situation, and proactively manage their health, which underscores the central role of occupational therapy in mitigating the impact of disrupted everyday life. Occupational therapists, the study argues, are uniquely positioned to identify how frailty constrains activity performance and participation, to co-create modified routines, to enable safe engagement in daily activities, to strengthen social participation through both digital and non-digital means, and to work with families and care staff to stabilize expectations around daily roles. Addressing digital exclusion, ensuring stable and predictable care environments, and strengthening continuity in primary care through designated contact persons emerge as concrete priorities. Perhaps most significantly, the mechanisms identified here, including reduced activity opportunities, disrupted roles, and weakened belonging, operate not only during pandemics but also in ordinary circumstances where illness, mobility limitations, or restricted social networks chronically isolate frail older people. The study&#8217;s findings thus serve as both a record of a lost year and a blueprint for sustaining leisure, connection, and wellbeing in future disruptive events.</p>
<p><strong>Subject of Research:</strong> Managing Everyday Life in Double Exposure: Frail Older People’s Experiences During a Pandemic</p>
<p><strong>Article Title:</strong> Managing Everyday Life in Double Exposure: Frail Older People’s Experiences During a Pandemic</p>
<p><strong>Article References:</strong> Sjöberg, K., Dahlin-Ivanoff, S., Wilhelmson, K., &amp; Andersson Hammar, I. (2026). Managing Everyday Life in Double Exposure: Frail Older People’s Experiences During a Pandemic. <em>Scandinavian Journal of Occupational Therapy, 33</em>(1), Article 1. <a href="https://doi.org/10.1007/s44474-026-00001-7" rel="noopener noreferrer">https://doi.org/10.1007/s44474-026-00001-7</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s44474-026-00001-7" rel="noopener noreferrer">10.1007/s44474-026-00001-7</a></p>
<p><strong>Keywords:</strong> Managing, Everyday, Life, Double, Exposure, Frail, Older, People, Experiences, During, Pandemic, scientific research</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">186739</post-id>	</item>
	</channel>
</rss>
