About 368,000 results
Open links in new tab
  1. C4.5 algorithm - Wikipedia

    C4.5 is an extension of Quinlan's earlier ID3 algorithm. The decision trees generated by C4.5 can be used for classification, and for this reason, C4.5 is often referred to as a statistical classifier.

  2. An Algorithm for Building Decision Trees C4.5 is a computer program for inducing classification rules in the form of decision trees from a set of given instances

  3. Step-by-Step Guide to Building Decision Trees with C4.5

    Jun 2, 2025 · In this guide, we’ll walk you through how to build a decision tree from scratch using C4.5. By the end, you’ll know exactly how to use this algorithm to make better decisions with …

  4. Building Classification Models: ID3 and C4.5 - Temple University

    Here is the decision tree, just as produced by c4.5, for the voting example introduced earlier.

  5. C4.5 Algorithm in Data Mining – T4Tutorials.com

    Dec 26, 2023 · C4.5 is a data mining algorithm and it is used to generate a decision tree. The C4.5 algorithm is very helpful to generate a useful decision, that is based on a sample of data.

  6. c45-decision-tree · PyPI

    Jul 12, 2023 · C4.5 is an algorithm used to generate a decision tree developed by Ross Quinlan. C4.5 is an extension of Quinlan's earlier ID3 algorithm. The decision trees generated by C4.5 …

  7. Truly Understanding Decision Trees and the C4.5 Algorithm ... - CodeProject

    Dec 21, 2023 · Visit this link if you wish to comprehend the IC3 algorithm in action and learn how to implement the C4.5 algorithm. Alternatively, you can download the enclosed source code to …

  8. Research on parameter selection and optimization of C4.5 algorithm ...

    Aug 11, 2025 · Given that decision tree algorithm inherently possesses excellent interpretability, this paper studies the hyperparameter selection optimization of the C4.5 algorithm.

  9. C4.5 Decision Tree: A Comprehensive Guide - betanet.net

    Known for its robustness and efficiency, the C4.5 algorithm has become a standard choice for data analysts and data scientists. In this article, we will explore the working mechanisms of the …

  10. A python implementation of C4.5 algorithm by R. Quinlan

    C4.5 is an algorithm developed by John Ross Quinlan that creates decision tress. A decision tree is a tool that is used for classification in machine learning, which uses a tree structure where …