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