Interface IOnnxTensorInfo
- Namespace
- AiDotNet.Interfaces
- Assembly
- AiDotNet.dll
Information about an ONNX tensor (input or output).
public interface IOnnxTensorInfo
Properties
ElementType
Gets the element type name (e.g., "float", "int64", "string").
string ElementType { get; }
Property Value
Name
Gets the name of the tensor.
string Name { get; }
Property Value
Shape
Gets the shape of the tensor. -1 indicates a dynamic dimension.
int[] Shape { get; }
Property Value
- int[]