Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
503 views
in Technique[技术] by (71.8m points)

python - 在CountVectorizer中删除单词的单次出现(Remove single occurrences of words in CountVectorizer)

I am using CountVectorizer() to create a term-frequency matrix.

(我正在使用CountVectorizer()创建项频矩阵。)

I want to delete the vocabulary all of the terms which a frequency of two or less.

(我想删除词汇表中频率不超过两个的所有术语。)

Then I use tfidfTransformer() for creating a ti*idf matrix

(然后我使用tfidfTransformer()创建ti * idf矩阵)

vectorizer=CountVectorizer()
X =vectorizer.fit_transform(docs) 

matrix_terms = np.array(vectorizer.get_feature_names())     
matrix_freq = np.asarray(X.sum(axis=0)).ravel()

tfidf_transformer=TfidfTransformer()     
tfidf_matrix = tfidf_transformer.fit_transform(X)

Then I want to use the LSA algorithm for dimensionality reduction, and k-means to clustering.

(然后,我想使用LSA算法进行降维,并将k均值用于聚类。)

But I want to make the clusters without the terms that have a frequency of two or less.

(但是我想使聚类不包含频率为两个或更少的项。)

Can someone help me, please?

(有谁可以帮助我吗?)

  ask by rootware translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

While calling CountVectorizer() , use the parameter min_df and set it to 2. All values less frequent than 2 will not be transformed.

(在调用CountVectorizer() ,请使用参数min_df并将其设置为2。所有频率小于2的值都不会被转换。)

from sklearn.feature_extraction.text import CountVectorizer

vectorizer = CountVectorizer(min_df=2)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...