Uses of Interface
org.deeplearning4j.graph.iterator.GraphWalkIterator
-
Packages that use GraphWalkIterator Package Description org.deeplearning4j.graph.iterator org.deeplearning4j.graph.iterator.parallel org.deeplearning4j.graph.models.deepwalk -
-
Uses of GraphWalkIterator in org.deeplearning4j.graph.iterator
Classes in org.deeplearning4j.graph.iterator that implement GraphWalkIterator Modifier and Type Class Description class
RandomWalkIterator<V>
class
WeightedRandomWalkIterator<V>
-
Uses of GraphWalkIterator in org.deeplearning4j.graph.iterator.parallel
Methods in org.deeplearning4j.graph.iterator.parallel that return types with arguments of type GraphWalkIterator Modifier and Type Method Description List<GraphWalkIterator<V>>
GraphWalkIteratorProvider. getGraphWalkIterators(int numIterators)
Get a list of GraphWalkIterators.List<GraphWalkIterator<V>>
RandomWalkGraphIteratorProvider. getGraphWalkIterators(int numIterators)
List<GraphWalkIterator<V>>
WeightedRandomWalkGraphIteratorProvider. getGraphWalkIterators(int numIterators)
-
Uses of GraphWalkIterator in org.deeplearning4j.graph.models.deepwalk
Methods in org.deeplearning4j.graph.models.deepwalk with parameters of type GraphWalkIterator Modifier and Type Method Description void
DeepWalk. fit(GraphWalkIterator<V> iterator)
Fit the DeepWalk model using a single thread using a given GraphWalkIterator.
-