TextLoader.Range 构造函数

定义

重载

TextLoader.Range()
TextLoader.Range(Int32)

表示单个值的范围。 将导致标量列。

TextLoader.Range(Int32, Nullable<Int32>)

一个表示一组值的范围。 将导致向量列。

TextLoader.Range()

public Range ();
Public Sub New ()

适用于

TextLoader.Range(Int32)

表示单个值的范围。 将导致标量列。

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

参数

index
Int32

要读取的文本文件字段的索引。

适用于

TextLoader.Range(Int32, Nullable<Int32>)

一个表示一组值的范围。 将导致向量列。

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))

参数

min
Int32

列的最小非独占索引。

max
Nullable<Int32>

列的最大非独占索引。 如果 null 指示 TextLoader 应自动检测行的腿,并读取到末尾。

适用于