[{
"type": "thumb-down",
"id": "missingTheInformationINeed",
"label":"Missing the information I need"
},{
"type": "thumb-down",
"id": "tooComplicatedTooManySteps",
"label":"Too complicated / too many steps"
},{
"type": "thumb-down",
"id": "outOfDate",
"label":"Out of date"
},{
"type": "thumb-down",
"id": "translationIssue",
"label":"Translation issue"
},{
"type": "thumb-down",
"id": "samplesCodeIssue",
"label":"Samples/Code issue"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"Other"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"Easy to understand"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"Solved my problem"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"Other"
}]
신경망 학습
역전파는 신경망의 가장 일반적인 학습 알고리즘입니다.
다계층 신경망에서 경사하강법을 사용하려면 이 알고리즘이 필요합니다.
텐서플로우는 역전파를 자동으로 처리하므로 알고리즘을 자세히 이해할 필요는 없습니다. 이 알고리즘의 원리를
이해하려면
역전파 알고리즘 시각적 설명을 참조하세요.
이 설명 과정을 진행하면서 다음 사항에 주목하세요.
데이터가 그래프를 통과하는 방식
동적 프로그래밍을 사용하면 기하급수적으로 증가하는 그래프 통과 경로를
일일이 계산할 필요가 없는 이유. 여기에서 '동적 프로그래밍'은 정방향 및 역방향 전달에서
중간 결과를 기록함을 의미합니다.