1 write to _inner
Microsoft.Extensions.ML.Tests (1)
PredictionEnginePoolTests.cs (1)
152
public DisposeCountingTransformer(ITransformer inner) =>
_inner
= inner;
6 references to _inner
Microsoft.Extensions.ML.Tests (6)
PredictionEnginePoolTests.cs (6)
156
public bool IsRowToRowMapper =>
_inner
.IsRowToRowMapper;
158
public DataViewSchema GetOutputSchema(DataViewSchema inputSchema) =>
_inner
.GetOutputSchema(inputSchema);
160
public IDataView Transform(IDataView input) =>
_inner
.Transform(input);
162
public IRowToRowMapper GetRowToRowMapper(DataViewSchema inputSchema) =>
_inner
.GetRowToRowMapper(inputSchema);
164
public void Save(ModelSaveContext ctx) =>
_inner
.Save(ctx);
169
(
_inner
as IDisposable)?.Dispose();