TextLoader.Range Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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.
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.