Implemented interface member:
property
Schema
Microsoft.ML.IDataView.Schema
9 references to Schema
Microsoft.ML.Data (4)
DataLoadSave\Transpose\TransposeLoader.cs (1)
736_host.Assert(trans.Schema.Count == 1);
DataView\Transposer.cs (3)
309Ch.Assert(0 <= col && col < parent.Schema.Count); 327Ch.Assert(0 <= _col && _col < _parent.Schema.Count); 344Ch.Assert(0 <= col && col < parent.Schema.Count);
Microsoft.ML.Predictor.Tests (1)
TestTransposer.cs (1)
184Assert.True(trans.Schema.TryGetColumnIndex(names[i], out index), $"Transpose schema couldn't find column '{names[i]}'");
Microsoft.ML.Transforms (4)
MutualInformationFeatureSelection.cs (4)
491var b = trans.Schema.TryGetColumnIndex(labelColumnName, out labelCol); 500b = trans.Schema.TryGetColumnIndex(columns[i], out int col); 595var type = trans.Schema[col].Type; 662var slotCount = trans.Schema[col].Type.GetValueCount();