DataViewSchema.Annotations.Builder.Add 方法

定义

重载

Add(DataViewSchema+Annotations, Func<String,Boolean>)

通过应用于selector所有名称,将annotations一些列添加到新的批注中。

Add(String, DataViewType, Delegate, DataViewSchema+Annotations)

添加一个批注列,即弱类型版本。

Add<TValue>(String, DataViewType, ValueGetter<TValue>, DataViewSchema+Annotations)

添加一个批注列,强类型版本。

Add(DataViewSchema+Annotations, Func<String,Boolean>)

通过应用于selector所有名称,将annotations一些列添加到新的批注中。

public void Add (Microsoft.ML.DataViewSchema.Annotations annotations, Func<string,bool> selector);
member this.Add : Microsoft.ML.DataViewSchema.Annotations * Func<string, bool> -> unit
Public Sub Add (annotations As DataViewSchema.Annotations, selector As Func(Of String, Boolean))

参数

annotations
DataViewSchema.Annotations

要从中获取值的批注行。

selector
Func<String,Boolean>

描述要保留的批注列的谓词。

适用于

Add(String, DataViewType, Delegate, DataViewSchema+Annotations)

添加一个批注列,即弱类型版本。

public void Add (string name, Microsoft.ML.Data.DataViewType type, Delegate getter, Microsoft.ML.DataViewSchema.Annotations annotations = default);
member this.Add : string * Microsoft.ML.Data.DataViewType * Delegate * Microsoft.ML.DataViewSchema.Annotations -> unit
Public Sub Add (name As String, type As DataViewType, getter As Delegate, Optional annotations As DataViewSchema.Annotations = Nothing)

参数

name
String

批注名称。

type
DataViewType

批注类型。

getter
Delegate

提供值的 getter 委托。 请注意,此方法中仍然检查 getter 的类型。

annotations
DataViewSchema.Annotations

输入列的注释。 请注意,批注列中的批注有些罕见,但某些类型 (例如矢量的槽名称、键类型的键值) 。

适用于

Add<TValue>(String, DataViewType, ValueGetter<TValue>, DataViewSchema+Annotations)

添加一个批注列,强类型版本。

public void Add<TValue> (string name, Microsoft.ML.Data.DataViewType type, Microsoft.ML.ValueGetter<TValue> getter, Microsoft.ML.DataViewSchema.Annotations annotations = default);
member this.Add : string * Microsoft.ML.Data.DataViewType * Microsoft.ML.ValueGetter<'Value> * Microsoft.ML.DataViewSchema.Annotations -> unit
Public Sub Add(Of TValue) (name As String, type As DataViewType, getter As ValueGetter(Of TValue), Optional annotations As DataViewSchema.Annotations = Nothing)

类型参数

TValue

值的类型。

参数

name
String

批注名称。

type
DataViewType

批注类型。

getter
ValueGetter<TValue>

getter 委托。

annotations
DataViewSchema.Annotations

输入列的注释。 请注意,批注列中的批注有些罕见,但某些类型 (例如矢量的槽名称、键类型的键值) 。

适用于