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
- 프로그래머스
- 코드
- 티스토리챌린지
- 오블완
- PT 운동
- 바디프로필
- 하체운동
- 개인 PT
- 운동
- 데드리프트
- 다이어트
- 건강
- 코딩테스트
- 바프준비
- 디버깅
- 영화 비평
- 개인 피티
- 코테 공부
- pytorch
- 덤벨운동
- 개인 운동
- 개발자
- 라섹 수술 후기
- 암풀다운
- 체스트프레스
- Knowledge Tracing
- 코테준비
- 논문 리뷰
- 연구 시작
- github
Archives
- Today
- Total
치즈의 AI 녹이기
Teacher Forcing 본문
Teacher forcing is a strategy for training rnn networks that uses ground truth as input, instead of model output from a prior time step as an input.
But, the approach can also result in models that may be fragile to test data.
Curriculum learning, a variation of forced learning, involves randomly choosing to use the ground truth output or the generated output form the previous time step as input for the current time step.
참고한 사이트 링크: https://machinelearningmastery.com/teacher-forcing-for-recurrent-neural-networks/
'인공지능 대학원생의 생활 > 구글링' 카테고리의 다른 글
Batch normalization vs Layer normalization (0) | 2021.06.24 |
---|---|
Weight decay (0) | 2021.06.24 |
Hard Negative Mining (0) | 2021.06.22 |
No module named 'apex' (0) | 2021.06.20 |
How can I process multi loss in pytorch? (1) | 2021.06.20 |