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
- 디버깅
- PT 운동
- 논문 리뷰
- 바디프로필
- 라섹 수술 후기
- 코딩테스트
- 개인 PT
- 건강
- 프로그래머스
- 개발자
- Knowledge Tracing
- 개인 운동
- 티스토리챌린지
- 운동
- 하체운동
- 덤벨운동
- 코드
- 영화 비평
- 개인 피티
- github
- 코테 공부
- 바프준비
- 체스트프레스
- 연구 시작
- 데드리프트
- 오블완
- 암풀다운
- 다이어트
- 코테준비
- pytorch
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? (0) | 2021.06.20 |