TextLoader.Range Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
TextLoader.Range() | |
TextLoader.Range(Int32) |
Um intervalo que representa um único valor. Resultará em uma coluna escalar. |
TextLoader.Range(Int32, Nullable<Int32>) |
Um intervalo que representa um conjunto de valores. Resultará em uma coluna de vetor. |
TextLoader.Range()
public Range ();
Public Sub New ()
Aplica-se a
TextLoader.Range(Int32)
Um intervalo que representa um único valor. Resultará em uma coluna escalar.
public Range (int index);
new Microsoft.ML.Data.TextLoader.Range : int -> Microsoft.ML.Data.TextLoader.Range
Public Sub New (index As Integer)
Parâmetros
- index
- Int32
O índice do campo do arquivo de texto a ser lido.
Aplica-se a
TextLoader.Range(Int32, Nullable<Int32>)
Um intervalo que representa um conjunto de valores. Resultará em uma coluna de vetor.
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))
Parâmetros
- min
- Int32
O índice inclusivo mínimo da coluna.
O índice de inclusão máxima da coluna. Se null
indicar que o TextLoader legnth das linhas deve ser detectado automaticamente e lido até o final.