2 writes to SkipLength
Microsoft.ML.Transforms (2)
Text\NgramTransform.cs (2)
136
SkipLength
= info.SkipLength;
154
SkipLength
= ctx.Reader.ReadInt32();
9 references to SkipLength
Microsoft.ML.Transforms (9)
Text\NgramTransform.cs (9)
155
Contracts.CheckDecode(0 <=
SkipLength
&&
SkipLength
<= NgramBufferBuilder.MaxSkipNgramLength);
156
Contracts.CheckDecode(NgramLength <= NgramBufferBuilder.MaxSkipNgramLength -
SkipLength
);
176
Contracts.Assert(0 <=
SkipLength
&&
SkipLength
<= NgramBufferBuilder.MaxSkipNgramLength);
177
Contracts.Assert(NgramLength +
SkipLength
<= NgramBufferBuilder.MaxSkipNgramLength);
178
ctx.Writer.Write(
SkipLength
);
678
var bldr = new NgramBufferBuilder(_parent._transformInfos[iinfo].NgramLength, _parent._transformInfos[iinfo].
SkipLength
,
805
node.AddAttribute("max_skip_count", transformInfo.
SkipLength
);