21 references to ValueToKeyMappingEstimator
Microsoft.ML.Data (4)
Transforms\ConversionsExtensionsCatalog.cs (3)
254=> new ValueToKeyMappingEstimator(CatalogUtils.GetEnvironment(catalog), 292return new ValueToKeyMappingEstimator(env, columnOptions, keyData); 309=> new ValueToKeyMappingEstimator(CatalogUtils.GetEnvironment(catalog), columns, keyData);
Transforms\ValueToKeyMappingEstimator.cs (1)
148this(env, new[] { new ColumnOptions(outputColumnName, inputColumnName ?? outputColumnName, maximumNumberOfKeys, keyOrdinality) })
Microsoft.ML.Tests (15)
TermEstimatorTests.cs (4)
71var pipe = new ValueToKeyMappingEstimator(ML, new[]{ 102var pipe = new ValueToKeyMappingEstimator(Env, new[]{ 117var est = new ValueToKeyMappingEstimator(Env, new[]{ 139var termEst = new ValueToKeyMappingEstimator(Env, new[] {
TrainerEstimators\TrainerEstimators.cs (1)
240var pipeline = new ValueToKeyMappingEstimator(Env, new[]{
Transformers\KeyToBinaryVectorEstimatorTest.cs (4)
48dataView = new ValueToKeyMappingEstimator(Env, new[]{ 68var transformedData = new ValueToKeyMappingEstimator(Env, new[] { 92var termEst = new ValueToKeyMappingEstimator(Env, new[] { 148var est = new ValueToKeyMappingEstimator(Env, new[]{
Transformers\KeyToValueTests.cs (2)
39data = new ValueToKeyMappingEstimator(Env, new[] { 73var transformedData = new ValueToKeyMappingEstimator(Env, new[] {
Transformers\KeyToVectorEstimatorTests.cs (4)
55dataView = new ValueToKeyMappingEstimator(Env, new[]{ 78var transformedData = new ValueToKeyMappingEstimator(Env, new[] { 102var termEst = new ValueToKeyMappingEstimator(Env, new[] { 207var est = new ValueToKeyMappingEstimator(Env, new[]{
Microsoft.ML.Transforms (2)
OneHotEncoding.cs (1)
282_term = new ValueToKeyMappingEstimator(_host, columns, keyData);
Text\WordBagTransform.cs (1)
520chain = chain.Append<ITransformer>(new ValueToKeyMappingEstimator(h, columnOptions.ToArray(), keyData));