Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 딥러닝
- LSTM
- 주식분석
- HelloWorld
- yarn
- 하둡2
- GRU
- C언어
- 선형대수
- effective python
- Java
- codingthematrix
- graph
- hive
- collections
- hadoop2
- 코딩더매트릭스
- 하이브
- Sort
- 파이썬
- recursion
- python
- 알고리즘
- RNN
- 그래프이론
- NumPy
- scrapy
- 텐서플로
- tensorflow
- C
Archives
- Today
- Total
목록lemmatizing (1)
EXCELSIOR
Chap02-1 : Stemming, Lemmatizing
1. Stemming wordsStemming은 단어에서 접사(affix)를 제거하는 것을 말한다. Stemming은 검색엔진에서 색인할 때 가장 많이 쓴다. 모든 형태의 단어를 저장하는것 보다 Stemming한 단어를 저장하는 것이 색인 크기를 줄일 뿐만아니라 검색 정확성을 높일 수 있다.Stemming algorithm 중에서 유명한 알고리즘은 Martin Porter의 Porter stemming algorithm이다. Porter 알고리즘은 영어의 접미사(suffix)를 제거한다. 1) The PorterStemmer class from nltk.stem.porter import PorterStemmer stemmer = PorterStemmer() print(stemmer.stem('cookin..
NLP/NLTK
2016. 12. 22. 19:53