Yahoo India Web Search

Search results

    • Image courtesy of zhuanlan.zhihu.com

      zhuanlan.zhihu.com

      • A decision tree is a flowchart-like structure used to make decisions or predictions. It consists of nodes representing decisions or tests on attributes, branches representing the outcome of these decisions, and leaf nodes representing final outcomes or predictions.
      www.geeksforgeeks.org/decision-tree/
  1. People also ask

  2. May 17, 2024 · A decision tree is a flowchart-like structure used to make decisions or predictions. It consists of nodes representing decisions or tests on attributes, branches representing the outcome of these decisions, and leaf nodes representing final outcomes or predictions.

    • 19 min
  3. Apr 18, 2024 · A decision tree is defined as a hierarchical tree-like structure used in data analysis and decision-making to model decisions and their potential consequences. Learn more about decision tree examples, model, advantages, analysis, and samples.

  4. A decision tree is a non-parametric supervised learning algorithm, which is utilized for both classification and regression tasks. It has a hierarchical, tree structure, which consists of a root node, branches, internal nodes and leaf nodes.

  5. 2 days ago · A Decision Tree consists of three basic components: 1) Root Node: This is where the decision-making process begins, representing the entire dataset. 2) Internal Nodes: Represent the various decision points or tests that lead to possible outcomes. 3) Leaf Nodes: These indicate the outcomes or classifications.

  6. A decision tree is a decision support hierarchical model that uses a tree-like model of decisions and their possible consequences, including chance event outcomes, resource costs, and utility. It is one way to display an algorithm that only contains conditional control statements.

  7. May 22, 2024 · Decision trees are a type of machine-learning algorithm that can be used for both classification and regression tasks. They work by learning simple decision rules inferred from the data features. These rules can then be used to predict the value of the target variable for new data samples.

  8. Decision Trees are a non-parametric supervised learning method used for both classification and regression tasks. The goal is to create a model that predicts the value of a target variable by learning simple decision rules inferred from the data features. The decision rules are generally in the form of if-then-else statements.