VectorTypeAttribute 类

定义

允许将成员标记为 a VectorDataViewType,主要允许一个成员设置生成的数组的维度。

[System.AttributeUsage(System.AttributeTargets.Field | System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)]
public sealed class VectorTypeAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Field | System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)>]
type VectorTypeAttribute = class
    inherit Attribute
Public NotInheritable Class VectorTypeAttribute
Inherits Attribute
继承
VectorTypeAttribute
属性

构造函数

VectorTypeAttribute()

将成员标记为具有未知大小的单维数组。

VectorTypeAttribute(Int32)

将成员标记为具有指定大小的单维数组。

VectorTypeAttribute(Int32[])

标记具有数组预期维度的成员。 请注意,此属性应添加到一维数组,不应将其添加到多维数组。 在内部,ML.NET 将使用作为此构造函数的“维度”参数提供的形状信息,将其用作多维数组。

适用于