Package org.neo4j.gds.traversal
Interface RandomWalkBaseConfig
-
- All Superinterfaces:
org.neo4j.gds.config.AlgoBaseConfig
,org.neo4j.gds.config.BaseConfig
,org.neo4j.gds.config.ConcurrencyConfig
,org.neo4j.gds.config.JobIdConfig
,org.neo4j.gds.config.RandomSeedConfig
,org.neo4j.gds.config.RelationshipWeightConfig
,org.neo4j.gds.config.SourceNodesConfig
,org.neo4j.gds.config.ToMapConvertible
- All Known Subinterfaces:
Node2VecBaseConfig
,Node2VecMutateConfig
,Node2VecStreamConfig
,Node2VecWriteConfig
,RandomWalkStatsConfig
,RandomWalkStreamConfig
public interface RandomWalkBaseConfig extends org.neo4j.gds.config.AlgoBaseConfig, org.neo4j.gds.config.RelationshipWeightConfig, org.neo4j.gds.config.RandomSeedConfig, org.neo4j.gds.config.SourceNodesConfig
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default double
inOutFactor()
default double
returnFactor()
default int
walkBufferSize()
default int
walkLength()
default int
walksPerNode()
-
Methods inherited from interface org.neo4j.gds.config.AlgoBaseConfig
graphStoreValidation, internalRelationshipTypes, nodeLabelIdentifiers, nodeLabels, relationshipTypes, validateNodeLabels, validateRelationshipTypes
-
Methods inherited from interface org.neo4j.gds.config.BaseConfig
configKeys, logProgress, sudo, toMap, usernameOverride
-
Methods inherited from interface org.neo4j.gds.config.ConcurrencyConfig
concurrency, minBatchSize, validateConcurrency
-
-
-
-
Method Detail
-
walkLength
@Default @IntegerRange(min=2) default int walkLength()
-
walksPerNode
@Default @IntegerRange(min=1) default int walksPerNode()
-
walkBufferSize
@Default @IntegerRange(min=1) default int walkBufferSize()
-
inOutFactor
@Default @DoubleRange(min=0.0) default double inOutFactor()
-
returnFactor
@Default @DoubleRange(min=0.0) default double returnFactor()
-
-