DataViewSchema.Annotations.Builder.Add Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Overload
Add(DataViewSchema+Annotations, Func<String,Boolean>) |
Tambahkan beberapa kolom dari |
Add(String, DataViewType, Delegate, DataViewSchema+Annotations) |
Tambahkan satu kolom anotasi, versi yang ditik lemah. |
Add<TValue>(String, DataViewType, ValueGetter<TValue>, DataViewSchema+Annotations) |
Tambahkan satu kolom anotasi, versi yang sangat ditik. |
Add(DataViewSchema+Annotations, Func<String,Boolean>)
Tambahkan beberapa kolom dari annotations
ke dalam anotasi baru kami, dengan menerapkan selector
ke semua nama.
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))
Parameter
- annotations
- DataViewSchema.Annotations
Baris anotasi untuk mengambil nilai.
Berlaku untuk
Add(String, DataViewType, Delegate, DataViewSchema+Annotations)
Tambahkan satu kolom anotasi, versi yang ditik lemah.
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)
Parameter
- name
- String
Nama anotasi.
- type
- DataViewType
Jenis anotasi.
- getter
- Delegate
Delegasi getter yang memberikan nilai . Perhatikan bahwa jenis getter masih diperiksa di dalam metode ini.
- annotations
- DataViewSchema.Annotations
Anotasi kolom input. Perhatikan bahwa anotasi pada kolom anotasi agak jarang terjadi kecuali untuk jenis tertentu (misalnya, nama slot untuk vektor, nilai kunci untuk sesuatu dari jenis kunci).
Berlaku untuk
Add<TValue>(String, DataViewType, ValueGetter<TValue>, DataViewSchema+Annotations)
Tambahkan satu kolom anotasi, versi yang sangat ditik.
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)
Jenis parameter
- TValue
Jenis nilai.
Parameter
- name
- String
Nama anotasi.
- type
- DataViewType
Jenis anotasi.
- getter
- ValueGetter<TValue>
Delegasi getter.
- annotations
- DataViewSchema.Annotations
Anotasi kolom input. Perhatikan bahwa anotasi pada kolom anotasi agak jarang terjadi kecuali untuk jenis tertentu (misalnya, nama slot untuk vektor, nilai kunci untuk sesuatu dari jenis kunci).