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