Class TensorData
- Namespace
- AiDotNet.ComputerVision.Weights
- Assembly
- AiDotNet.dll
Represents tensor data extracted from a weight file.
public class TensorData
- Inheritance
-
TensorData
- Inherited Members
Properties
DType
The data type of the tensor.
public string DType { get; set; }
Property Value
Data
The raw byte data of the tensor.
public byte[] Data { get; set; }
Property Value
- byte[]
Shape
The shape of the tensor.
public int[] Shape { get; set; }
Property Value
- int[]