6 instantiations of InputRow
Microsoft.ML.Data (1)
DataView\DataViewConstructionUtils.cs (1)
118
return new
InputRow
<TRow>(env, internalSchemaDefn);
Microsoft.ML.Transforms (5)
CustomMappingTransformer.cs (2)
138
var dstRow = new DataViewConstructionUtils.
InputRow
<TDst>(_host, _parent.AddedSchema);
190
var dstRow = new DataViewConstructionUtils.
InputRow
<TDst>(_host, _parent.AddedSchema);
StatefulCustomMappingTransformer.cs (3)
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);
10 references to InputRow
Microsoft.ML.Data (4)
DataView\DataViewConstructionUtils.cs (2)
109
public static
InputRow
<TRow> CreateInputRow<TRow>(IHostEnvironment env, SchemaDefinition schemaDefinition = null)
161
: ApiUtils.GeneratePeek<
InputRow
<TRow>, TRow>(currentColumn);
Prediction\PredictionEngine.cs (2)
93
private readonly DataViewConstructionUtils.
InputRow
<TSrc> _inputRow;
123
private protected virtual void PredictionEngineCore(IHostEnvironment env, DataViewConstructionUtils.
InputRow
<TSrc> inputRow,
Microsoft.ML.TimeSeries (1)
PredictionEngine.cs (1)
217
private protected override void PredictionEngineCore(IHostEnvironment env, DataViewConstructionUtils.
InputRow
<TSrc> inputRow,
Microsoft.ML.Transforms (5)
CustomMappingTransformer.cs (2)
138
var
dstRow = new DataViewConstructionUtils.InputRow<TDst>(_host, _parent.AddedSchema);
190
var
dstRow = new DataViewConstructionUtils.InputRow<TDst>(_host, _parent.AddedSchema);
StatefulCustomMappingTransformer.cs (3)
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);