Alternating Decision Tree Algorithm: Difference between revisions

From GM-RKB
Jump to navigation Jump to search
m (Text replacement - "([^\s])([\s]{1,7})\<P\>" to "$1 <P>")
m (Text replacement - "\<P\>([\s]{1,7})([^\s])" to "<P> $2")
 
Line 10: Line 10:
=== 2017 ===
=== 2017 ===
* (Wikipedia, 2017) ⇒ https://en.wikipedia.org/wiki/alternating_decision_tree Retrieved:2017-11-7.
* (Wikipedia, 2017) ⇒ https://en.wikipedia.org/wiki/alternating_decision_tree Retrieved:2017-11-7.
** An '''alternating decision tree''' (ADTree) is a [[machine learning method]] for classification. It generalizes [[Decision tree learning|decision trees]] and has connections to [[boosting (machine learning)|boosting]].        <P> An ADTree consists of an alternation of decision nodes, which specify a predicate condition, and prediction nodes, which contain a single number. An instance is classified by an ADTree by following all paths for which all decision nodes are true, and summing any prediction nodes that are traversed.
** An '''alternating decision tree''' (ADTree) is a [[machine learning method]] for classification. It generalizes [[Decision tree learning|decision trees]] and has connections to [[boosting (machine learning)|boosting]].        <P>       An ADTree consists of an alternation of decision nodes, which specify a predicate condition, and prediction nodes, which contain a single number. An instance is classified by an ADTree by following all paths for which all decision nodes are true, and summing any prediction nodes that are traversed.


----
----

Latest revision as of 23:01, 17 August 2021

An Alternating Decision Tree Algorithm is a decision tree algorithm that ...



References

2017

  • (Wikipedia, 2017) ⇒ https://en.wikipedia.org/wiki/alternating_decision_tree Retrieved:2017-11-7.
    • An alternating decision tree (ADTree) is a machine learning method for classification. It generalizes decision trees and has connections to boosting.

      An ADTree consists of an alternation of decision nodes, which specify a predicate condition, and prediction nodes, which contain a single number. An instance is classified by an ADTree by following all paths for which all decision nodes are true, and summing any prediction nodes that are traversed.