OnnxMapTypeAttribute Constructors

Definition

Overloads

OnnxMapTypeAttribute()

Create a map (aka dictionary) type.

OnnxMapTypeAttribute(Type, Type)

Create a map (aka dictionary) type. A map is a collection of key-value pairs. keyType specifies the type of keys and valueType is the type of values.

OnnxMapTypeAttribute()

Create a map (aka dictionary) type.

public OnnxMapTypeAttribute ();
Public Sub New ()

Applies to

OnnxMapTypeAttribute(Type, Type)

Create a map (aka dictionary) type. A map is a collection of key-value pairs. keyType specifies the type of keys and valueType is the type of values.

public OnnxMapTypeAttribute (Type keyType, Type valueType);
new Microsoft.ML.Transforms.Onnx.OnnxMapTypeAttribute : Type * Type -> Microsoft.ML.Transforms.Onnx.OnnxMapTypeAttribute
Public Sub New (keyType As Type, valueType As Type)

Parameters

keyType
Type
valueType
Type

Applies to