본문 바로가기

[NLP] 문자열 전처리 Text Preprocessing :: Stopword

Python/기타 2020. 3. 4.

반응형

[ 문자열 전처리 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')

 

728x90

Comments