Table of Contents

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

string

Name

Gets the name of the tensor.

string Name { get; }

Property Value

string

Shape

Gets the shape of the tensor. -1 indicates a dynamic dimension.

int[] Shape { get; }

Property Value

int[]