7 instantiations of Column
Microsoft.ML.Data (1)
DataLoadSave\Database\DatabaseLoader.cs (1)
125
var column = new
Column
();
Microsoft.ML.Tests (6)
DatabaseLoaderTests.cs (6)
56
new DatabaseLoader.
Column
() { Name = "Label", Type = DbType.Int32 },
57
new DatabaseLoader.
Column
() { Name = "SepalLength", Type = DbType.Single },
58
new DatabaseLoader.
Column
() { Name = "SepalWidth", Type = DbType.Single },
59
new DatabaseLoader.
Column
() { Name = "PetalLength", Type = DbType.Single },
60
new DatabaseLoader.
Column
() { Name = "PetalWidth", Type = DbType.Single }
258
var loader = mlContext.Data.CreateDatabaseLoader(new DatabaseLoader.
Column
("datetime", DbType.DateTime, 0));
15 references to Column
Microsoft.ML.Data (14)
DataLoadSave\Database\DatabaseLoader.cs (12)
118
var columns = new List<
Column
>();
125
var
column = new Column();
182
/// Initializes a new instance of the <see cref="
Column
"/> class.
187
/// Initializes a new instance of the <see cref="
Column
"/> class.
198
/// Initializes a new instance of the <see cref="
Column
"/> class.
210
/// Initializes a new instance of the <see cref="
Column
"/> class.
353
public
Column
[] Columns;
436
Contracts.ExceptUserArg(nameof(
Column
.Source), "Intervals specified for column '{0}' overlap", name) :
472
public Bindings(DatabaseLoader parent,
Column
[] cols)
485
var
col = cols[iinfo];
499
ch.CheckUserArg(Enum.IsDefined(typeof(DbType), col.Type), nameof(
Column
.Type), "Bad item type");
689
Contracts.CheckUserArg(KeyDataViewType.IsValidDataType(rawType), nameof(DatabaseLoader.
Column
.Type), "Bad item type for Key");
DataLoadSave\Database\DatabaseLoaderCatalog.cs (2)
16
/// <param name="columns">Array of columns <see cref="DatabaseLoader.
Column
"/> defining the schema.</param>
18
params DatabaseLoader.
Column
[] columns)
Microsoft.ML.Tests (1)
DatabaseLoaderTests.cs (1)
54
var loaderColumns = new DatabaseLoader.
Column
[]