• HOME
  • NEWS
  • EXPLORE
    • CAREER
      • Companies
      • Jobs
    • EVENTS
    • iGEM
      • News
      • Team
    • PHOTOS
    • VIDEO
    • WIKI
  • BLOG
  • COMMUNITY
    • FACEBOOK
    • INSTAGRAM
    • TWITTER
Tuesday, September 8, 2026
BIOENGINEER.ORG
No Result
View All Result
  • Login
  • HOME
  • NEWS
  • EXPLORE
    • CAREER
      • Companies
      • Jobs
        • Lecturer
        • PhD Studentship
        • Postdoc
        • Research Assistant
    • EVENTS
    • iGEM
      • News
      • Team
    • PHOTOS
    • VIDEO
    • WIKI
  • BLOG
  • COMMUNITY
    • FACEBOOK
    • INSTAGRAM
    • TWITTER
  • HOME
  • NEWS
  • EXPLORE
    • CAREER
      • Companies
      • Jobs
        • Lecturer
        • PhD Studentship
        • Postdoc
        • Research Assistant
    • EVENTS
    • iGEM
      • News
      • Team
    • PHOTOS
    • VIDEO
    • WIKI
  • BLOG
  • COMMUNITY
    • FACEBOOK
    • INSTAGRAM
    • TWITTER
No Result
View All Result
Bioengineer.org
No Result
View All Result
Home NEWS Science News Technology

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

Bioengineer by Bioengineer
September 8, 2026
in Technology
Reading Time: 6 mins read
0
Fuzzy β-covering attribute reduction via fuzzy entropy and cuckoo search
Share on FacebookShare on TwitterShare on LinkedinShare on RedditShare on Telegram

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
APA MLA Chicago

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/

Copy citation Download RIS

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

Share12Tweet7Share2ShareShareShare1

Related Posts

Why Deepfakes Spread: New Study Links Adoption to Usefulness and Fun

Why Deepfakes Spread: New Study Links Adoption to Usefulness and Fun

September 8, 2026
Graph-based social recommender suppresses redundant information for better suggestions

Graph-based social recommender suppresses redundant information for better suggestions

September 8, 2026

Federated Learning Spots Malicious Domain Names Across Heterogeneous IoT Data

September 8, 2026

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

September 8, 2026

POPULAR NEWS

  • Why Deepfakes Spread: New Study Links Adoption to Usefulness and Fun

    29 shares
    Share 12 Tweet 7
  • Graph-based social recommender suppresses redundant information for better suggestions

    29 shares
    Share 12 Tweet 7
  • Fuzzy β-covering attribute reduction via fuzzy entropy and cuckoo search

    29 shares
    Share 12 Tweet 7
  • Federated Learning Spots Malicious Domain Names Across Heterogeneous IoT Data

    29 shares
    Share 12 Tweet 7

About

We bring you the latest biotechnology news from best research centers and universities around the world. Check our website.

Follow us

Recent News

Why Deepfakes Spread: New Study Links Adoption to Usefulness and Fun

Graph-based social recommender suppresses redundant information for better suggestions

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

Subscribe to Blog via Email

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

Join 85 other subscribers
  • Contact Us

Bioengineer.org © Copyright 2023 All Rights Reserved.

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
  • Homepages
    • Home Page 1
    • Home Page 2
  • News
  • National
  • Business
  • Health
  • Lifestyle
  • Science

Bioengineer.org © Copyright 2023 All Rights Reserved.