@@ -193,7 +193,7 @@ public static WordTokenizingEstimator TokenizeWords(this TransformsCatalog.TextT
193
193
/// <param name="ngramLength">Ngram length.</param>
194
194
/// <param name="skipLength">Maximum number of tokens to skip when constructing an ngram.</param>
195
195
/// <param name="allLengths">Whether to include all ngram lengths up to <paramref name="ngramLength"/> or only <paramref name="ngramLength"/>.</param>
196
- /// <param name="maximumNgramsCounts ">Maximum number of n-grams to store in the dictionary.</param>
196
+ /// <param name="maximumNgramsCount ">Maximum number of n-grams to store in the dictionary.</param>
197
197
/// <param name="weighting">Statistical measure used to evaluate how important a word is to a document in a corpus.</param>
198
198
/// <example>
199
199
/// <format type="text/markdown">
@@ -208,10 +208,10 @@ public static NgramExtractingEstimator ProduceNgrams(this TransformsCatalog.Text
208
208
int ngramLength = NgramExtractingEstimator . Defaults . NgramLength ,
209
209
int skipLength = NgramExtractingEstimator . Defaults . SkipLength ,
210
210
bool allLengths = NgramExtractingEstimator . Defaults . AllLengths ,
211
- int maximumNgramsCounts = NgramExtractingEstimator . Defaults . MaximumNgramsCount ,
211
+ int maximumNgramsCount = NgramExtractingEstimator . Defaults . MaximumNgramsCount ,
212
212
NgramExtractingEstimator . WeightingCriteria weighting = NgramExtractingEstimator . Defaults . Weighting ) =>
213
213
new NgramExtractingEstimator ( Contracts . CheckRef ( catalog , nameof ( catalog ) ) . GetEnvironment ( ) , outputColumnName , inputColumnName ,
214
- ngramLength , skipLength , allLengths , maximumNgramsCounts , weighting ) ;
214
+ ngramLength , skipLength , allLengths , maximumNgramsCount , weighting ) ;
215
215
216
216
/// <summary>
217
217
/// Produces a bag of counts of ngrams (sequences of consecutive words) in <paramref name="columns.inputs"/>
0 commit comments