<?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>benchmark testing of classification algorithms &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/benchmark-testing-of-classification-algorithms/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Sat, 12 Sep 2026 13:10:43 +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>benchmark testing of classification algorithms &#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 Fuzzy Machine Learning Model Tackles Imbalanced Data With Striking Accuracy</title>
		<link>https://scienmag.com/new-fuzzy-machine-learning-model-tackles-imbalanced-data-with-striking-accuracy/</link>
		
		<dc:creator><![CDATA[Teresa Odom]]></dc:creator>
		<pubDate>Sat, 12 Sep 2026 13:10:43 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[addressing minority class in imbalanced datasets]]></category>
		<category><![CDATA[benchmark testing of classification algorithms]]></category>
		<category><![CDATA[BreakHis dataset]]></category>
		<category><![CDATA[breast cancer]]></category>
		<category><![CDATA[class probability]]></category>
		<category><![CDATA[class probability models in machine learning]]></category>
		<category><![CDATA[classification]]></category>
		<category><![CDATA[CPLTSVM for handling rare event detection]]></category>
		<category><![CDATA[fault monitoring with imbalanced data]]></category>
		<category><![CDATA[fuzzy membership]]></category>
		<category><![CDATA[fuzzy twin support vector machine]]></category>
		<category><![CDATA[Imbalanced data classification in machine learning]]></category>
		<category><![CDATA[imbalanced datasets]]></category>
		<category><![CDATA[improvements in twin support vector machine models]]></category>
		<category><![CDATA[least squares]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[machine learning techniques for critical case detection]]></category>
		<category><![CDATA[medical diagnosis]]></category>
		<category><![CDATA[medical diagnosis and fraud detection applications]]></category>
		<category><![CDATA[polycentric fuzzy models]]></category>
		<category><![CDATA[polycentric membership]]></category>
		<category><![CDATA[support vector machine]]></category>
		<category><![CDATA[support vector machine advancements]]></category>
		<category><![CDATA[twin support vector machine]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=194747</guid>

					<description><![CDATA[Researchers at IIT Roorkee have developed a fuzzy twin support vector machine that uses polycentric memberships and class probabilities to outperform existing methods on imbalanced datasets, including breast cancer diagnosis.]]></description>
										<content:encoded><![CDATA[<p>Imbalanced data is one of the most stubborn problems in modern machine learning. Whenever a dataset contains far more examples of one class than another, standard classifiers tend to favor the majority class, quietly ignoring the rare but often critical cases. In medical diagnosis, fraud detection and fault monitoring, those rare cases are frequently the ones that matter most. A new study published in Knowledge and Information Systems by researchers at the Indian Institute of Technology Roorkee proposes a fresh attack on this problem: a class probability and polycentric fuzzy least squares twin support vector machine, abbreviated CPLTSVM, that consistently outperforms existing state-of-the-art methods across a broad suite of benchmark tests.</p>
<p>The work, led by Nikita Grewal and Yash Arora together with S. K. Gupta and Sanjeev Kumar, builds on the twin support vector machine, a widely recognized classification model first introduced as a faster, leaner cousin of the classical support vector machine. Rather than searching for a single separating hyperplane, the twin version constructs two nonparallel hyperplanes, one for each class, and assigns each point to whichever hyperplane it sits closer to. This structural difference typically makes training faster than the classical formulation, since each optimization problem involves the samples of only one class at a time. But the twin model has well-documented weaknesses: it is sensitive to noise and outliers, and when class sizes are unequal it can produce systematically biased decision boundaries that favor the dominant class.</p>
<p>The Roorkee team&#8217;s central insight is that not all samples deserve equal trust. In real datasets, some points sit comfortably in the heart of their class while others linger near the boundary or belong to scattered secondary clusters, and a few are outright errors. To capture this heterogeneity, CPLTSVM assigns each training sample a fuzzy membership weight derived from its proximity to the nearest class centers. Instead of assuming every class forms a single compact blob, the model adopts a polycentric view: each class may have several centers, reflecting the multi-cluster structure that naturally arises in high-dimensional data. Samples close to any center of their own class receive high membership values, meaning they exert strong influence on the learned hyperplane, while distant or structurally isolated points receive lower weights and therefore contribute less to the final decision rule. This mechanism embeds global structural information about the dataset directly into the training objective, something conventional support vector formulations ignore entirely.</p>
<p>The fuzzy weighting scheme draws on a long intellectual lineage. Fuzzy sets, introduced by Lotfi Zadeh in 1965, allow data points to belong to categories to intermediate degrees rather than in a binary fashion, and researchers have spent decades folding such gradations into kernel-based classifiers. Earlier fuzzy twin support vector machines have used information entropy, affinity measures and intuitionistic fuzzy memberships to dampen the effect of noisy points. What distinguishes the new approach is the combination of two complementary signals. The polycentric membership captures how representative a point is of its class structure, while a separate class probability estimate captures how confidently a point belongs to its assigned class at all.</p>
<p>That probability estimate comes from the k-nearest-neighbor technique, one of the oldest and most intuitive tools in pattern recognition. For each training sample, the model examines its closest neighbors and computes the fraction that share its label, yielding a local estimate of class membership probability. Points surrounded by neighbors of the same class earn high probability scores; points in mixed neighborhoods earn low ones. When these probabilities are folded into the fuzzy membership function, noisy samples and borderline outliers are automatically down-weighted, reducing their power to drag the decision boundary away from the true underlying structure. The result is a classifier that is robust by construction rather than by post-hoc correction.</p>
<p>Computational efficiency was a second design priority. Standard twin support vector machines solve two quadratic programming problems, which can be expensive on large datasets. By integrating the fuzzy membership weights into the least squares twin support vector machine formulation, which replaces the inequality constraints of the original with equality constraints and a squared loss, the authors convert training into the solution of systems of linear equations. This dramatically lowers the computational cost while preserving the benefits of the fuzzy weighting scheme, making the approach practical for the kinds of large, messy datasets where imbalance problems are most acute.</p>
<p>To evaluate the framework, the team ran experiments on twenty benchmark imbalanced datasets, testing both linear and nonlinear kernel versions of CPLTSVM against several state-of-the-art competitors. Performance was measured with three metrics suited to imbalanced settings: the area under the receiver operating characteristic curve, known as AUC, the geometric mean of class sensitivities, known as G-mean, and the F-measure, which balances precision and recall. The numbers are striking. The model achieved an average AUC of 89.71 percent with the linear kernel and 94.87 percent with the nonlinear kernel, and it consistently surpassed the existing techniques across the benchmark suite. The authors supplemented raw scores with comprehensive statistical analyses to confirm that the observed gains were significant rather than artifacts of dataset selection.</p>
<p>The researchers also demonstrated the model&#8217;s practical value on a task with real clinical stakes: breast cancer diagnosis from histopathological images using the BreakHis dataset. On this medical imaging benchmark, CPLTSVM delivered superior performance compared with baseline methods, suggesting the technique could support real-world classification pipelines where false negatives carry severe consequences. Because histopathological datasets are naturally imbalanced and noisy, with subtle visual differences between benign and malignant tissue, this application exercises exactly the weaknesses the new membership scheme was designed to address. The authors have made the source code publicly available on GitHub, allowing other researchers to reproduce the results and extend the framework.</p>
<p>The significance of the work extends beyond a single benchmark victory. Machine learning systems are increasingly deployed in settings where rare events dominate the consequences: detecting defective components in manufacturing lines, flagging fraudulent transactions, spotting early signals of disease, and identifying anomalies in wind turbine gearboxes, a domain where twin support vector machines have previously found application. Every one of these settings shares the same structural pathology that the Roorkee team targeted, and a classifier that resists both noise and imbalance without requiring delicate resampling or costly retraining could simplify deployment considerably. Compared with popular alternatives such as the SMOTE synthetic oversampling technique or cost-sensitive learning frameworks, which modify the data or the loss rather than the classifier&#8217;s view of structure, the fuzzy membership approach works within the learning algorithm itself, adjusting how much each sample matters based on where it sits in the geometry of the data.</p>
<p>There are, as with any method, avenues for future work. The polycentric membership depends on identifying class centers, and the k-nearest-neighbor probability estimation introduces a hyperparameter in the choice of k, questions of sensitivity that practitioners will want to probe. The evaluation here focuses on binary classification, the native territory of twin support vector machines, and extending the framework to multicategory problems, as earlier fuzzy proximal approaches have done, would broaden its reach. Still, the combination of strong empirical results, computational efficiency and demonstrated medical utility marks CPLTSVM as a notable advance in the ongoing effort to make classifiers trustworthy when the world refuses to hand us balanced data. As algorithms increasingly inform decisions about health, security and safety, techniques that give quiet, underrepresented samples their due weight are not merely academic refinements; they are prerequisites for reliable artificial intelligence.</p>
<p><strong>Subject of Research:</strong> A fuzzy least squares twin support vector machine using class probability and polycentric memberships to improve classification of imbalanced datasets</p>
<p><strong>Article Title:</strong> Class probability and polycentric fuzzy least squares twin support vector machine for imbalanced data</p>
<p><strong>Article References:</strong> Grewal, N., Arora, Y., Gupta, S. K., &amp; Kumar, S. (2026). Class probability and polycentric fuzzy least squares twin support vector machine for imbalanced data. <em>Knowledge and Information Systems, 68</em>(1), Article 259. <a href="https://doi.org/10.1007/s10115-026-02862-7" rel="noopener noreferrer">https://doi.org/10.1007/s10115-026-02862-7</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10115-026-02862-7" rel="noopener noreferrer">10.1007/s10115-026-02862-7</a></p>
<p><strong>Keywords:</strong> imbalanced datasets, support vector machine, twin support vector machine, fuzzy membership, polycentric membership, class probability, least squares, machine learning, medical diagnosis, breast cancer, BreakHis dataset, classification</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">194747</post-id>	</item>
	</channel>
</rss>
