Uses of Class
org.deeplearning4j.graph.api.NoEdgeHandling
-
Packages that use NoEdgeHandling Package Description org.deeplearning4j.graph.api org.deeplearning4j.graph.iterator org.deeplearning4j.graph.iterator.parallel -
-
Uses of NoEdgeHandling in org.deeplearning4j.graph.api
Methods in org.deeplearning4j.graph.api that return NoEdgeHandling Modifier and Type Method Description static NoEdgeHandling
NoEdgeHandling. valueOf(String name)
Returns the enum constant of this type with the specified name.static NoEdgeHandling[]
NoEdgeHandling. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of NoEdgeHandling in org.deeplearning4j.graph.iterator
Constructors in org.deeplearning4j.graph.iterator with parameters of type NoEdgeHandling Constructor Description RandomWalkIterator(IGraph<V,?> graph, int walkLength, long rngSeed, NoEdgeHandling mode)
RandomWalkIterator(IGraph<V,?> graph, int walkLength, long rngSeed, NoEdgeHandling mode, int firstVertex, int lastVertex)
Constructor used to generate random walks starting at a subset of the vertices in the graph.WeightedRandomWalkIterator(IGraph<V,? extends Number> graph, int walkLength, long rngSeed, NoEdgeHandling mode)
WeightedRandomWalkIterator(IGraph<V,? extends Number> graph, int walkLength, long rngSeed, NoEdgeHandling mode, int firstVertex, int lastVertex)
Constructor used to generate random walks starting at a subset of the vertices in the graph. -
Uses of NoEdgeHandling in org.deeplearning4j.graph.iterator.parallel
Constructors in org.deeplearning4j.graph.iterator.parallel with parameters of type NoEdgeHandling Constructor Description RandomWalkGraphIteratorProvider(IGraph<V,?> graph, int walkLength, long seed, NoEdgeHandling mode)
WeightedRandomWalkGraphIteratorProvider(IGraph<V,? extends Number> graph, int walkLength, long seed, NoEdgeHandling mode)
-