14 references to ApplyTransformUtils
Microsoft.ML.Data (14)
Commands\CrossValidationCommand.cs (3)
258
var pipe =
ApplyTransformUtils
.ApplyAllTransformsToData(env, srcData.Data, dstData, marker);
516
var validPipe =
ApplyTransformUtils
.ApplyAllTransformsToData(host, _inputDataView, validLoader);
543
(e, newSource) =>
ApplyTransformUtils
.ApplyAllTransformsToData(e, trainData.Data, newSource)),
Commands\TrainCommand.cs (2)
177
validPipe =
ApplyTransformUtils
.ApplyAllTransformsToData(Host, view, validPipe);
195
testPipeUsedInTrainer =
ApplyTransformUtils
.ApplyAllTransformsToData(Host, view, testPipeUsedInTrainer);
Commands\TrainTestCommand.cs (2)
163
validPipe =
ApplyTransformUtils
.ApplyAllTransformsToData(Host, trainPipe, validPipe);
181
testPipeUsedInTrainer =
ApplyTransformUtils
.ApplyAllTransformsToData(Host, trainPipe, testPipeUsedInTrainer);
DataLoadSave\TransformWrapper.cs (3)
38
var output =
ApplyTransformUtils
.ApplyTransformToData(_host, (IDataTransform)_xf, dv);
45
public IDataView Transform(IDataView input) =>
ApplyTransformUtils
.ApplyTransformToData(_host, (IDataTransform)_xf, input);
52
var transform =
ApplyTransformUtils
.ApplyTransformToData(_host, (IDataTransform)_xf, new EmptyDataView(_host, inputSchema)) as IRowToRowMapper;
EntryPoints\TransformModelImpl.cs (4)
68
_chain =
ApplyTransformUtils
.ApplyAllTransformsToData(env, result, root, input);
98
view =
ApplyTransformUtils
.ApplyTransformToData(env, xf, view);
140
return
ApplyTransformUtils
.ApplyAllTransformsToData(env, _chain, input);
155
view =
ApplyTransformUtils
.ApplyAllTransformsToData(env, _chain, mod._chain);