Show / Hide Table of Contents

Class MapMetadata

Represents Map MetaData. Key is always a tensor denoted by an element type with value type being a recursive structure that may contain other maps, sequences or tensors.

Inheritance
Object
MapMetadata
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: Microsoft.ML.OnnxRuntime
Assembly: Microsoft.ML.OnnxRuntime.dll
Syntax
public class MapMetadata

Properties

| Improve this Doc View Source

KeyDataType

Key tensor data type

Declaration
public TensorElementType KeyDataType { get; }
Property Value
Type Description
TensorElementType

A value of TensorElementType enum

| Improve this Doc View Source

ValueMetadata

Value metadata

Declaration
public NodeMetadata ValueMetadata { get; }
Property Value
Type Description
NodeMetadata

Instance of Nodemetadata for the value of the map

  • Improve this Doc
  • View Source
In This Article
  • Properties
    • KeyDataType
    • ValueMetadata
Back to top