Question 7
A model with 4B parameters (fp32) is being trained using the AdamW optimizer on a single 32GB GPU. Why is full fine-tuning impossible in this configuration?
The 4B parameters alone require 32GB of VRAM, leaving no room for the OS or CUDA kernels.
The optimizer states (32GB) plus the model weights (16GB) and gradients (16GB) exceed the 32GB VRAM limit.
The tokenizer is unable to map a context length of 2048 to a 32-bit integer space.
The fp32 precision requires 8 bytes per parameter, meaning the 4B model needs 64GB just to load.