Uses of Class
deepnetts.tensor.Tensor1D
Packages that use Tensor1D
Package
Description
Neural network layers, which are main building blocks of a neural network.
-
Uses of Tensor1D in deepnetts.net.layers
Methods in deepnetts.net.layers that return Tensor1DModifier and TypeMethodDescriptionAbstractLayer.getDeltaBiases()AbstractLayer.getPrevDeltaBiases()Methods in deepnetts.net.layers with parameters of type Tensor1D -
Uses of Tensor1D in deepnetts.tensor
Methods in deepnetts.tensor that return Tensor1DModifier and TypeMethodDescriptionTensor2D.dotProdFromCache(Tensor1D vectorB, Tensor1D result) Performs dot product operation on this 2d tensor (matrix) and vector , and stores results in result tensor.static Tensor1DTensors.dotProduct(Tensor2D matrixA, Tensor1D vectorB, Tensor1D resultC) Dot product matrix vector multiplication C = A .static Tensor1DTensor1D.of(float[] values) static Tensor1DTensors.ones(int size) static Tensor1DTensors.random(int size) Generates a random 1D tensor with the specified dimensions.static Tensor1DTensors.zeros(int size) Methods in deepnetts.tensor with parameters of type Tensor1DModifier and TypeMethodDescriptionfinal Tensor2DTensor2D.dotProdFromCache(Tensor1D vectorB, Tensor1D result) Performs dot product operation on this 2d tensor (matrix) and vector , and stores results in result tensor.static Tensor1DTensors.dotProduct(Tensor2D matrixA, Tensor1D vectorB, Tensor1D resultC) Dot product matrix vector multiplication C = A .static voidTensors.dotProductBuffered(Tensor2D matrixA, Tensor1D vectorB, Tensor1D resultC) Matrix vector dot product.