18 references to DataViewConstructionUtils
Microsoft.ML.Data (6)
DataLoadSave\DataOperationsCatalog.cs (2)
82return DataViewConstructionUtils.CreateFromEnumerable(_env, data, schemaDefinition); 109return DataViewConstructionUtils.CreateFromEnumerable(_env, data, schema);
Model\ModelOperationsCatalog.cs (1)
334DataViewConstructionUtils.GetSchemaDefinition<TSrc>(_env, inputSchema));
Prediction\PredictionEngine.cs (3)
93private readonly DataViewConstructionUtils.InputRow<TSrc> _inputRow; 116_inputRow = DataViewConstructionUtils.CreateInputRow<TSrc>(env, inputSchemaDefinition); 123private protected virtual void PredictionEngineCore(IHostEnvironment env, DataViewConstructionUtils.InputRow<TSrc> inputRow,
Microsoft.ML.OnnxTransformerTest (1)
DnnImageFeaturizerTest.cs (1)
67var dataView = DataViewConstructionUtils.CreateFromList(Env,
Microsoft.ML.TimeSeries (1)
PredictionEngine.cs (1)
217private protected override void PredictionEngineCore(IHostEnvironment env, DataViewConstructionUtils.InputRow<TSrc> inputRow,
Microsoft.ML.Transforms (10)
CustomMappingTransformer.cs (3)
138var dstRow = new DataViewConstructionUtils.InputRow<TDst>(_host, _parent.AddedSchema); 190var dstRow = new DataViewConstructionUtils.InputRow<TDst>(_host, _parent.AddedSchema); 255var addedCols = DataViewConstructionUtils.GetSchemaColumns(Transformer.AddedSchema);
StatefulCustomMappingTransformer.cs (4)
120var dstRow = new DataViewConstructionUtils.InputRow<TDst>(Host, _parent.AddedSchema); 163var dstRow = new DataViewConstructionUtils.InputRow<TDst>(Host, _parent.AddedSchema); 282var dstRow = new DataViewConstructionUtils.InputRow<TDst>(_parent.Host, _parent._parent.AddedSchema); 388var addedCols = DataViewConstructionUtils.GetSchemaColumns(Transformer.AddedSchema);
StatefulFilterTransform.cs (3)
73_bindings = new ColumnBindings(Source.Schema, DataViewConstructionUtils.GetSchemaColumns(outSchema)); 88_bindings = new ColumnBindings(newSource.Schema, DataViewConstructionUtils.GetSchemaColumns(_addedSchema)); 162var appendedDataView = new DataViewConstructionUtils.SingleRowLoopDataView<TDst>(parent._host, _parent._addedSchema);