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