Interface GraphVectorLookupTable
-
- All Known Implementing Classes:
InMemoryGraphLookupTable
public interface GraphVectorLookupTable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getNumVertices()
Returns the number of vertices in the graphorg.nd4j.linalg.api.ndarray.INDArray
getVector(int idx)
Get the vector for the vertex with index idxvoid
iterate(int first, int second)
Conduct learning given a pair of vertices (in and out)void
resetWeights()
Reset (randomize) the weights.void
setLearningRate(double learningRate)
Set the learning rateint
vectorSize()
The size of the vector representations
-
-
-
Method Detail
-
vectorSize
int vectorSize()
The size of the vector representations
-
resetWeights
void resetWeights()
Reset (randomize) the weights.
-
iterate
void iterate(int first, int second)
Conduct learning given a pair of vertices (in and out)
-
getVector
org.nd4j.linalg.api.ndarray.INDArray getVector(int idx)
Get the vector for the vertex with index idx
-
setLearningRate
void setLearningRate(double learningRate)
Set the learning rate
-
getNumVertices
int getNumVertices()
Returns the number of vertices in the graph
-
-