Billion parameters
Parameters are the learned values that make up a model. More parameters usually mean a more capable but larger model. This is the biggest driver of the memory needed to store its weights.
Determine exact GPU video memory (VRAM in GB) required for LLM inference or LoRA/full fine-tuning.
VRAM is the fast memory on a GPU. To run or train a model, the GPU needs room for the model itself, the conversation it is working through, and—when training—extra working memory. These controls estimate all three.
Parameters are the learned values that make up a model. More parameters usually mean a more capable but larger model. This is the biggest driver of the memory needed to store its weights.
This sets how many bits are used for each parameter. FP16 keeps more detail and uses the most memory; INT8 uses about half as much; INT4 uses about a quarter. Lower precision can make a model fit on smaller hardware, with possible quality or compatibility trade-offs.
Inference means generating answers with a finished model. LoRA fine-tuning teaches small adapter layers while keeping most weights fixed. Full fine-tuning updates the whole model and needs substantially more VRAM for gradients and optimizer state.
Tokens are pieces of text—roughly three quarters of an English word on average. Context length is the maximum amount of prompt, chat history, and generated text the model can keep in view at once. Longer context increases the KV cache, so it uses more VRAM.