Uses of Class
org.deeplearning4j.nn.layers.feedforward.autoencoder.recursive.Tree
-
Packages that use Tree Package Description org.deeplearning4j.nn.layers.feedforward.autoencoder.recursive -
-
Uses of Tree in org.deeplearning4j.nn.layers.feedforward.autoencoder.recursive
Methods in org.deeplearning4j.nn.layers.feedforward.autoencoder.recursive with type parameters of type Tree Modifier and Type Method Description <T extends Tree>
List<T>Tree. getLeaves()Gets the leaves of the tree.<T extends Tree>
List<T>Tree. getLeaves(List<T> list)Gets the leaves of the tree.Methods in org.deeplearning4j.nn.layers.feedforward.autoencoder.recursive that return Tree Modifier and Type Method Description TreeTree. ancestor(int height, Tree root)Returns the ancestor of the given treeTreeTree. clone()TreeTree. firstChild()TreeTree. lastChild()TreeTree. parent()TreeTree. parent(Tree root)Returns the parent of the passed in tree via traversalMethods in org.deeplearning4j.nn.layers.feedforward.autoencoder.recursive that return types with arguments of type Tree Modifier and Type Method Description List<Tree>Tree. children()List<Tree>Tree. getChildren()Methods in org.deeplearning4j.nn.layers.feedforward.autoencoder.recursive with parameters of type Tree Modifier and Type Method Description TreeTree. ancestor(int height, Tree root)Returns the ancestor of the given treeintTree. depth(Tree node)Returns the distance between this node and the specified subnodeTreeTree. parent(Tree root)Returns the parent of the passed in tree via traversalvoidTree. setParent(Tree parent)Method parameters in org.deeplearning4j.nn.layers.feedforward.autoencoder.recursive with type arguments of type Tree Modifier and Type Method Description voidTree. connect(List<Tree> children)Connects the given trees and sets the parents of the childrenConstructors in org.deeplearning4j.nn.layers.feedforward.autoencoder.recursive with parameters of type Tree Constructor Description Tree(Tree tree)Clone constructor (all but the children)Tree(Tree parent, List<String> tokens)
-