12 references to ValueMapper
Microsoft.ML.Core (1)
Data\IValueMapper.cs (1)
37ValueMapper<TSrc, TDst> GetMapper<TSrc, TDst>();
Microsoft.ML.Core.Tests (6)
UnitTests\DataTypes.cs (5)
74var mapper = GetMapper<ReadOnlyMemory<char>, sbyte>(NumberDataViewType.SByte); 114var mapper = GetMapper<ReadOnlyMemory<char>, short>(NumberDataViewType.Int16); 154var mapper = GetMapper<ReadOnlyMemory<char>, int>(NumberDataViewType.Int32); 194var mapper = GetMapper<ReadOnlyMemory<char>, long>(NumberDataViewType.Int64); 251private static ValueMapper<TSrc, TDst> GetMapper<TSrc, TDst>(DataViewType dstType)
UnitTests\TestEntryPoints.cs (1)
1785ValueMapper<ReadOnlyMemory<char>, bool> labelToBinary =
Microsoft.ML.Data (2)
Prediction\Calibrator.cs (1)
328var map = ((IValueMapper)this).GetMapper<TIn, float>();
Scorers\SchemaBindablePredictorWrapper.cs (1)
172var map = ValueMapper.GetMapper<TSrc, TDst>();
Microsoft.ML.Ensemble (2)
OutputCombiners\BaseStacking.cs (1)
97var map = mapper.GetMapper<VBuffer<Single>, TOutput>();
Selector\SubModelSelector\BaseDiverseSelector.cs (1)
44var map = vm.GetMapper<VBuffer<Single>, TOutput>();
Microsoft.ML.Mkl.Components (1)
OlsLinearRegression.cs (1)
460var lrMap = lrPredictor.GetMapper<VBuffer<float>, float>();