Bag of words for c # text

Is there any tool to create a word bag word model and computational function vectors for strings in C #? Something like pythons CountVectorizer:

vectorizer = CountVectorizer(analyzer = "word", tokenizer = None, preprocessor = None, stop_words = None, max_features = 1000) 
+5
source share

Source: https://habr.com/ru/post/1241348/


All Articles