303 B
303 B
Training Pipeline
a training pipeline generally consists of 3 steps:
- Design model (input, output size, forward pass (layers))
- Construct loss and optimizer
- Training loop
- forward pass: compute prediction
- backward pass: gradient computation
- update parameters
(iterate step 3)