sklearn.tree Module: Difference between revisions

From GM-RKB
Jump to navigation Jump to search
m (Remove links to pages that are actually redirects to this page.)
m (Remove links to pages that are actually redirects to this page.)
Line 1: Line 1:
An [[sklearn.tree Module]] is an [[sklearn module]] of [[decision-tree learning system]]s.
An [[sklearn.tree Module]] is an [[sklearn module]] of [[decision-tree learning system]]s.
* <B>AKA:</B> [[Scikit-Learn Decision-Tree Class]].
* <B>AKA:</B> [[sklearn.tree Module|Scikit-Learn Decision-Tree Class]].
* <B>Context:</B>
* <B>Context:</B>
** It require to call/select a [[Decision Tree Learning System]] :
** It require to call/select a [[Decision Tree Learning System]] :

Revision as of 20:45, 23 December 2019

An sklearn.tree Module is an sklearn module of decision-tree learning systems.



References

2017

User guide: See the Decision Trees section for further details.
tree.DecisionTreeClassifier([criterion, …]) 	A decision tree classifier.
tree.DecisionTreeRegressor([criterion, …]) 	A decision tree regressor.
tree.ExtraTreeClassifier([criterion, …]) 	An extremely randomized tree classifier.
tree.ExtraTreeRegressor([criterion, …]) 	An extremely randomized tree regressor.
tree.export_graphviz(decision_tree[, …]) 	Export a decision tree in DOT format.