Visualize or Print Decision Tree Algorithm Model

As a machine learning engineer you may have created the Decision Tree Model, but have you ever tried to visualize it. If not , this is the post for you. In this post we will learn how to Visualize or Print Decision Tree Model in Jupyter notebook. Let us import the required library: After that…

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