Buckets:
| # llama.cpp | |
| [llama.cpp](https://github.com/ggml-org/llama.cpp) is a C/C++ inference engine for deploying large language models locally. It's lightweight and doesn't require Python, CUDA, or other heavy server infrastructure. llama.cpp uses the [GGUF](https://huggingface.co/blog/ngxson/common-ai-model-formats#gguf) file format. GGUF supports quantized model weights and memory-mapping to reduce memory bandwidth on your device. | |
| > [!TIP] | |
| > Browse the [Hub](https://huggingface.co/models?apps=llama.cpp&sort=trending) for models already available in GGUF format. | |
| Convert any Transformers model to GGUF format with the [convert_hf_to_gguf.py](https://github.com/ggml-org/llama.cpp/blob/master/convert_hf_to_gguf.py) script. | |
| ```bash | |
| python3 convert_hf_to_gguf.py ./models/openai/gpt-oss-20b \ | |
| --outfile gpt-oss-20b.gguf \ | |
| ``` | |
| Deploy the model locally from the command line with [llama-cli](https://github.com/ggml-org/llama.cpp/tree/master#llama-cli) or start a web UI with [llama-server](https://github.com/ggml-org/llama.cpp/tree/master#llama-server). Add the `-hf` flag to indicate the model is from the Hub. | |
| ```bash | |
| llama-cli -hf ggml-org/gpt-oss-20b-GGUF | |
| ``` | |
| ```bash | |
| llama-server -hf ggml-org/gpt-oss-20b-GGUF | |
| ``` | |
| ## Transformers integration | |
| 1. [AutoConfig.from_pretrained()](/docs/transformers/main/en/model_doc/auto#transformers.AutoConfig.from_pretrained) loads the model's `config.json` file to extract metadata. | |
| 2. [AutoTokenizer.from_pretrained()](/docs/transformers/main/en/model_doc/auto#transformers.AutoTokenizer.from_pretrained) extracts the vocabulary and tokenizer configuration. | |
| 3. Based on the `architectures` field in the config, the script selects a converter class from its internal registry. The registry maps Transformers architecture names (like [LlamaForCausalLM](/docs/transformers/main/en/model_doc/llama2#transformers.LlamaForCausalLM)) to corresponding converter classes. | |
| 4. The converter maps Transformers tensor names (for example, `model.layers.0.self_attn.q_proj.weight`) to GGUF tensor names, transforms tensors, and packages the vocabulary. | |
| 5. The output is a single GGUF file containing the model weights, tokenizer, and metadata. | |
| ## Resources | |
| - [llama.cpp](https://github.com/ggml-org/llama.cpp) documentation | |
| - [Introduction to ggml](https://huggingface.co/blog/introduction-to-ggml) blog post | |
Xet Storage Details
- Size:
- 2.35 kB
- Xet hash:
- ce3009f6d8948fd9647a01a4a60965b030a253cfcfa23b5644fb6d8b4d25ce4b
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.