14 references to ApplyAllTransformsToData
Microsoft.ML.Data (10)
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);
EntryPoints\TransformModelImpl.cs (3)
68_chain = ApplyTransformUtils.ApplyAllTransformsToData(env, result, root, input); 140return ApplyTransformUtils.ApplyAllTransformsToData(env, _chain, input); 155view = ApplyTransformUtils.ApplyAllTransformsToData(env, _chain, mod._chain);
Microsoft.ML.FastTree (1)
TreeEnsembleFeaturizer.cs (1)
687return (IDataTransform)ApplyTransformUtils.ApplyAllTransformsToData(host, scoreXf, input, labelInput);
Microsoft.ML.TestFramework (2)
DataPipe\TestDataPipeBase.cs (2)
201var reappliedPipe = ApplyTransformUtils.ApplyAllTransformsToData(_env, comp.View, srcLoader); 263var newPipe = ApplyTransformUtils.ApplyAllTransformsToData(_env, comp.View, cachedData);
Microsoft.ML.Tests (1)
Scenarios\Api\TestApi.cs (1)
162applied = ApplyTransformUtils.ApplyAllTransformsToData(env, filter, applied);