DataViewSchema.Annotations.Builder.Add 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Add(DataViewSchema+Annotations, Func<String,Boolean>) |
모든 이름에 |
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
값을 가져올 주석 행입니다.
적용 대상
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
입력 열의 주석입니다. 주석 열의 주석은 특정 형식(예: 벡터의 슬롯 이름, 키 형식의 키 값)을 제외하고는 다소 드뭅니다.