https://d2l.ai/chapter_linear-classification/index.html
4. Linear Neural Networks for Classification
Now that you have worked through all of the mechanics you are ready to apply these skills to broader kinds of tasks. Even as we pivot towards classification, most of the plumbing remains the same: loading the data, passing it through the model, generating output, calculating the loss, taking gradients with respect to weights, and updating the model. However, the precise form of the targets, the parameterization of the output layer, and the choice of loss function will adapt to suit the classification setting.
이제 모든 메커니즘을 살펴보았으므로 이러한 기술을 더 광범위한 종류의 작업에 적용할 준비가 되었습니다. 분류로 전환하더라도 대부분의 배관 작업은 동일하게 유지됩니다. 즉, 데이터 로드, 모델에 데이터 전달, 출력 생성, 손실 계산, 가중치에 대한 그래디언트 적용 및 모델 업데이트입니다. 그러나 대상의 정확한 형태, 출력 계층의 매개변수화 및 손실 함수 선택은 분류 설정에 맞게 조정됩니다.
- 4.1. Softmax Regression
- 4.2. The Image Classification Dataset
- 4.3. The Base Classification Model
- 4.4. Softmax Regression Implementation from Scratch
- 4.5. Concise Implementation of Softmax Regression
- 4.6. Generalization in Classification
- 4.7. Environment and Distribution Shift
'Dive into Deep Learning > D2L Linear Neural Networks' 카테고리의 다른 글
D2L - 4.5. Concise Implementation of Softmax Regression¶ (0) | 2023.06.27 |
---|---|
D2L - 4.4. Softmax Regression Implementation from Scratch (0) | 2023.06.26 |
D2L - 4.3. The Base Classification Model (0) | 2023.06.26 |
D2L - 4.2. The Image Classification Dataset (0) | 2023.06.26 |
D2L 4.1. Softmax Regression (0) | 2023.06.26 |
D2L - Local Environment Setting (0) | 2023.06.26 |
D2L - 3.5. Concise Implementation of Linear Regression, 이미지 분류 데이터 (Fashion-MNIST) (0) | 2023.06.22 |
D2L - 3.4. Linear Regression Implementation from Scratch , Softmax 회귀(regression) (0) | 2023.06.22 |
D2L - 3.3. Synthetic Regression Data (0) | 2023.06.22 |
D2L 3.2. Object-Oriented Design for Implementation (0) | 2023.06.22 |