일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- #opencv
- convexhull
- TensorFlow
- opencv SURF
- #영어 명언
- #영어
- text2img
- #Android
- word embedding
- 완전탐색
- #일상영어
- findContours
- tokenizing
- python __init__
- 딥러닝
- #English
- #프로젝트
- keras
- c언어
- 이미지 생성
- tensorflow update
- 영어
- object detection
- python list
- 영어명언
- #실생활 영어
- Convolution Neural Network
- #실생활영어
- python 알고리즘
- #1일1영어
- Today
- Total
목록NLP (2)
When will you grow up?
자연어 처리(natural language processing) NLP라고 불리며, 컴퓨터가 자연어의 의미를 분석하여 처리할 수 있도록 하는 과정이다. 크게 자연어 전처리, 학습, 활용 분야로 나뉠수 있다. 자연어 전처리 (natural language preprocessing) - 자연어 tokenizing : 형태소 분석, 단어 or 문장으로 나누기 등 - 단어 Indexing : dictionary 만들기 등 - 단어 representation : One hot encoding, Word Embedding, Word2Vec 등 학습 (Training) - ANN (Artificial Neural Network) - DNN (Deep Neural Network) - RNN (Recurrent Neur..
이번시간에는,Keras를 이용하여 IMDB dataset으로 NLP학습을 해보겠습니다.IMDB dataset은 스탠포드 연구원에 의해 수집되었으며,Large Movie Review Sentence dataset고, 문장에 따라 good(긍정) / bad(부정)으로 나뉘는 Label이 되어 있습니다. Keras로 IMDB 데이터셋을 불러오면training용 Data 25000 / test용 Data 25000로 구성이 되어있습니다.1234from keras.datasets import imdb #load the dataset(x_train, y_train), (x_test, y_test) = imdb.load_data()cs word Embedding 이란?- 자연어 처리 분야(NLP)에서 학습을 할 수 ..