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