34 references to ColumnOptions
Microsoft.ML.Data (4)
DataLoadSave\DataOperationsCatalog.cs (2)
572new HashingEstimator.ColumnOptions(splitColumnName, hashInputColumnName, 30, (uint)seedToUse.Value, combine: true) : 573new HashingEstimator.ColumnOptions(splitColumnName, hashInputColumnName, 30, combine: true);
Transforms\Hashing.cs (2)
338cols[i] = new HashingEstimator.ColumnOptions( 1917: this(env, new ColumnOptions(outputColumnName, inputColumnName ?? outputColumnName,
Microsoft.ML.IntegrationTests (1)
DataTransformation.cs (1)
204new ColumnOptions("Features", "Features", 31, useOrderedHashing: true) }));
Microsoft.ML.PerformanceTests (1)
HashBench.cs (1)
86var info = new HashingEstimator.ColumnOptions("Bar", "Foo", numberOfBits: numberOfBits);
Microsoft.ML.Samples (2)
Dynamic\Transforms\Conversion\HashWithOptions.cs (2)
48new HashingEstimator.ColumnOptions( 55new HashingEstimator.ColumnOptions(
Microsoft.ML.TestFramework (2)
DataPipe\TestDataPipe.cs (2)
1116var hashTransform = new HashingTransformer(Env, new HashingEstimator.ColumnOptions("F1", "F1", 5, 42)).Transform(srcView); 1147var hashTransform = new HashingTransformer(Env, new HashingEstimator.ColumnOptions("F1V", "F1V", 5, 42)).Transform(srcView);
Microsoft.ML.Tests (22)
Transformers\HashTests.cs (22)
52new HashingEstimator.ColumnOptions("HashA", "A", numberOfBits:4, maximumNumberOfInverts:-1), 53new HashingEstimator.ColumnOptions("HashB", "B", numberOfBits:3, useOrderedHashing:true), 54new HashingEstimator.ColumnOptions("HashC", "C", seed:42), 55new HashingEstimator.ColumnOptions("HashD", "A"), 74new HashingEstimator.ColumnOptions("HashA", "A", maximumNumberOfInverts:1, numberOfBits:10), 75new HashingEstimator.ColumnOptions("HashAUnlim", "A", maximumNumberOfInverts:-1, numberOfBits:10), 76new HashingEstimator.ColumnOptions("HashAUnlimOrdered", "A", maximumNumberOfInverts:-1, numberOfBits:10, useOrderedHashing:true) 114new HashingEstimator.ColumnOptions("HashA", "A", numberOfBits:4, maximumNumberOfInverts:-1), 115new HashingEstimator.ColumnOptions("HashB", "B", numberOfBits:3, useOrderedHashing:true), 116new HashingEstimator.ColumnOptions("HashC", "C", seed:42), 117new HashingEstimator.ColumnOptions("HashD" ,"A"), 149var info = new HashingEstimator.ColumnOptions("Bar", "Foo", numberOfBits: bits); 156info = new HashingEstimator.ColumnOptions("Bar", "Foo", numberOfBits: bits, useOrderedHashing: true); 169info = new HashingEstimator.ColumnOptions("Bar", "Foo", numberOfBits: bits, useOrderedHashing: false); 179info = new HashingEstimator.ColumnOptions("Bar", "Foo", numberOfBits: bits, useOrderedHashing: true); 189info = new HashingEstimator.ColumnOptions("Bar", "Foo", numberOfBits: bits, combine: true); 200info = new HashingEstimator.ColumnOptions("Bar", "Foo", numberOfBits: bits, useOrderedHashing: false); 209info = new HashingEstimator.ColumnOptions("Bar", "Foo", numberOfBits: bits, useOrderedHashing: true); 217info = new HashingEstimator.ColumnOptions("Bar", "Foo", numberOfBits: bits, combine: true); 385new HashingEstimator.ColumnOptions("AHashed", "A"), 386new HashingEstimator.ColumnOptions("DHashed", "D"), 387new HashingEstimator.ColumnOptions("DHashedCombined", "D", combine: true)));
Microsoft.ML.Transforms (2)
Dracula\CountTargetEncodingTransformer.cs (1)
256cols[i] = new HashingEstimator.ColumnOptions(column.Name, column.InputColumnName,
OneHotHashEncoding.cs (1)
292HashingOptions = new HashingEstimator.ColumnOptions(name, inputColumnName ?? name, numberOfBits, seed, useOrderedHashing, maximumNumberOfInverts);