AI-powered search & chat for Data / Computer Science Students

Learn more with these recommended learning resources

DECISION TREE

 Analytics Vidhya

In this Blog I will be writing about a widely used classification (machine learning) algorithm, that is, Decision Tree. Here I will explain about what is Decision Tree, Types of Decision Tree…

Read more at Analytics Vidhya

Decision Tree

 Towards Data Science

In our day-to-day life, we interact with various machine learning applications and use it without knowing it. The best example is buying something from any online shopping portal where we get several…...

Read more at Towards Data Science

Data Science : Decision Tree

 Analytics Vidhya

Decision Tree is supervised machine learning algorithm used for classification and regression problems. Classification deals with predicting class of discrete values like 0/1 or predicting if some…

Read more at Analytics Vidhya

Decision Tree 101!

 Analytics Vidhya

The decision tree is one of the tree-based algorithms in the machine learning domain. It is highly intuitive and easy to understand which makes it super useful in solving some of the classic machine…

Read more at Analytics Vidhya

Decision Tree

 Christophm Interpretable Machine Learning Book

Linear regression and logistic regression models fail in situations where the relationship between features and outcome is nonlinear or where features interact with each other. Time to shine for the d...

Read more at Christophm Interpretable Machine Learning Book

Under the Hood — Decision Tree

 Towards Data Science

This is the third article in a series of articles where we will understand the “under the hood” workings of various ML algorithms, using their base math equations. With so many optimized…

Read more at Towards Data Science

Decision Tree Algorithm..

 Analytics Vidhya

Decision tree is one of the popular machine learning algorithms which is the stepping stone to understand the ensemble techniques using trees. Also, Decision Tree algorithm is a hot topic in many of…

Read more at Analytics Vidhya

Decision Tree — Part 1

 Analytics Vidhya

What is a Decision tree? A decision tree is a supervised learning method with comparatively good accuracy and a self-explanatory model. The approach is Top-Down, and it is a Greedy algorithm. It can…

Read more at Analytics Vidhya

Machine Learning: Decision Trees

 Analytics Vidhya

This blog covers another interesting machine learning algorithm called Decision Trees and it’s mathematical implementation. At every point in our life, we make some decisions to proceed further…

Read more at Analytics Vidhya

All About Decision Tree

 Towards AI

In this article we will understand the Decision Tree by answering the following question: * What is a Decision Tree? * What is the core concept of a Decision Tree? * What are the terminologies used in...

Read more at Towards AI

A Quick Start With Decision Tree

 Analytics Vidhya

A Decision tree is the graphical illustration of all the various ways to make a decision based on specific conditions. These conditions are usually if-then statements or we can generally say it as…

Read more at Analytics Vidhya

All about Decision Tree Algorithms!

 Towards Data Science

The easiest way to understand this algorithm is to consider it a series of if-else statements with the highest priority decision nodes on top of the tree. Given a dataset, we, first of all, find an…

Read more at Towards Data Science

Decision Tree Machine Learning

 Analytics Vidhya

dec_tree: This creates a new instance of a decision tree. we list our labels as keys with values of either discrete or continuous. This gem implements ID3, which is an algorithm with the purpose of…

Read more at Analytics Vidhya

Decision Tree in Machine Learning

 Towards Data Science

A decision tree is a flowchart-like structure in which each internal node represents a test on a feature (e.g. whether a coin flip comes up heads or tails) , each leaf node represents a class label…

Read more at Towards Data Science

Machine Learning: Decision Tree Classification

 Analytics Vidhya

Most of us feel Decision Tree to be tough but, it’s one of the most powerful techniques in Machine Learning. It’s easy to implement and falls under Supervised Learning Techniques. As the name…

Read more at Analytics Vidhya

Decision Tree - For Beginners

 Analytics Vidhya

· A decision tree is a graphical representation of all possible solutions to a decision based on certain conditions. · Decision Trees are versatile machine learning algorithms that can perform both…

Read more at Analytics Vidhya

DECISION TREE IN PYTHON

 Analytics Vidhya

Decision Tree is one of the most fundamental algorithms for classification and regression in the Machine Learning world. But before proceeding with the algorithm, let’s first discuss the lifecycle of…...

Read more at Analytics Vidhya

Decision tree: Part 1/2

 Towards Data Science

Invented about 70 years ago, a decision tree is one of the oldest Machine Learning algorithms used today for predictive modeling. They may be one of the simplest ML algorithms to understand but don’t…...

Read more at Towards Data Science

A quick introduction to Machine Learning. Part-3 (Decision Tree)

 Towards AI

A quick Introduction to Machine Learning. Part-3 (Decision Tree) In this article, we can see how a decision tree is a useful machine-learning method. I recommend you to read part-1 and part-2 to have...

Read more at Towards AI

Decision Tree Fundamentals

 Towards Data Science

When talking about the decision trees, I always imagine a list of questions I would ask my girlfriend when she does not know what she wants for dinner: Do you want to eat something with the noodle…

Read more at Towards Data Science

Decision Tree Explained…

 Analytics Vidhya

Decision Trees (DTs) are non-parametric supervised learning method used for classification and regression. The goal is to create the model based on some decision rules from data features. It is also…

Read more at Analytics Vidhya

Decision tree: Part 2/2

 Towards Data Science

This post is second in the “Decision tree” series, the first post in this series develops an intuition about the decision trees and gives you an idea of where to draw a decision boundary. In this…

Read more at Towards Data Science

Decision Tree for Better Usage

 Towards Data Science

When there are a ton of materials about Decision Tree, the reason for writing this posting is to give a chance to take a different look at the topic. Exposed to diverse ways of understanding is an…

Read more at Towards Data Science

Binary Decision Trees

 Analytics Vidhya

Read more at Analytics Vidhya