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