TextLoader.Column 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
TextLoader.Column() |
介绍如何将输入列映射到 IDataView 列。 |
TextLoader.Column(String, DataKind, Int32) |
介绍如何将输入列映射到 IDataView 列。 |
TextLoader.Column(String, DataKind, TextLoader+Range[], KeyCount) |
介绍如何将输入列映射到 IDataView 列。 |
TextLoader.Column(String, DataKind, Int32, Int32) |
介绍如何将输入列映射到 IDataView 列。 |
TextLoader.Column()
- Source:
- TextLoader.cs
- Source:
- TextLoader.cs
- Source:
- TextLoader.cs
介绍如何将输入列映射到 IDataView 列。
public Column();
Public Sub New ()
适用于
TextLoader.Column(String, DataKind, Int32)
- Source:
- TextLoader.cs
- Source:
- TextLoader.cs
- Source:
- TextLoader.cs
介绍如何将输入列映射到 IDataView 列。
public Column(string name, Microsoft.ML.Data.DataKind dataKind, int index);
new Microsoft.ML.Data.TextLoader.Column : string * Microsoft.ML.Data.DataKind * int -> Microsoft.ML.Data.TextLoader.Column
Public Sub New (name As String, dataKind As DataKind, index As Integer)
参数
- name
- String
列的名称。
- index
- Int32
列的索引。
适用于
TextLoader.Column(String, DataKind, TextLoader+Range[], KeyCount)
- Source:
- TextLoader.cs
- Source:
- TextLoader.cs
- Source:
- TextLoader.cs
介绍如何将输入列映射到 IDataView 列。
public Column(string name, Microsoft.ML.Data.DataKind dataKind, Microsoft.ML.Data.TextLoader.Range[] source, Microsoft.ML.Data.KeyCount keyCount = default);
new Microsoft.ML.Data.TextLoader.Column : string * Microsoft.ML.Data.DataKind * Microsoft.ML.Data.TextLoader.Range[] * Microsoft.ML.Data.KeyCount -> Microsoft.ML.Data.TextLoader.Column
Public Sub New (name As String, dataKind As DataKind, source As TextLoader.Range(), Optional keyCount As KeyCount = Nothing)
参数
- name
- String
列的名称。
- source
- TextLoader.Range[]
列的源索引范围 (s) 。
- keyCount
- KeyCount
对于键列,这将定义值的范围。
适用于
TextLoader.Column(String, DataKind, Int32, Int32)
- Source:
- TextLoader.cs
- Source:
- TextLoader.cs
- Source:
- TextLoader.cs
介绍如何将输入列映射到 IDataView 列。
public Column(string name, Microsoft.ML.Data.DataKind dataKind, int minIndex, int maxIndex);
new Microsoft.ML.Data.TextLoader.Column : string * Microsoft.ML.Data.DataKind * int * int -> Microsoft.ML.Data.TextLoader.Column
Public Sub New (name As String, dataKind As DataKind, minIndex As Integer, maxIndex As Integer)
参数
- name
- String
列的名称。
- minIndex
- Int32
列的最小非独占索引。
- maxIndex
- Int32
列的最大非独占索引。