Interface Aggregator
-
- All Known Implementing Classes:
MaxPoolingAggregator,MeanAggregator
public interface Aggregator
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAggregator.AggregatorType
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActivationFunctionactivationFunction()org.neo4j.gds.ml.core.Variable<org.neo4j.gds.ml.core.tensor.Matrix>aggregate(org.neo4j.gds.ml.core.Variable<org.neo4j.gds.ml.core.tensor.Matrix> previousLayerRepresentations, org.neo4j.gds.ml.core.subgraph.SubGraph subGraph)Aggregator.AggregatorTypetype()java.util.List<org.neo4j.gds.ml.core.functions.Weights<? extends org.neo4j.gds.ml.core.tensor.Tensor<?>>>weights()java.util.List<org.neo4j.gds.ml.core.functions.Weights<? extends org.neo4j.gds.ml.core.tensor.Tensor<?>>>weightsWithoutBias()
-
-
-
Method Detail
-
aggregate
org.neo4j.gds.ml.core.Variable<org.neo4j.gds.ml.core.tensor.Matrix> aggregate(org.neo4j.gds.ml.core.Variable<org.neo4j.gds.ml.core.tensor.Matrix> previousLayerRepresentations, org.neo4j.gds.ml.core.subgraph.SubGraph subGraph)
-
weights
java.util.List<org.neo4j.gds.ml.core.functions.Weights<? extends org.neo4j.gds.ml.core.tensor.Tensor<?>>> weights()
-
weightsWithoutBias
java.util.List<org.neo4j.gds.ml.core.functions.Weights<? extends org.neo4j.gds.ml.core.tensor.Tensor<?>>> weightsWithoutBias()
-
type
Aggregator.AggregatorType type()
-
activationFunction
ActivationFunction activationFunction()
-
-