Share via


TextLoader.Range Construtores

Definição

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.

max
Nullable<Int32>

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.

Aplica-se a