Tuesday, September 8, 2026
Science
No Result
View All Result
  • Login
  • HOME
  • SCIENCE NEWS
  • CONTACT US
  • HOME
  • SCIENCE NEWS
  • CONTACT US
No Result
View All Result
Scienmag
No Result
View All Result
Home Science News Technology and Engineering

Fuzzy β-covering attribute reduction via fuzzy entropy and cuckoo search

September 8, 2026
in Technology and Engineering
Denise Maddox
By Denise Maddox Scienmag Editorial Profile - Mechanical Engineering
Reading Time: 5 mins read
0
Fuzzy β-covering attribute reduction via fuzzy entropy and cuckoo search

Fuzzy β-covering attribute reduction via fuzzy entropy and cuckoo search

65
SHARES
587
VIEWS
Share on FacebookShare on Twitter
ADVERTISEMENT

Researchers in China have unveiled a new framework for stripping away redundant information from messy, real-world datasets, combining the mathematics of fuzzy coverings with the foraging behavior of cuckoos. The work, published in the International Journal of Machine Learning and Cybernetics, tackles one of the most persistent headaches in machine learning: how to identify the smallest set of attributes that preserves a dataset’s ability to classify examples accurately, even when that dataset mixes numerical measurements, categorical labels and other heterogeneous data types in a single table.

The problem the team addresses is known as attribute reduction, a close cousin of feature selection. In classical rough set theory, introduced by the Polish mathematician Zdzisław Pawlak in 1982, researchers approximate uncertain concepts using pairs of crisp sets derived from equivalence relations. That classical machinery, however, assumes data can be cleanly partitioned, an assumption that collapses when faced with hybrid data containing continuous, discrete and symbolic attributes simultaneously. Successive extensions, from fuzzy rough sets to covering-based rough sets, have tried to relax these assumptions, and the fuzzy β covering rough set model has emerged as one of the more flexible tools, capable of representing uncertainty and fuzziness by letting objects belong to approximation neighborhoods only partially and to varying degrees.

The new study, authored by Yu Jin and Guxia Tan of Guangdong Technology College, Ke Zhang of Hebei University of Engineering Science, and Xiaopeng Cai of Wuhan University of Technology, builds a complete reduction pipeline on top of this model. The first step is to convert raw hybrid data into a structure the researchers call a fuzzy β covering decision information system. To do this, they deploy a distance function that quantifies how similar or different any two objects in the dataset are, accounting for the mixed nature of the attributes. Objects that lie close together under this distance measure are gathered into fuzzy coverings, collections of overlapping fuzzy sets in which membership is a matter of degree rather than an all-or-nothing affair. The parameter β governs how generous these neighborhoods are, effectively controlling the granularity at which the data is viewed.

Once the covering structure is in place, the authors define what they term fuzzy conditional information entropy within the resulting decision system. Information entropy, in the tradition of Shannon, measures the uncertainty or disorder of a distribution; here, the concept is fuzzified so that it gauges the classification power of any candidate subset of attributes. A subset whose entropy is low, in the appropriate sense, does a good job of discriminating between decision classes, because knowing those attributes leaves little ambiguity about the class label. The entropy thus serves as the evaluation function for attribute reduction: the goal is to find a minimal subset of attributes whose entropy matches that of the full attribute set, meaning nothing essential has been thrown away.

Computing such entropy directly can be expensive, especially on large datasets, so the team derived a matrix-based formulation. By representing the fuzzy covering relations and the decision information as matrices, the entropy of any attribute subset can be calculated through matrix operations rather than element-by-element loops over object pairs. This algebraic shortcut matters in practice, because attribute reduction algorithms typically evaluate the entropy function hundreds or thousands of times during a single search, and any constant-factor speedup in the evaluation multiplies across the entire run.

With the evaluation function in hand, the researchers designed two distinct reduction algorithms. The first uses a greedy search strategy, the workhorse of classical rough set reduction. In greedy reduction, the algorithm starts with an empty set and repeatedly adds the attribute that yields the greatest decrease in fuzzy conditional information entropy, stopping when adding further attributes no longer improves the measure. Greedy methods are fast and deterministic, but they can be trapped by locally good choices that prevent discovery of the globally optimal subset, a hazard familiar to anyone who has wrestled with the combinatorial explosion of possible attribute combinations.

To escape those local traps, the second algorithm turns to swarm intelligence, specifically the cuckoo search algorithm. Inspired by the brood parasitism of certain cuckoo species, which lay their eggs in the nests of other birds, cuckoo search treats each candidate attribute subset as an egg laid in a random location of the search space. Solutions are improved through Lévy flights, a class of random walks whose step lengths follow a heavy-tailed power-law distribution, producing a mixture of short local hops and occasional long-distance jumps. This combination of local exploitation and global exploration, first formalized by Xin-She Yang and Suash Deb in 2009, has proven remarkably effective on difficult optimization problems. In the reduction setting, each cuckoo position encodes a binary selection vector over the attributes, and the fuzzy conditional information entropy guides the flock toward subsets that are both small and informative.

The team put both algorithms through their paces in experiments benchmarked against nine existing state-of-the-art attribute reduction methods. Performance was assessed with two standard metrics, classification accuracy and the F1 score, the harmonic mean of precision and recall, evaluated across multiple datasets and multiple classifiers. The results showed that both proposed algorithms were effective, with the cuckoo search variant in particular achieving competitive classification performance on the evaluated datasets and classifiers, generally matching or exceeding the nine comparison methods while selecting more compact attribute subsets. The authors also subjected their results to statistical testing, drawing on classical nonparametric tools such as the Friedman test for comparing multiple algorithms across datasets and Dunn’s procedure for post hoc multiple comparisons, lending the performance claims a measure of rigor beyond raw score tables.

The significance of the work lies in the pairing of a modern uncertainty model with an efficient optimization engine. Fuzzy β covering rough sets have attracted growing attention because they generalize several earlier frameworks: covering rough sets, which allow overlapping approximation blocks instead of partitions, and fuzzy rough sets, which tolerate graded membership, are both subsumed as special cases. Previous studies have applied hypergraphs, neighborhood relations and composite measures to reduction within these models, and ant colony optimization and particle swarm methods have been tried on related problems. What distinguishes the present contribution is the introduction of fuzzy conditional information entropy as the fitness landscape for a cuckoo search over fuzzy β coverings, together with the matrix formulation that makes repeated evaluation tractable.

For practitioners, the implications are straightforward. High-dimensional datasets in medicine, finance, sensor networks and text mining routinely contain attributes that are redundant, noisy or irrelevant, and training classifiers on such bloated feature spaces inflates computation, degrades generalization and obscures interpretation. A reduction method that handles hybrid data natively, without forcing premature discretization of continuous values or crude coding of categorical ones, preserves more of the original information structure. The matrix-based entropy computation lowers the computational barrier, while the swarm-based search improves the odds of finding near-optimal subsets in spaces too large for exhaustive evaluation.

The research was supported by the Guangdong Provincial Association of Higher Education through its “15th Five-Year Plan” higher education research and teaching reform projects. The authors note that future directions may include extending the framework to dynamic and incremental settings, where data arrives in streams and reductions must be updated rather than recomputed, as well as exploring alternative swarm strategies and multi-objective formulations that balance subset size against classification performance more explicitly. For now, the study offers a concrete, tested recipe for making fuzzy rough set reduction practical on the mixed-type data that dominates applied machine learning, and another demonstration that ideas borrowed from the behavior of birds and insects can sharpen the cutting edge of data science.

Subject of Research: Attribute reduction for hybrid data using fuzzy β covering rough sets, fuzzy conditional information entropy, matrix operations and the cuckoo search algorithm.

Subject of Research: Technology and Engineering

Article Title: Fuzzy β covering-driven attribute reduction for hybrid data via fuzzy conditional information entropy using matrix operation and cuckoo search algorithm

Article References: Jin, Y., Tan, G., Zhang, K., & Cai, X. (2026). Fuzzy $$beta $$ covering-driven attribute reduction for hybrid data via fuzzy conditional information entropy using matrix operation and cuckoo search algorithm. International Journal of Machine Learning and Cybernetics, 17(9), Article 453. https://doi.org/10.1007/s13042-026-03280-5

Image Credits: AI Generated

DOI: 10.1007/s13042-026-03280-5

Keywords: attribute reduction, hybrid data, fuzzy β covering, rough sets, fuzzy conditional information entropy, cuckoo search, swarm intelligence, matrix operation, feature selection, classification accuracy

Cite Scienmag News

Denise Maddox. (September 8, 2026). Fuzzy β-covering attribute reduction via fuzzy entropy and cuckoo search. Scienmag. https://scienmag.com/fuzzy-%ce%b2-covering-attribute-reduction-via-fuzzy-entropy-and-cuckoo-search/

Denise Maddox. "Fuzzy β-covering attribute reduction via fuzzy entropy and cuckoo search." Scienmag, 8 September 2026, https://scienmag.com/fuzzy-%ce%b2-covering-attribute-reduction-via-fuzzy-entropy-and-cuckoo-search/. Accessed 8 September 2026.

Denise Maddox. "Fuzzy β-covering attribute reduction via fuzzy entropy and cuckoo search." Scienmag. September 8, 2026. https://scienmag.com/fuzzy-%ce%b2-covering-attribute-reduction-via-fuzzy-entropy-and-cuckoo-search/

Tags: attribute reduction in heterogeneous datasetsattribute reduction in machine learningcovering-based rough setscuckoo search optimization algorithmfeature selection with fuzzy coveringsfuzzy covering approximation methodsfuzzy entropy in data analysisfuzzy entropy in machine learningfuzzy rough set theoryfuzzy rough sets for uncertain datafuzzy β-covering attribute reductionhandling heterogeneous data typeshandling mixed data types in classificationhybrid data classification techniqueshybrid data feature selectionhybrid dataset feature selectionmachine learning feature selection techniquesmetaheuristic algorithms for feature selectionnature-inspired optimization in data preprocessingreducing redundant information in datasetsrough set theory for data analysisuncertainty modeling in data mining
Share26Tweet16
Previous Post

A survey and comparison of recommender system datasets

Next Post

Routing Strategies for Secure Key Exchange in Quantum Networks: A Survey

Related Posts

Routing Strategies for Secure Key Exchange in Quantum Networks: A Survey
Technology and Engineering

Routing Strategies for Secure Key Exchange in Quantum Networks: A Survey

September 8, 2026
A survey and comparison of recommender system datasets
Technology and Engineering

A survey and comparison of recommender system datasets

September 8, 2026
Geometry-Aware Transformer Improves UAV-Ground Visual Tracking
Technology and Engineering

Geometry-Aware Transformer Improves UAV-Ground Visual Tracking

September 8, 2026
Hybrid diffusion-routing models capture long-range knee contact mechanics
Technology and Engineering

Hybrid diffusion-routing models capture long-range knee contact mechanics

September 8, 2026
Virtual histology staining moves closer to standardized clinical use
Technology and Engineering

Virtual histology staining moves closer to standardized clinical use

September 8, 2026
Dry ice and carbonation curing compared for concrete strength and durability
Technology and Engineering

Dry ice and carbonation curing compared for concrete strength and durability

September 8, 2026
Next Post
Routing Strategies for Secure Key Exchange in Quantum Networks: A Survey

Routing Strategies for Secure Key Exchange in Quantum Networks: A Survey

  • Mothers who receive childcare support from maternal grandparents show more optimized

    Mothers who receive childcare support from maternal grandparents show more parental warmth, finds NTU Singapore study

    27656 shares
    Share 11059 Tweet 6912
  • University of Seville Breaks 120-Year-Old Mystery, Revises a Key Einstein Concept

    1061 shares
    Share 424 Tweet 265
  • Bee body mass, pathogens and local climate influence heat tolerance

    682 shares
    Share 273 Tweet 171
  • Researchers record first-ever images and data of a shark experiencing a boat strike

    546 shares
    Share 218 Tweet 137
  • Groundbreaking Clinical Trial Reveals Lubiprostone Enhances Kidney Function

    531 shares
    Share 212 Tweet 133
Science

Embark on a thrilling journey of discovery with Scienmag.com—your ultimate source for cutting-edge breakthroughs. Immerse yourself in a world where curiosity knows no limits and tomorrow’s possibilities become today’s reality!

RECENT NEWS

  • Routing Strategies for Secure Key Exchange in Quantum Networks: A Survey
  • Fuzzy β-covering attribute reduction via fuzzy entropy and cuckoo search
  • A survey and comparison of recommender system datasets
  • Geometry-Aware Transformer Improves UAV-Ground Visual Tracking

Categories

  • Agriculture
  • Anthropology
  • Archaeology
  • Athmospheric
  • Biology
  • Biotechnology
  • Blog
  • Bussines
  • Cancer
  • Chemistry
  • Climate
  • Earth Science
  • Editorial Policy
  • Marine
  • Mathematics
  • Medicine
  • Pediatry
  • Policy
  • Psychology & Psychiatry
  • Science Education
  • Social Science
  • Space
  • Technology and Engineering

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 5,151 other subscribers

© 2025 Scienmag - Science Magazine

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • HOME
  • SCIENCE NEWS
  • CONTACT US

© 2025 Scienmag - Science Magazine

Discover more from Science

Subscribe now to keep reading and get access to the full archive.

Continue reading