Decision Tree Machine Learning Algorithm from Scratch in Python

Decision Tree Machine Learning Algorithm From Scratch in Python is a short video course to discuss an overview of the Decision Tree Machine Learning Algorithm. In this video different types of concepts related to Decision Tree Algorithms such as Entropy and Information Gain are discussed. Finally, the algorithm is implemented, step by step, in Python…

Read More

Decision Tree Classification in Python in 10 lines

Decision tree machine learning algorithm can be used to solve not only regression but also classification problems. This algorithm creates a tree like conditional control statements to create its model hence it is named as decision tree. In this post we will be implementing a simple decision tree classification model using python and sklearn. First…

Read More