Interface Layer
-
- All Known Implementing Classes:
MaxPoolAggregatingLayer,MeanAggregatingLayer
public interface Layer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Aggregatoraggregator()default java.util.stream.LongStreamneighborhoodFunction(org.neo4j.gds.api.Graph graph, long nodeId)default longrandomState()org.neo4j.gds.ml.core.subgraph.NeighborhoodSamplersampler()intsampleSize()default java.util.List<org.neo4j.gds.ml.core.functions.Weights<? extends org.neo4j.gds.ml.core.tensor.Tensor<?>>>weights()
-
-
-
Method Detail
-
sampleSize
int sampleSize()
-
aggregator
Aggregator aggregator()
-
randomState
default long randomState()
-
sampler
org.neo4j.gds.ml.core.subgraph.NeighborhoodSampler sampler()
-
weights
default java.util.List<org.neo4j.gds.ml.core.functions.Weights<? extends org.neo4j.gds.ml.core.tensor.Tensor<?>>> weights()
-
neighborhoodFunction
default java.util.stream.LongStream neighborhoodFunction(org.neo4j.gds.api.Graph graph, long nodeId)
-
-