2 instantiations of NGram
Microsoft.ML.Transforms (2)
Text\NgramHashingTransformer.cs (2)
706
return new
NGram
(ngram, Lim, ISrcCol);
835
var ngramObj = new
NGram
(ngram, lim, icol);
13 references to NGram
Microsoft.ML.Transforms (13)
Text\NgramHashingTransformer.cs (13)
637
private readonly InvertHashCollector<
NGram
>[] _iinfoToCollector;
656
_iinfoToCollector = new InvertHashCollector<
NGram
>[_parent._columns.Length];
682
private sealed class NGram : IEquatable<
NGram
>
702
public
NGram
Clone()
709
public bool Equals(
NGram
other)
755
ValueMapper<
NGram
, StringBuilder> stringMapper;
767
(in
NGram
src, ref StringBuilder dst) =>
800
(in
NGram
src, ref StringBuilder dst) =>
817
var collector = _iinfoToCollector[iinfo] = new InvertHashCollector<
NGram
>(
819
stringMapper, EqualityComparer<
NGram
>.Default, (in
NGram
src, ref
NGram
dst) => dst = src.Clone());
835
var
ngramObj = new NGram(ngram, lim, icol);