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