@@ -262,7 +262,7 @@ private static TransformWrapper MakeTransformer(IHostEnvironment env,
262
262
}
263
263
264
264
/// <summary>
265
- /// Produces a bag of counts of ngrams (sequences of consecutive words ) in a given text.
265
+ /// Produces a bag of counts of ngrams (sequences of consecutive words) in a given text.
266
266
/// It does so by building a dictionary of ngrams and using the id in the dictionary as the index in the bag.
267
267
/// </summary>
268
268
public sealed class WordBagEstimator : TrainedWrapperEstimatorBase
@@ -275,7 +275,7 @@ public sealed class WordBagEstimator : TrainedWrapperEstimatorBase
275
275
private readonly NgramTransform . WeightingCriteria _weighting ;
276
276
277
277
/// <summary>
278
- /// Produces a bag of counts of ngrams (sequences of consecutive words ) in <paramref name="inputColumn"/>
278
+ /// Produces a bag of counts of ngrams (sequences of consecutive words) in <paramref name="inputColumn"/>
279
279
/// and outputs bag of word vector as <paramref name="outputColumn"/>
280
280
/// </summary>
281
281
/// <param name="env">The environment.</param>
@@ -299,7 +299,7 @@ public WordBagEstimator(IHostEnvironment env,
299
299
}
300
300
301
301
/// <summary>
302
- /// Produces a bag of counts of ngrams (sequences of consecutive words ) in <paramref name="inputColumns"/>
302
+ /// Produces a bag of counts of ngrams (sequences of consecutive words) in <paramref name="inputColumns"/>
303
303
/// and outputs bag of word vector as <paramref name="outputColumn"/>
304
304
/// </summary>
305
305
/// <param name="env">The environment.</param>
@@ -323,7 +323,7 @@ public WordBagEstimator(IHostEnvironment env,
323
323
}
324
324
325
325
/// <summary>
326
- /// Produces a bag of counts of ngrams (sequences of consecutive words ) in <paramref name="columns.inputs"/>
326
+ /// Produces a bag of counts of ngrams (sequences of consecutive words) in <paramref name="columns.inputs"/>
327
327
/// and outputs bag of word vector for each output in <paramref name="columns.output"/>
328
328
/// </summary>
329
329
/// <param name="env">The environment.</param>
@@ -517,7 +517,7 @@ public sealed class NgramEstimator : TrainedWrapperEstimatorBase
517
517
private readonly NgramTransform . WeightingCriteria _weighting ;
518
518
519
519
/// <summary>
520
- /// Produces a bag of counts of ngrams (sequences of consecutive words ) in <paramref name="inputColumn"/>
520
+ /// Produces a bag of counts of ngrams (sequences of consecutive words) in <paramref name="inputColumn"/>
521
521
/// and outputs bag of word vector as <paramref name="outputColumn"/>
522
522
/// </summary>
523
523
/// <param name="env">The environment.</param>
@@ -541,7 +541,7 @@ public NgramEstimator(IHostEnvironment env,
541
541
}
542
542
543
543
/// <summary>
544
- /// Produces a bag of counts of ngrams (sequences of consecutive words ) in <paramref name="columns.inputs"/>
544
+ /// Produces a bag of counts of ngrams (sequences of consecutive words) in <paramref name="columns.inputs"/>
545
545
/// and outputs bag of word vector for each output in <paramref name="columns.output"/>
546
546
/// </summary>
547
547
/// <param name="env">The environment.</param>
0 commit comments