Question 16
When configuring TrainingArguments for a Transformer model, we include a learning rate warmup phase (e.g., warmup_steps=500). Which of the following statements correctly describe the purpose and behavior of this strategy? (Select ALL that apply)
It involves linearly increasing the learning rate from 0 (or a small value) to the target maximum during the initial phase.
It helps prevent "divergence'' or instability caused by large gradients when the model weights are far from their optimal state.
It significantly reduces the VRAM (memory) required to store optimizer states.
After the warmup phase, the learning rate typically follows a decay schedule (like linear or cosine) to ensure convergence.