5 references to ApplyTransformToData
Microsoft.ML.Data (5)
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 (1)
98view = ApplyTransformUtils.ApplyTransformToData(env, xf, view);
Utilities\ApplyTransformUtils.cs (1)
102newChain = ApplyTransformToData(env, transform, newChain);