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 | 31 |
Tags
- python
- Java
- 선형대수
- NumPy
- 알고리즘
- LSTM
- RNN
- 딥러닝
- HelloWorld
- scrapy
- 코딩더매트릭스
- tensorflow
- hive
- C언어
- GRU
- hadoop2
- collections
- effective python
- 그래프이론
- 하둡2
- Sort
- 하이브
- 주식분석
- codingthematrix
- 파이썬
- graph
- yarn
- C
- 텐서플로
- recursion
Archives
- Today
- Total
목록Corpus (1)
EXCELSIOR
Chap03 -1 : Creating Custom Corpora(corpus, chunk)
1. Creating a wordlist corpuscorpus는 우리말로는 말뭉치라고 하며, 자연어 연구를 위해 특정한 목적을 가지고 언어의 표본을 추출한 집합이다. corpora는 corpus의 복수형이다. corpus는 라틴어가 어원이다. 특정한 언어 영역 내에서 언어 규칙 발생의 검사와 그 규칙의 정당성 입증에 사용된다. NLTK 모듈의 WordListCorpusReader 클래스는 가장 단순한 CorpusReader 클래스 중 하나이다. WordListCorpusReader클래스는 한 줄에 한 단어로 리스팅 되어있는 파일에 사용할 수 있다. 우선, WordListCorpusReader를 사용하기 위해 아래와 같이 'wordlist.txt' 라는 파일을 생성한 다음 WordListCorpusRea..
NLP/NLTK
2017. 1. 6. 18:27