Views
No views yet
| Attribute | Value |
|---|---|
| Base Model | google/gemma-3-12b-it |
| Quantization | NVFP4 (NVIDIA 4-bit floating point) |
| Target Hardware | NVIDIA Blackwell GPUs (B100, B200, GB200) |
| Original Parameters | 12B |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "yepthatsjason/gemma-3-12b-it-nvfp4"
4
5tokenizer = AutoTokenizer.from_pretrained(model_id)
6model = AutoModelForCausalLM.from_pretrained(
7 model_id,
8 device_map="auto",
9)