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
- codingthematrix
- scrapy
- 딥러닝
- NumPy
- graph
- HelloWorld
- 텐서플로
- hive
- 하둡2
- python
- Java
- 그래프이론
- C
- tensorflow
- recursion
- LSTM
- RNN
- 알고리즘
- yarn
- 파이썬
- 선형대수
- 하이브
- GRU
- hadoop2
- Sort
- effective python
- collections
- 주식분석
- 코딩더매트릭스
- C언어
Archives
- Today
- Total
목록정규표현 (1)
EXCELSIOR
Chap02-2 : Replacing and Correcting Words
1. Replacing words matching regular expressions앞의 포스팅(Stemming, Lemmatizing)에서는 언어의 압축(linguistic compression)이었다면 Word Replacement는 텍스트 정규화(text normalization) 또는 오타 수정으로 볼 수 있다. 아래의 예제는 영어의 축약형 표현을 원래의 표현으로 바꿔주는 예제이다. 예를 들어, "can't → can not", "would've → would have"로 바꿔준다. replacers.py의 RegexpReplacer( )를 import 하여 구현하였다. r'(\w+)\'ve'는 've을 포함하는 단어들을 찾아서 '\g have'에서 've 앞의 단어를 g로 그룹핑한 뒤 have를..
NLP/NLTK
2016. 12. 26. 14:10