<?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>real-world dataset noise handling &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/real-world-dataset-noise-handling/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Sat, 26 Sep 2026 00:03:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.2</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>real-world dataset noise handling &#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>Green Learning Meets Global Attention to Tame Noisy Multi-Label Data</title>
		<link>https://scienmag.com/green-learning-meets-global-attention-to-tame-noisy-multi-label-data/</link>
		
		<dc:creator><![CDATA[Blake Davidson]]></dc:creator>
		<pubDate>Sat, 26 Sep 2026 00:03:47 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[attention mechanism]]></category>
		<category><![CDATA[disambiguation]]></category>
		<category><![CDATA[energy-efficient AI]]></category>
		<category><![CDATA[energy-efficient machine learning]]></category>
		<category><![CDATA[environmentally friendly AI development]]></category>
		<category><![CDATA[feature extraction]]></category>
		<category><![CDATA[global attention]]></category>
		<category><![CDATA[global attention mechanisms]]></category>
		<category><![CDATA[green learning]]></category>
		<category><![CDATA[interpretable AI frameworks]]></category>
		<category><![CDATA[interpretable machine learning]]></category>
		<category><![CDATA[label noise]]></category>
		<category><![CDATA[lightweight learning models]]></category>
		<category><![CDATA[low-carbon computing]]></category>
		<category><![CDATA[multi-label data annotation challenges]]></category>
		<category><![CDATA[noisy label disambiguation]]></category>
		<category><![CDATA[partial multi-label learning]]></category>
		<category><![CDATA[PixelHop++]]></category>
		<category><![CDATA[PixelHop++ architecture]]></category>
		<category><![CDATA[real-world dataset noise handling]]></category>
		<category><![CDATA[sustainable neural network design]]></category>
		<category><![CDATA[weakly supervised artificial intelligence]]></category>
		<category><![CDATA[weakly supervised learning]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=215505</guid>

					<description><![CDATA[Researchers have introduced PMGL-GAD, a framework that combines training-free green learning features with a global attention disambiguation module to solve partial multi-label learning efficiently and interpretably.]]></description>
										<content:encoded><![CDATA[<p>Machine learning has a dirty secret: the labels that teach it are often wrong, or at least incomplete. In real-world datasets, an image of a street scene may be tagged with car, pedestrian and traffic light, while the cyclist in the corner goes unrecorded. When every training example carries a candidate label set that contains the true labels but also a cloud of false ones, researchers call the task partial multi-label learning, and it is one of the most stubborn problems in weakly supervised artificial intelligence. A new study published in Artificial Intelligence Review by Jianhang Zhou, Ziyang Zhu, Qi Zhang and Jia Gu, affiliated with Shanghai University and the City University of Macau, proposes a framework that attacks this problem from an unusual direction: by making the learning process dramatically lighter, more interpretable and less energy-hungry, rather than simply bigger.</p>
<p>The framework, named Partial Multi-label Green Learning with Global Attention Disambiguation, or PMGL-GAD, is built on a premise that runs counter to the prevailing trend of ever-larger neural networks. Instead of relying on deep architectures trained end-to-end with backpropagation, the authors adopt a green learning architecture called PixelHop++ to construct features. Green learning is a paradigm that aims to achieve competitive accuracy with minimal computational cost, using feed-forward, training-free feature extraction and small, efficient classifiers. In PMGL-GAD, PixelHop++ builds multi-scale hierarchical features in a feed-forward manner, meaning the features are computed deterministically from the data itself rather than learned through expensive iterative optimization. This choice matters enormously in resource-constrained environments, where the energy budget of a data center, the battery of an edge device, or the carbon footprint of a training run is a hard constraint rather than an afterthought.</p>
<p>To understand why this is technically interesting, it helps to unpack what PixelHop++ actually does. The method draws on unsupervised dimension reduction and cascaded filtering: local patches of an image are transformed into compact feature representations, and successive stages aggregate information across progressively larger spatial neighborhoods, producing a hierarchy that mirrors the multi-scale reasoning of convolutional networks without any gradient descent. Because the feature extraction is training-free, the computational cost shifts away from the GPU-intensive loops of deep learning and toward lightweight linear algebra that can run on modest hardware. The trade-off has historically been discriminative power: features produced without task-specific training can be less finely tuned to the nuances of a particular classification problem. That is precisely the gap the new framework sets out to close.</p>
<p>The central innovation of PMGL-GAD is a module the authors call Global Attention Disambiguation, or GAD, which is inserted into the green learning pipeline to sharpen the features before label assignment. The GAD module constructs a cross-channel data subspace using global attention mechanisms combined with a learnable gating strategy. In practical terms, the module looks across all channels of the extracted feature representation simultaneously and learns to reweight them, amplifying the dimensions that help distinguish the true label from the false candidates and suppressing those that carry noise. Because this reweighting happens across labels rather than within a deep stack of layers, it can be achieved without deep network training, preserving the efficiency promise of the green learning foundation while recovering much of the discriminative capability that training-free features would otherwise lack.</p>
<p>Disambiguation is the heart of the partial multi-label problem. Given a candidate set of labels for each sample, the learner must decide which of them are genuine. Classical approaches to this problem often rely on iterative strategies, graph-based label propagation, or deep networks with carefully designed loss functions that push the model to identify the most plausible true labels. These methods can work well, but they inherit the costs and opacity of deep architectures. The GAD module takes a different route: it learns a disambiguated label subspace concurrently with the feature reweighting, so that the representation of the data and the representation of the labels are refined together. This joint optimization allows the framework to improve label assignment directly, using global context to resolve ambiguity that a purely local analysis would miss.</p>
<p>The word global in the module&#8217;s name is doing real technical work. Local attention or local filtering can only see a limited neighborhood of the feature space, which is a liability when a false label looks plausible in isolation but implausible in context. By building a cross-channel data subspace, the GAD module evaluates relationships across the entire feature representation at once, capturing correlations between channels that no single local window could reveal. The learnable gating strategy then acts as a soft selector, deciding how much of each reweighted component should flow into the final label decision. The result is a pipeline in which disambiguation is informed by the whole picture, yet the machinery performing that analysis remains small enough to be described, inspected and audited, a property that interpretability researchers value and that deep black-box models rarely offer.</p>
<p>According to the study, experimental results demonstrate that PMGL-GAD achieves competitive performance with significantly reduced complexity. That combination, matching the accuracy of heavier methods while cutting computational demands, is the framework&#8217;s headline contribution. In weakly supervised scenarios, where noisy candidate labels already make learning harder, practitioners often compensate by throwing more model capacity at the problem, which multiplies cost. The authors&#8217; results suggest that a well-designed disambiguation module on top of efficient, training-free features can recover much of that lost performance without the capacity escalation. The work was supported by the National Natural Science Foundation of China under grant number 62506224 and by the Science and Technology Development Fund of Macao under grant 0002/2024/RIA1, and it appears in the journal&#8217;s open access track, published on 3 September 2026 after acceptance on 10 August 2026.</p>
<p>The implications reach beyond the immediate benchmarks of partial multi-label learning. As the artificial intelligence industry confronts the energy costs of large-scale training, so-called low-carbon machine learning has moved from a niche concern to a design principle. Frameworks like PMGL-GAD illustrate a path in which efficiency and interpretability are engineered in from the start, rather than retrofitted. Training-free feature extraction means the pipeline can be deployed on hardware that could never accommodate a deep network, from embedded sensors to medical imaging workstations in underfunded clinics. The explicit, inspectable nature of the attention and gating stages means that when the model assigns a label, a practitioner can trace which feature channels and which label-space relationships drove the decision, a level of transparency that matters in domains such as healthcare, autonomous systems and content moderation, where a wrong label carries real consequences.</p>
<p>There are, of course, open questions. The green learning paradigm has historically been demonstrated most convincingly on image data, and extending training-free multi-scale feature extraction to text, audio or multimodal inputs remains an active research frontier. The balance between the expressiveness of a learnable attention module and the efficiency of the surrounding pipeline will need careful tuning as the framework meets larger and messier label spaces. And while the reported experiments show competitive performance, the ultimate test of any weakly supervised method is how gracefully it degrades as the proportion of false candidate labels grows, a stress test that future work will need to document in detail. The authors declare no competing interests, and the article is published under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International license, making the full technical description freely available to researchers who want to build on it.</p>
<p>What makes this study worth watching is the direction it points. For a decade, the dominant narrative in machine learning has been scale: more parameters, more data, more compute. Work like PMGL-GAD argues that in the messy, label-starved corners of the field, cleverness about structure, attention and disambiguation can substitute for brute force. If green learning architectures paired with global attention disambiguation continue to close the accuracy gap with deep networks, the next wave of practical artificial intelligence may be defined not by how large a model can be made, but by how little it needs to know, how little energy it consumes, and how clearly it can explain itself. For researchers wrestling with incomplete annotations, and for anyone concerned with the carbon ledger of modern AI, that is a proposition with genuine appeal.</p>
<p><strong>Subject of Research:</strong> Partial multi-label learning using a green learning framework with global attention-based label disambiguation</p>
<p><strong>Article Title:</strong> Partial multi-label green learning with global attention disambiguation</p>
<p><strong>Article References:</strong> Zhou, J., Zhu, Z., Zhang, Q., &amp; Gu, J. (2026). Partial multi-label green learning with global attention disambiguation. <em>Artificial Intelligence Review</em>. <a href="https://doi.org/10.1007/s10462-026-11685-5" rel="noopener noreferrer">https://doi.org/10.1007/s10462-026-11685-5</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10462-026-11685-5" rel="noopener noreferrer">10.1007/s10462-026-11685-5</a></p>
<p><strong>Keywords:</strong> green learning, partial multi-label learning, PixelHop++, global attention, disambiguation, weakly supervised learning, label noise, energy-efficient AI, interpretable machine learning, attention mechanism, low-carbon computing, feature extraction</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">215505</post-id>	</item>
	</channel>
</rss>
