Partager via


TextLoader.Range Constructeurs

Définition

Surcharges

TextLoader.Range()
TextLoader.Range(Int32)

Plage représentant une valeur unique. Entraîne une colonne scalaire.

TextLoader.Range(Int32, Nullable<Int32>)

Plage représentant un ensemble de valeurs. Entraîne une colonne vectorielle.

TextLoader.Range()

public Range ();
Public Sub New ()

S’applique à

TextLoader.Range(Int32)

Plage représentant une valeur unique. Entraîne une colonne scalaire.

public Range (int index);
new Microsoft.ML.Data.TextLoader.Range : int -> Microsoft.ML.Data.TextLoader.Range
Public Sub New (index As Integer)

Paramètres

index
Int32

Index du champ du fichier texte à lire.

S’applique à

TextLoader.Range(Int32, Nullable<Int32>)

Plage représentant un ensemble de valeurs. Entraîne une colonne vectorielle.

public Range (int min, int? max);
new Microsoft.ML.Data.TextLoader.Range : int * Nullable<int> -> Microsoft.ML.Data.TextLoader.Range
Public Sub New (min As Integer, max As Nullable(Of Integer))

Paramètres

min
Int32

Index inclusif minimal de la colonne.

max
Nullable<Int32>

Index inclusif maximal de la colonne. S’il null indique que l’élément TextLoader doit détecter automatiquement le legnth des lignes et lire jusqu’à la fin.

S’applique à