6. Backpropagation
1. Q개의 데이터셋이 존재함
2. Forward Pass
3. Error Computation : 출력 뉴런의 에러를 계산
4. compute Weight Changes : 출력 레이어부터 역순으로 가중치
업데이트
5. 네트워크의 모든 가중치 업데이트
6. 1~5를 global error function이 원하는 임계치에 도달할때까지
반복
6
28. Batch, Stochastic and Mini Batch Mode Training
Stochastic (Pattern) mode:
단일 패턴이 존재
local error gradient 계산
네트워크 weight 변경
Batch mode:
global error gradient를 전체 epoch에 대해 수집
최초 네트워크 N0의 가중치를 한번에 업데이트
28