Partager via


TextLoader.Column Constructeurs

Définition

Surcharges

TextLoader.Column()

Décrit comment une colonne d’entrée doit être mappée à une IDataView colonne.

TextLoader.Column(String, DataKind, Int32)

Décrit comment une colonne d’entrée doit être mappée à une IDataView colonne.

TextLoader.Column(String, DataKind, TextLoader+Range[], KeyCount)

Décrit comment une colonne d’entrée doit être mappée à une IDataView colonne.

TextLoader.Column(String, DataKind, Int32, Int32)

Décrit comment une colonne d’entrée doit être mappée à une IDataView colonne.

TextLoader.Column()

Décrit comment une colonne d’entrée doit être mappée à une IDataView colonne.

public Column ();
Public Sub New ()

S’applique à

TextLoader.Column(String, DataKind, Int32)

Décrit comment une colonne d’entrée doit être mappée à une IDataView colonne.

public Column (string name, Microsoft.ML.Data.DataKind dataKind, int index);
new Microsoft.ML.Data.TextLoader.Column : string * Microsoft.ML.Data.DataKind * int -> Microsoft.ML.Data.TextLoader.Column
Public Sub New (name As String, dataKind As DataKind, index As Integer)

Paramètres

name
String

Nom de la colonne.

dataKind
DataKind

DataKind des éléments de la colonne.

index
Int32

Index de la colonne.

S’applique à

TextLoader.Column(String, DataKind, TextLoader+Range[], KeyCount)

Décrit comment une colonne d’entrée doit être mappée à une IDataView colonne.

public Column (string name, Microsoft.ML.Data.DataKind dataKind, Microsoft.ML.Data.TextLoader.Range[] source, Microsoft.ML.Data.KeyCount keyCount = default);
new Microsoft.ML.Data.TextLoader.Column : string * Microsoft.ML.Data.DataKind * Microsoft.ML.Data.TextLoader.Range[] * Microsoft.ML.Data.KeyCount -> Microsoft.ML.Data.TextLoader.Column
Public Sub New (name As String, dataKind As DataKind, source As TextLoader.Range(), Optional keyCount As KeyCount = Nothing)

Paramètres

name
String

Nom de la colonne.

dataKind
DataKind

DataKind des éléments de la colonne.

source
TextLoader.Range[]

Plages d’index sources de la colonne.

keyCount
KeyCount

Pour une colonne clé, cela définit la plage de valeurs.

S’applique à

TextLoader.Column(String, DataKind, Int32, Int32)

Décrit comment une colonne d’entrée doit être mappée à une IDataView colonne.

public Column (string name, Microsoft.ML.Data.DataKind dataKind, int minIndex, int maxIndex);
new Microsoft.ML.Data.TextLoader.Column : string * Microsoft.ML.Data.DataKind * int * int -> Microsoft.ML.Data.TextLoader.Column
Public Sub New (name As String, dataKind As DataKind, minIndex As Integer, maxIndex As Integer)

Paramètres

name
String

Nom de la colonne.

dataKind
DataKind

DataKind des éléments de la colonne.

minIndex
Int32

Index inclusif minimal de la colonne.

maxIndex
Int32

Index inclusif maximal de la colonne.

S’applique à