We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4dbb99 commit d4d7864Copy full SHA for d4d7864
mllib/src/main/scala/org/apache/spark/mllib/tree/model/Node.scala
@@ -55,6 +55,8 @@ class Node (
55
* build the left node and right nodes if not leaf
56
* @param nodes array of nodes
57
*/
58
+ @deprecated("build should no longer be used since trees are constructed on-the-fly in training",
59
+ "1.2.0")
60
def build(nodes: Array[Node]): Unit = {
61
logDebug("building node " + id + " at level " + Node.indexToLevel(id))
62
logDebug("id = " + id + ", split = " + split)
0 commit comments