치즈의 AI 녹이기

Teacher Forcing 본문

인공지능 대학원생의 생활/구글링

Teacher Forcing

개발자 치즈 2021. 6. 22. 13:47

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