일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- hive
- collections
- GRU
- C
- NumPy
- scrapy
- 파이썬
- HelloWorld
- 알고리즘
- LSTM
- 딥러닝
- Java
- recursion
- graph
- 선형대수
- codingthematrix
- 텐서플로
- tensorflow
- effective python
- C언어
- 하이브
- 코딩더매트릭스
- RNN
- Sort
- hadoop2
- 그래프이론
- 주식분석
- python
- 하둡2
- yarn
- Today
- Total
목록corpora (2)
EXCELSIOR
1. Creating a categorized text corpus대량의 corpus로 이루어진 텍스트를 섹션을 나누어 카테고리화 하면 문서를 체계화 하거나, 분류(classification)하는데 유용하다. 다음 movie review에 대한 텍스트를 긍정(Pos)와 부정(Neg)로 카테고리화 해보자1) movie_pos.txt: the thin red line is flawed but it provokes. 2) movie_neg.txt: a big-budget and glossy production can not make up for a lack of spontaneity that permeates their tv show.CategorizedPlaintextCorpusReader 클래스를 이용하여..
1. Creating a wordlist corpuscorpus는 우리말로는 말뭉치라고 하며, 자연어 연구를 위해 특정한 목적을 가지고 언어의 표본을 추출한 집합이다. corpora는 corpus의 복수형이다. corpus는 라틴어가 어원이다. 특정한 언어 영역 내에서 언어 규칙 발생의 검사와 그 규칙의 정당성 입증에 사용된다. NLTK 모듈의 WordListCorpusReader 클래스는 가장 단순한 CorpusReader 클래스 중 하나이다. WordListCorpusReader클래스는 한 줄에 한 단어로 리스팅 되어있는 파일에 사용할 수 있다. 우선, WordListCorpusReader를 사용하기 위해 아래와 같이 'wordlist.txt' 라는 파일을 생성한 다음 WordListCorpusRea..