Giter Site home page Giter Site logo

decision-tree-project's Introduction

Decision Tree Classifier Parameters

The minimum weighted fraction of the sum total of weights (of all the input samples) required to be at a leaf node. Samples have equal weight when sample_weight is not provided. weights can be provided by permutation importance

Decision Tree Vocab

Root Node - It represents the entire population or sample and this further gets divided into two or more homogeneous sets. Splitting - It is a process of dividing a node into two or more sub-nodes. Decision Node - When a sub-node splits into further sub-nodes, then it is called a decision node. Leaf/ Terminal Node - Nodes do not split is called Leaf or Terminal node. Pruning - When we remove the sub-nodes of a decision node, this process is called pruning. You can say the opposite process of splitting. Branch / Sub-Tree - A subsection of the entire tree is called branch or sub-tree. Parent and Child Node - A node, which is divided into sub-nodes is called the parent node of sub-nodes whereas sub-nodes are the child of the parent node. Entropy - A decision tree is built top-down from a root node and involves partitioning the data into subsets that contain instances with similar values (homogeneous). ID 3 algorithm uses entropy to calculate the homogeneity of a sample. If the sample is completely homogeneous the entropy is zero and if the sample is equally divided it has an entropy of one. Information Gain - The information gain is based on the decrease in entropy after a dataset is split on an attribute. Constructing a decision tree is all about finding an attribute that returns the highest information gain (i.e., the most homogeneous branches). Internal Node - An internal node (also known as an inner node, inode for short, or branch node) is any node of a tree that has child nodes Branch - The lines connecting elements are called "branches".

by Leo Breiman https://link.springer.com/article/10.1023%2FA%3A1010933404324

decision-tree-project's People

Contributors

blakerosenhagen avatar

Watchers

 avatar  avatar

decision-tree-project's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.