Class TensorBase

java.lang.Object
deepnetts.tensor.TensorBase
All Implemented Interfaces:
Tensor, Serializable
Direct Known Subclasses:
Tensor1D, Tensor2D, Tensor3D, Tensor4D

public class TensorBase extends Object implements Tensor, Serializable
This class represents a wrapper for multidimensional array. It a basic data structure for storing inputs, outputs and internal parameters(weights) of the deep learning model. It supports up to 4 dimensions - it can be 1D, 2D, 3D or 4D.
See Also: