Package | Description |
---|---|
oracle.pgx.api |
This package contains the main Java APIs.
|
oracle.pgx.api.mllib |
This package contains graph machine learning tools for use with PGX.
|
Modifier and Type | Method and Description |
---|---|
GraphWiseConvLayerConfigBuilder |
Analyst.graphWiseConvLayerConfigBuilder()
Return a GraphWiseLayerConfigBuilder used to create a GraphWiseLayerConfig
|
Modifier and Type | Method and Description |
---|---|
GraphWiseConvLayerConfigBuilder |
GraphWiseConvLayerConfigBuilder.setActivationFunction(ActivationFunction activationFunction)
Set the activation function for this layer (see
ActivationFunction ) |
GraphWiseConvLayerConfigBuilder |
GraphWiseConvLayerConfigBuilder.setDropoutRate(double dropoutRate)
Set the dropout rate for this layer.
|
GraphWiseConvLayerConfigBuilder |
GraphWiseConvLayerConfigBuilder.setNumSampledNeighbors(int numSampledNeighbors)
Set the number of neighbors that will be sampled in this layer.
|
GraphWiseConvLayerConfigBuilder |
GraphWiseConvLayerConfigBuilder.setWeightedAggregationProperty(java.lang.String neighborWeightProperty)
Set the graph property to be used for weighted aggregation.
|
GraphWiseConvLayerConfigBuilder |
GraphWiseConvLayerConfigBuilder.setWeightInitScheme(WeightInitScheme weightInitScheme)
Set the weight initialization scheme for the weights of this layer.
|
GraphWiseConvLayerConfigBuilder |
GraphWiseConvLayerConfigBuilder.useEdgeToEdgeConnection(boolean edgeToEdgeConnection)
Use the connection between edges and edges.
|
GraphWiseConvLayerConfigBuilder |
GraphWiseConvLayerConfigBuilder.useEdgeToVertexConnection(boolean edgeToVertexConnection)
Use the connection between edges and vertices.
|
GraphWiseConvLayerConfigBuilder |
GraphWiseConvLayerConfigBuilder.useVertexToEdgeConnection(boolean vertexToEdgeConnection)
Use the connection between vertices and edges.
|
GraphWiseConvLayerConfigBuilder |
GraphWiseConvLayerConfigBuilder.useVertexToVertexConnection(boolean vertexToVertexConnection)
Use the connection between vertices and vertices.
|