<?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>synthetic data generation &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/synthetic-data-generation/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Sat, 12 Sep 2026 19:02:47 +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>synthetic data generation &#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 Spherical Oversampling Method Tackles Multi-Class Imbalanced Data With Gaussian Clustering</title>
		<link>https://scienmag.com/new-spherical-oversampling-method-tackles-multi-class-imbalanced-data-with-gaussian-clustering/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Sat, 12 Sep 2026 19:02:47 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[addressing class imbalance in machine learning]]></category>
		<category><![CDATA[advanced data balancing methods]]></category>
		<category><![CDATA[class imbalance]]></category>
		<category><![CDATA[Cluster Computing]]></category>
		<category><![CDATA[cluster-based oversampling solutions]]></category>
		<category><![CDATA[decision tree]]></category>
		<category><![CDATA[Gaussian clustering for oversampling]]></category>
		<category><![CDATA[Gaussian Mixture Model]]></category>
		<category><![CDATA[handling skewed data distributions]]></category>
		<category><![CDATA[imbalanced dataset classification techniques]]></category>
		<category><![CDATA[improving model performance on rare classes]]></category>
		<category><![CDATA[k-nearest neighbors]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[Matthews Correlation Coefficient]]></category>
		<category><![CDATA[minority class data augmentation]]></category>
		<category><![CDATA[multi-class classification]]></category>
		<category><![CDATA[Multi-class imbalanced data]]></category>
		<category><![CDATA[new oversampling algorithms]]></category>
		<category><![CDATA[oversampling]]></category>
		<category><![CDATA[Random Forest]]></category>
		<category><![CDATA[resampling]]></category>
		<category><![CDATA[SMOTE]]></category>
		<category><![CDATA[spherical oversampling method]]></category>
		<category><![CDATA[synthetic data generation]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=197652</guid>

					<description><![CDATA[Researchers at Yantai University have developed SSAO, an adaptive oversampling method that uses Gaussian mixture model clustering and minimum enclosing spheres to generate faithful synthetic examples for multi-class imbalanced data.]]></description>
										<content:encoded><![CDATA[<p>Machine learning systems now sit at the heart of decisions that affect millions of people, from flagging fraudulent credit card transactions to detecting rare software defects and identifying uncommon diseases in medical scans. Yet many of these systems share a hidden weakness: the data they learn from is rarely balanced. In real-world datasets, some categories contain vast numbers of examples while others may include only a handful. When a classifier is trained on such skewed data, it naturally gravitates toward the majority classes, because doing so minimizes its overall error. The rare but often critical classes are systematically overlooked, and a model that appears highly accurate on paper may in fact fail precisely where it matters most. A new study published in Cluster Computing by Fengqi Guo and Qicheng Liu of Yantai University addresses this long-standing problem with a method that reshapes how synthetic training examples are generated for multi-class imbalanced datasets, offering a mathematically grounded alternative to the heuristic approaches that have dominated the field for two decades.</p>
<p>The problem of imbalanced classification has spawned an enormous literature, and researchers have generally attacked it from two directions. Cost-sensitive learning modifies the classifier itself, assigning higher penalties to mistakes on minority classes so that the learning algorithm is forced to pay attention to them. Resampling, by contrast, modifies the dataset, either by removing examples from overpopulated majority classes, a strategy known as undersampling, or by creating new examples for underpopulated minority classes, a strategy known as oversampling. Oversampling has proven especially popular because it preserves all of the original information rather than discarding data. Its most famous representative, the Synthetic Minority Over-sampling Technique, or SMOTE, introduced in 2002, generates new minority instances by linearly interpolating between existing neighbors. SMOTE and its many descendants have become standard tools, but they carry well-documented risks: interpolation can produce synthetic points that fall outside the true boundaries of the minority class, generate noise, and blur the overlap between neighboring classes, ultimately degrading rather than improving classifier performance.</p>
<p>Guo and Liu&#8217;s method, called Spherical Space Adaptive Oversampling, or SSAO, departs from the pairwise interpolation paradigm and instead builds on a probabilistic model of the data itself. The first stage of the algorithm applies a Gaussian Mixture Model to each minority class separately. A Gaussian Mixture Model is a probabilistic framework that represents a complex distribution as a weighted combination of several Gaussian components, each with its own mean vector and covariance matrix. Rather than assuming that a minority class forms a single compact blob in feature space, the mixture model can discover that the class is actually composed of several distinct sub-groups, each with its own shape, orientation and spread. This is crucial for real-world minority classes, which frequently arise from multiple underlying causes and therefore exhibit multimodal structure that simple distance-based methods cannot capture. By fitting the mixture model per class, SSAO obtains a principled decomposition of each scarce category into coherent clusters before any synthetic data is generated.</p>
<p>The second stage is where the method earns its name. For each Gaussian component identified in the clustering step, SSAO constructs the approximate minimum enclosing sphere of the cluster, the smallest hypersphere in feature space that contains the cluster&#8217;s instances. New synthetic samples are then generated strictly within this spherical region. The sphere acts as a geometric guardrail: because it tightly bounds an actual, coherent sub-population of the minority class, any synthetic point drawn inside it remains close to real data and is far less likely to stray into ambiguous or majority-dominated territory. This contrasts sharply with SMOTE-style interpolation, where the convex combinations of two arbitrary neighbors can cross class boundaries or land in sparse regions. By confining generation to data-derived spheres, SSAO preserves the original distributional characteristics of each minority class while still expanding the diversity and representativeness of the training set. The adaptive element lies in tailoring both the clustering and the generation region to the geometry of each class, rather than applying a uniform, one-size-fits-all resampling rule across the dataset.</p>
<p>To evaluate the approach, the authors conducted a demanding experimental campaign spanning fifteen multi-class imbalanced datasets. They benchmarked SSAO against eleven established resampling algorithms, covering the spectrum from classical techniques such as SMOTE and Tomek-link-based cleaning to newer clustering-based and adaptive oversampling schemes drawn from the recent literature. Crucially, the comparison was not tied to a single classifier. The resampled datasets were fed into three fundamentally different learning algorithms: Random Forest, an ensemble of decision trees known for robustness; k-Nearest Neighbors, a lazy learner that classifies each point by the labels of its closest neighbors; and Decision Tree, a single interpretable model. This breadth matters because a good oversampling method should improve learning across different inductive biases rather than being tuned to one particular model family.</p>
<p>The evaluation relied on three metrics chosen specifically because they resist the distortions that class imbalance imposes on naive accuracy. Balanced Accuracy, or BA, averages the per-class recall, ensuring that performance on rare classes counts as much as performance on common ones. The F-score combines precision and recall into a single harmonic mean, penalizing models that achieve high recall by recklessly over-predicting a class. The Matthews Correlation Coefficient, or MCC, is widely regarded as one of the most informative single-number summaries of classification quality, since it takes all four cells of the confusion matrix into account and returns a high score only when the classifier performs well across all classes simultaneously. Across this combination of fifteen datasets, eleven competing resampling methods, three classifiers, and three metrics, SSAO consistently delivered strong results, demonstrating excellent performance on multiple metrics and effectively improving the classifiers&#8217; ability to recognize each minority class.</p>
<p>The significance of this work extends beyond the leaderboard. The datasets used to validate SSAO reflect application domains where class imbalance is not an academic curiosity but a defining property of the data. Medical diagnosis datasets are dominated by healthy patients, with disease cases forming small minorities whose misclassification carries severe human cost. Fraud detection datasets contain overwhelmingly legitimate transactions, and the fraudulent ones that matter most are vanishingly rare. Software defect prediction datasets similarly concentrate defects in a small fraction of code modules. In each of these settings, the cost of missing a minority instance vastly exceeds the cost of a false alarm, and techniques like SSAO that directly strengthen minority-class representation during training can translate into tangible improvements in reliability, safety and financial protection.</p>
<p>Mathematically, the combination of Gaussian mixture clustering and minimum enclosing spheres offers a compelling middle ground between purely statistical and purely geometric resampling strategies. The mixture model provides a soft, probabilistic segmentation of minority classes that respects their internal multimodality, while the spherical generation region provides a deterministic geometric constraint that keeps synthetic samples faithful to observed data. Earlier model-based approaches, including recent work on GMM-driven resampling, have shown the promise of learning distributions before sampling, but SSAO&#8217;s explicit use of the enclosing sphere as the sampling domain is a distinctive refinement that directly addresses the boundary-violation problem that plagues interpolation methods. The strategy also echoes insights from constrained and noise-aware oversampling research, which has repeatedly found that the greatest gains come not from generating more synthetic data but from generating data in the right places.</p>
<p>The study, supported by the National Natural Science Foundation of China and the Shandong Provincial Natural Science Foundation, arrives at a moment when the machine learning community is scrutinizing oversampling more critically than ever, with recent review papers asking whether the technique should be retired altogether. Guo and Liu&#8217;s results push back against that skepticism, suggesting that the failures of oversampling often lie in crude generation strategies rather than in the resampling paradigm itself. For practitioners, SSAO offers a practical recipe: model each scarce class with a mixture of Gaussians, enclose each mode within its minimal sphere, and fill those spheres with synthetic instances that respect the class&#8217;s true shape. As imbalanced data continues to define problems in healthcare, cybersecurity and finance, methods that bring statistical rigor and geometric discipline to the generation of training examples may prove essential to building classifiers that serve every class, not just the loudest ones.</p>
<p><strong>Subject of Research:</strong> Adaptive oversampling based on Gaussian mixture model clustering for multi-class imbalanced data classification</p>
<p><strong>Article Title:</strong> A spherical space adaptive oversampling method based on gaussian mixture model clustering for multi-class imbalanced data</p>
<p><strong>Article References:</strong> A spherical space adaptive oversampling method based on gaussian mixture model clustering for multi-class imbalanced data. (n.d.). <a href="https://doi.org/10.1007/s10586-026-06555-2" rel="noopener noreferrer">https://doi.org/10.1007/s10586-026-06555-2</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10586-026-06555-2" rel="noopener noreferrer">10.1007/s10586-026-06555-2</a></p>
<p><strong>Keywords:</strong> class imbalance, oversampling, Gaussian mixture model, multi-class classification, SMOTE, resampling, machine learning, Random Forest, k-nearest neighbors, decision tree, Matthews Correlation Coefficient, Cluster Computing</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">197652</post-id>	</item>
	</channel>
</rss>
