7 instantiations of Column
Microsoft.ML.Data (1)
DataLoadSave\Database\DatabaseLoader.cs (1)
125var column = new Column();
Microsoft.ML.Tests (6)
DatabaseLoaderTests.cs (6)
56new DatabaseLoader.Column() { Name = "Label", Type = DbType.Int32 }, 57new DatabaseLoader.Column() { Name = "SepalLength", Type = DbType.Single }, 58new DatabaseLoader.Column() { Name = "SepalWidth", Type = DbType.Single }, 59new DatabaseLoader.Column() { Name = "PetalLength", Type = DbType.Single }, 60new DatabaseLoader.Column() { Name = "PetalWidth", Type = DbType.Single } 258var loader = mlContext.Data.CreateDatabaseLoader(new DatabaseLoader.Column("datetime", DbType.DateTime, 0));
15 references to Column
Microsoft.ML.Data (14)
DataLoadSave\Database\DatabaseLoader.cs (12)
118var columns = new List<Column>(); 125var 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. 353public Column[] Columns; 436Contracts.ExceptUserArg(nameof(Column.Source), "Intervals specified for column '{0}' overlap", name) : 472public Bindings(DatabaseLoader parent, Column[] cols) 485var col = cols[iinfo]; 499ch.CheckUserArg(Enum.IsDefined(typeof(DbType), col.Type), nameof(Column.Type), "Bad item type"); 689Contracts.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> 18params DatabaseLoader.Column[] columns)
Microsoft.ML.Tests (1)
DatabaseLoaderTests.cs (1)
54var loaderColumns = new DatabaseLoader.Column[]