👔 Adjust sphere segmenter again

This commit is contained in:
2025-12-27 13:55:47 +08:00
parent 27afe5da9f
commit b51a086031
2 changed files with 2 additions and 1 deletions

View File

@@ -88,7 +88,7 @@ public class SphereRewindServiceGrpc(
.Take(1000)
.ToListAsync();
var segmenter = new JiebaSegmenter();
var words = segmenter.CutInParallel(postContents, cutAll: false, hmm: false);
var words = segmenter.CutInParallel(postContents);
var allWords = words.SelectMany(w => w);
var topWords = allWords
.GroupBy(w => w)