Interface LayerConfig
-
public interface LayerConfig
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description ActivationFunctionactivationFunction()Aggregator.AggregatorTypeaggregatorType()java.util.Optional<java.lang.Integer>bias()static org.neo4j.gds.embeddings.graphsage.ImmutableLayerConfig.Builderbuilder()intcols()longrandomSeed()introws()intsampleSize()
-
-
-
Method Detail
-
rows
int rows()
-
cols
int cols()
-
sampleSize
int sampleSize()
-
randomSeed
long randomSeed()
-
bias
java.util.Optional<java.lang.Integer> bias()
-
aggregatorType
Aggregator.AggregatorType aggregatorType()
-
activationFunction
ActivationFunction activationFunction()
-
builder
static org.neo4j.gds.embeddings.graphsage.ImmutableLayerConfig.Builder builder()
-
-