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