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