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