finish chapter 6

This commit is contained in:
Joseph Hopfmüller
2022-10-17 13:04:51 +02:00
parent 31147133b6
commit 3ce77417fe
9 changed files with 155 additions and 6 deletions

11
06_training pipeline.md Normal file
View File

@@ -0,0 +1,11 @@
# Training Pipeline
a training pipeline generally consists of 3 steps:
1. Design model (input, output size, forward pass (layers))
2. Construct loss and optimizer
3. Training loop
- forward pass: compute prediction
- backward pass: gradient computation
- update parameters
(iterate step 3)