다음을 통해 공유


DataViewSchema.Annotations.Builder.Add 메서드

정의

오버로드

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

모든 이름에 annotations 적용하여 selector 새 주석에 일부 열을 추가합니다.

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

약한 형식의 주석 열을 하나 추가합니다.

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

강력한 형식의 주석 열 하나를 추가합니다.

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

Source:
DataViewSchema.cs
Source:
DataViewSchema.cs
Source:
DataViewSchema.cs

모든 이름에 annotations 적용하여 selector 새 주석에 일부 열을 추가합니다.

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)

Source:
DataViewSchema.cs
Source:
DataViewSchema.cs
Source:
DataViewSchema.cs

약한 형식의 주석 열을 하나 추가합니다.

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)

Source:
DataViewSchema.cs
Source:
DataViewSchema.cs
Source:
DataViewSchema.cs

강력한 형식의 주석 열 하나를 추가합니다.

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

입력 열의 주석입니다. 주석 열의 주석은 특정 형식(예: 벡터의 슬롯 이름, 키 형식의 키 값)을 제외하고는 다소 드뭅니다.

적용 대상