Package | Description |
---|---|
org.deeplearning4j.graph.api | |
org.deeplearning4j.graph.iterator | |
org.deeplearning4j.graph.iterator.parallel |
Modifier and Type | Method and 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.
|
Constructor and 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.
|
Constructor and Description |
---|
RandomWalkGraphIteratorProvider(IGraph<V,?> graph,
int walkLength,
long seed,
NoEdgeHandling mode) |
WeightedRandomWalkGraphIteratorProvider(IGraph<V,? extends Number> graph,
int walkLength,
long seed,
NoEdgeHandling mode) |
Copyright © 2020. All rights reserved.