5 instantiations of ColumnOptions
Microsoft.ML.Transforms (5)
Text\NgramHashingTransformer.cs (3)
295
columns[i] = new NgramHashingEstimator.
ColumnOptions
(ctx);
325
columns[i] = new NgramHashingEstimator.
ColumnOptions
(ctx, outputs[i], inputs[i]);
1162
: this(env, new
ColumnOptions
(outputColumnName, inputColumnNames, ngramLength, skipLength, useAllLengths, numberOfBits, seed, useOrderedHashing, maximumNumberOfInverts))
Text\TextCatalog.cs (2)
531
new[] {new NgramHashingEstimator.
ColumnOptions
(outputColumnName, new[] { inputColumnName }, ngramLength: ngramLength, skipLength: skipLength,
577
new[] {new NgramHashingEstimator.
ColumnOptions
(outputColumnName, inputColumnNames, ngramLength: ngramLength, skipLength: skipLength,
14 references to ColumnOptions
Microsoft.ML.Transforms (14)
Text\NgramHashingTransformer.cs (10)
171
private readonly ImmutableArray<NgramHashingEstimator.
ColumnOptions
> _columns;
180
internal NgramHashingTransformer(IHostEnvironment env, params NgramHashingEstimator.
ColumnOptions
[] columns) :
184
foreach (
var
column in _columns)
191
internal NgramHashingTransformer(IHostEnvironment env, IDataView input, params NgramHashingEstimator.
ColumnOptions
[] columns) :
264
foreach (
var
column in _columns)
288
var columns = new NgramHashingEstimator.
ColumnOptions
[columnsLength];
339
var cols = new NgramHashingEstimator.
ColumnOptions
[options.Column.Length];
1096
private readonly
ColumnOptions
[] _columns;
1175
internal NgramHashingEstimator(IHostEnvironment env, params
ColumnOptions
[] columns)
1216
foreach (
var
colInfo in _columns)
Text\TextCatalog.cs (3)
582
/// <see cref="NgramHashingEstimator.
ColumnOptions
.InputColumnNames"/> are the input columns of the output column named as <see cref="NgramHashingEstimator.
ColumnOptions
.Name"/>.
591
NgramHashingEstimator.
ColumnOptions
[] columns)
Text\WordHashBagProducingTransform.cs (1)
336
var ngramHashColumns = new NgramHashingEstimator.
ColumnOptions
[options.Columns.Length];