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
- Tomek links
- Text generation
- 거리 기반 이상탐지
- Clustering 기반 이상탐지
- 병리 AI
- GAN
- Digital Pathology
- Grad-CAM
- OCSVM
- Process Mining
- 국비지원교육
- One-Sided Selection
- Inatance segmentation
- auto encoder
- Condensed neares neighbor rule
- SQL 데이터 분석 첫걸음
- Fixed Learning
- Data Imbalance
- PM4Py
- Meta heuristic
- Random Undersampling
- Sequence data
- XAI
- Generative modeling
- Petri net
- 프로세스 마이닝
- multi modal
- 딥러닝
- 밀도 기반 이상탐지
- Gausian Density Estimation
Archives
- Today
- Total
목록Text generation (1)
Create Opportunities

Basic RNN Implementation 광운대학교 조민수 교수님의 데이터 애널리틱스 교과목 자료를 참고합니다. Pytorch → RNN 구현의 핵심적인 부분을 쉽게 정리한 내용입니다. 아래의 코드는 간단한 Text generation 과정의 주요 부분입니다. Encoding 함수 정의 # encoding 함수 정의 def string_to_onehot(string): start = np.zeros(shape = n_letters, dtype = int) # 시작 벡터와 end = np.zeros(shape = n_letters, dtype = int) # 마지막 벡터 start[-2] = 1 # 시작 벡터는 [0, 0, ... ,1, 0] end[-1] = 1 # 마지막 벡터는 [0, 0, ... ..
데이터 애널리틱스
2022. 11. 30. 23:39