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