10 references to ValueToKeyMappingEstimator
Microsoft.ML.Core.Tests (1)
UnitTests\TestEntryPoints.cs (1)
1557
data = new
ValueToKeyMappingEstimator
(Env, "Label", "Label", keyOrdinality: ValueToKeyMappingEstimator.KeyOrdinality.ByValue).Fit(data).Transform(data);
Microsoft.ML.PerformanceTests (1)
RffTransform.cs (1)
48
.Append(new
ValueToKeyMappingEstimator
(mlContext, "Label"))
Microsoft.ML.TensorFlow.Tests (2)
TensorflowTests.cs (2)
154
.Append(new
ValueToKeyMappingEstimator
(_mlContext, "Label"))
1164
.Append(new
ValueToKeyMappingEstimator
(_mlContext, "Label"))
Microsoft.ML.Tests (5)
Scenarios\Api\Estimators\DecomposableTrainAndPredict.cs (1)
34
.Append(new
ValueToKeyMappingEstimator
(ml, "Label"), TransformerScope.TrainTest)
Scenarios\Api\Estimators\Extensibility.cs (1)
43
.Append(new
ValueToKeyMappingEstimator
(ml, "Label"), TransformerScope.TrainTest)
TrainerEstimators\MetalinearEstimators.cs (1)
98
.Append(new
ValueToKeyMappingEstimator
(Env, "Label"))
TrainerEstimators\TrainerEstimators.cs (1)
288
var pipeline = new
ValueToKeyMappingEstimator
(Env, "Label");
Transformers\TextFeaturizerTests.cs (1)
630
.Append(new
ValueToKeyMappingEstimator
(ML, "terms", "text"))
Microsoft.ML.Transforms (1)
SvmLight\SvmLightLoader.cs (1)
581
_keyVectorsToIndexVectors = new
ValueToKeyMappingEstimator
(_host, nameof(IntermediateInput.FeatureKeys)).Fit(data);