Uses of Class
org.deeplearning4j.nn.graph.vertex.VertexIndices
-
Packages that use VertexIndices Package Description org.deeplearning4j.nn.graph.vertex org.deeplearning4j.nn.graph.vertex.impl org.deeplearning4j.nn.graph.vertex.impl.rnn -
-
Uses of VertexIndices in org.deeplearning4j.nn.graph.vertex
Fields in org.deeplearning4j.nn.graph.vertex declared as VertexIndices Modifier and Type Field Description protected VertexIndices[]
BaseGraphVertex. inputVertices
A representation of the vertices that are inputs to this vertex (inputs during forward pass) Specifically, if inputVertices[X].getVertexIndex() = Y, and inputVertices[X].getVertexEdgeNumber() = Z then the Zth output of vertex Y is the Xth input to this vertexprotected VertexIndices[]
BaseGraphVertex. outputVertices
A representation of the vertices that this vertex is connected to (outputs duing forward pass) Specifically, if outputVertices[X].getVertexIndex() = Y, and outputVertices[X].getVertexEdgeNumber() = Z then the output of this vertex (there is only one output) is connected to the Zth input of vertex YMethods in org.deeplearning4j.nn.graph.vertex that return VertexIndices Modifier and Type Method Description VertexIndices[]
BaseGraphVertex. getInputVertices()
A representation of the vertices that are inputs to this vertex (inputs duing forward pass)
Specifically, if inputVertices[X].getVertexIndex() = Y, and inputVertices[X].getVertexEdgeNumber() = Z then the Zth output of vertex Y is the Xth input to this vertexVertexIndices[]
BaseWrapperVertex. getInputVertices()
VertexIndices[]
GraphVertex. getInputVertices()
A representation of the vertices that are inputs to this vertex (inputs duing forward pass)
Specifically, if inputVertices[X].getVertexIndex() = Y, and inputVertices[X].getVertexEdgeNumber() = Z then the Zth output connection (seeGraphVertex.getNumOutputConnections()
of vertex Y is the Xth input to this vertexVertexIndices[]
BaseGraphVertex. getOutputVertices()
A representation of the vertices that this vertex is connected to (outputs duing forward pass) Specifically, if outputVertices[X].getVertexIndex() = Y, and outputVertices[X].getVertexEdgeNumber() = Z then the Xth output of this vertex is connected to the Zth input of vertex YVertexIndices[]
BaseWrapperVertex. getOutputVertices()
VertexIndices[]
GraphVertex. getOutputVertices()
A representation of the vertices that this vertex is connected to (outputs duing forward pass) Specifically, if outputVertices[X].getVertexIndex() = Y, and outputVertices[X].getVertexEdgeNumber() = Z then the Xth output of this vertex is connected to the Zth input of vertex YMethods in org.deeplearning4j.nn.graph.vertex with parameters of type VertexIndices Modifier and Type Method Description void
BaseGraphVertex. setInputVertices(VertexIndices[] inputVertices)
void
BaseWrapperVertex. setInputVertices(VertexIndices[] inputVertices)
void
GraphVertex. setInputVertices(VertexIndices[] inputVertices)
Sets the input vertices.void
BaseGraphVertex. setOutputVertices(VertexIndices[] outputVertices)
void
BaseWrapperVertex. setOutputVertices(VertexIndices[] outputVertices)
void
GraphVertex. setOutputVertices(VertexIndices[] outputVertices)
set the output vertices.Constructors in org.deeplearning4j.nn.graph.vertex with parameters of type VertexIndices Constructor Description BaseGraphVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, DataType dataType)
-
Uses of VertexIndices in org.deeplearning4j.nn.graph.vertex.impl
Constructors in org.deeplearning4j.nn.graph.vertex.impl with parameters of type VertexIndices Constructor Description ElementWiseVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, ElementWiseVertex.Op op, DataType dataType)
InputVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] outputVertices, DataType dataType)
L2NormalizeVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, int[] dimension, double eps, DataType dataType)
L2Vertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, double eps, DataType dataType)
LayerVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, Layer layer, InputPreProcessor layerPreProcessor, boolean outputVertex, DataType dataType)
MergeVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, DataType dataType, int mergeAxis)
PoolHelperVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, DataType dataType)
PreprocessorVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, InputPreProcessor preProcessor, DataType dataType)
ReshapeVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, char order, int[] newShape, int[] maskShape, DataType dataType)
ScaleVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, double scaleFactor, DataType dataType)
ShiftVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, double shiftFactor, DataType dataType)
StackVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, DataType dataType)
SubsetVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, int from, int to, DataType dataType)
UnstackVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, int from, int stackSize, DataType dataType)
-
Uses of VertexIndices in org.deeplearning4j.nn.graph.vertex.impl.rnn
Constructors in org.deeplearning4j.nn.graph.vertex.impl.rnn with parameters of type VertexIndices Constructor Description DuplicateToTimeSeriesVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, String inputName, DataType dataType)
LastTimeStepVertex(ComputationGraph graph, String name, int vertexIndex, VertexIndices[] inputVertices, VertexIndices[] outputVertices, String inputName, DataType dataType)
-