簡體   English   中英

如何強制sklearn CountVectorizer不刪除特殊字符(即#,@ 、、 $或%)

[英]How to force sklearn CountVectorizer to not remove special characters (i.e. #, @, , $ or %)

這是我的代碼:

count = CountVectorizer(lowercase = False)

vocabulary = count.fit_transform([words])
print(count.get_feature_names())

例如,如果:

 words = "Hello @friend, this is a good day. #good."

我希望將其分為以下部分:

['Hello', '@friend', 'this', 'is', 'a', 'good', 'day', '#good']

當前,這是分為以下幾類:

['Hello', 'friend', 'this', 'is', 'a', 'good', 'day']

您可以使用token_pattern從這里參數CountVectorizer作為中提到的文檔

傳遞一個正則表達式告訴CountVectorizer應該把什么當作單詞。 假設在這種情況下,我們告訴CountVectorizer,即使帶有#@的單詞也應該是一個單詞。 然后做:

count = CountVectorizer(lowercase = False, token_pattern = '[a-zA-Z0-9$&+,:;=?@#|<>.^*()%!-]+')

輸出:

['#good', '@friend', 'Hello', 'a', 'day', 'good', 'is', 'this']

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM