MACHINE LEARNING

APPLICATION OF SUPERVISED LEARNING

MACHINE LEARNINGHARD QUESTIONS

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
what is the use of this code? tree.plot ____ tree(clf)
A
We can visualize the tree using tree.plot ____ tree
B
We can classify the tree using tree.plot ____ tree
C
We can plot the tree using tree.plot ____ tree
D
all of these
Explanation: 

Detailed explanation-1: -Visualizing Decision Trees You can use Scikit-learn’s export graphviz function for display the tree within a Jupyter notebook. For plotting the tree, you also need to install graphviz and pydotplus.

Detailed explanation-2: -Visualizing the decision trees can be really simple using a combination of scikit-learn and matplotlib . However, there is a nice library called dtreeviz, which brings much more to the table and creates visualizations that are not only prettier but also convey more information about the decision process.

Detailed explanation-3: -Decision node feature versus target value distributions: Decision node feature name and feature split value: Leaf node purity that affects the prediction confidence: Leaf node prediction value: Numbers of samples in decision nodes: Numbers of samples in leaf nodes: More items

There is 1 question to complete.