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
- 머신러닝
- 기사
- 코딩도장
- 사이킷런
- 데이터사이언스 스쿨
- 카카오
- 제어문
- 데이터사이언티스트
- 함수
- numpy
- 파이썬코딩도장
- 딥러닝
- 스크랩
- 딕셔너리
- 추천시스템
- 재귀함수
- 후기
- 제로베이스 데이터사이언스
- 자연어처리
- Set
- 속성
- TensorFlow
- AI
- 데이터분석
- 클래스
- Python
- NLP
- 아이펠
- 파이썬
- AIFFEL
Archives
- Today
- Total
목록RNN (1)
뮤트 개발일지
AIFFEL 아이펠 18일차
영화리뷰 텍스트 감성분석하기 IMDB 영화리뷰 감성분석 # 인코딩 함수 def get_encoded_sentences(sentences, word_to_index): return [get_encoded_sentence(sentence, word_to_index) for sentence in sentences] encoded_sentences = get_encoded_sentences(sentences, word_to_index) # decode 함수 def get_decoded_sentence(encoded_sentence, index_to_word): return ' '.join(index_to_word[index] if index in index_to_word else '' for index in e..
AIFFEL
2022. 1. 25. 15:41