[NLP] 문자열 전처리 Text Preprocessing :: Stopword
[ 문자열 전처리 Text Preprocessing ]
불용어 (Stopword)
- 유의미한 토큰만을 선별하기 위해서는 큰 의미가 없는 단어를 제거하는 작업이 필요하다.
- nltk에서는 아래와 같은 단어들을 stopwords로 지정하였다.
★ 소문자로 만들어줘야함
from nltk.corpus import stopwords
stopwords.words('english')
['i', 'me', 'my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', "you're", "you've", "you'll", "you'd", 'your', 'yours', 'yourself', 'yourselves', 'he', 'him', 'his', 'himself', 'she', "she's", 'her', 'hers', 'herself', 'it', "it's", 'its', 'itself', 'they', 'them', 'their', 'theirs', 'themselves', 'what', 'which', 'who', 'whom', 'this', 'that', "that'll", 'these', 'those', 'am', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does', 'did', 'doing', 'a', 'an', 'the', 'and', 'but', 'if', 'or', 'because', 'as', 'until', 'while', 'of', 'at', 'by', 'for', 'with', 'about', 'against', 'between', 'into', 'through', 'during', 'before', 'after', 'above', 'below', 'to', 'from', 'up', 'down', 'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further', 'then', 'once', 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more', 'most', 'other', 'some', 'such', 'no', 'nor', 'not', 'only', 'own', 'same', 'so', 'than', 'too', 'very', 's', 't', 'can', 'will', 'just', 'don', "don't", 'should', "should've", 'now', 'd', 'll', 'm', 'o', 're', 've', 'y', 'ain', 'aren', "aren't", 'couldn', "couldn't", 'didn', "didn't", 'doesn', "doesn't", 'hadn', "hadn't", 'hasn', "hasn't", 'haven', "haven't", 'isn', "isn't", 'ma', 'mightn', "mightn't", 'mustn', "mustn't", 'needn', "needn't", 'shan', "shan't", 'shouldn', "shouldn't", 'wasn', "wasn't", 'weren', "weren't", 'won', "won't", 'wouldn', "wouldn't"]
1. 토큰화 Tokenization
우선 문장을 단어별로 토큰화해준다.
from nltk.tokenize import word_tokenize
text = "the book is under the table"
token = word_tokenize(text)
token
['the', 'book', 'is', 'under', 'the', 'table']
2. Stopwords 제외하기
result = [] # 빈 리스트를 만들어준다.
for word in token: # token에 있는 단어 불러오기
if word not in stopwords.words('english'): # 불러온 단어가 stopwords에 있는가?
result.append(word) # 없으면 result에 넣기
# stopwords에 해당하지 않은 단어
result
[''book', 'table']
아주 간단하게 끝!
만약 없다는 stopwords가 없다는 에러가 나온다면 다운받아주면 된다.
import nltk
nltk.download('stopwords')
'Python > 기타' 카테고리의 다른 글
[Python] 쥬피터 노트북 경고(warnings)가 나오지 않게 하는 법 (0) | 2020.03.20 |
---|---|
[Python] 문자열을 딕셔너리로 만들기 (0) | 2020.03.20 |
[NLP] 한국어 자연어 처리 NLP :: KoNLP (0) | 2020.02.27 |
[NLP] 문자열 전처리 Text Preprocessing :: 토큰화 Tokenization (0) | 2020.02.27 |
Google Colaboratory에서 Kaggle API 사용하기 :: Kaggle 연결하기/다운로드 (0) | 2020.01.28 |
Comments