File size: 1,902 Bytes
c008167 31b6def c008167 b9a57ee c008167 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
---
license: llama3.2
base_model: yarenty/llama32-datafusion-instruct
tags:
- text-generation
- instruction
- datafusion
- rust
- code
- gguf
---
# Llama 3.2 DataFusion Instruct (GGUF)
This repository contains the GGUF version of the `yarenty/llama32-datafusion-instruct` model, quantized for efficient inference on CPU and other compatible hardware.
For full details on the model, including its training procedure, data, intended use, and limitations, please see the **[full model card](https://huggingface.co/yarenty/llama32-datafusion-instruct)**.
## Model Details
- **Base model:** [yarenty/llama32-datafusion-instruct](https://huggingface.co/yarenty/llama32-datafusion-instruct)
- **Format:** GGUF
- **Quantization:** `Q4_K_M`
## Prompt Template
This model follows the same instruction prompt template as the base model:
```
### Instruction:
{Your question or instruction here}
### Response:
```
## Usage
These files are compatible with tools like `llama.cpp` and `Ollama`.
### With Ollama
```bash
ollama pull jaro/llama32-datafusion-instruct
ollama run jaro/llama32-datafusion-instruct "How do I use the Ballista scheduler?"
```
### With llama.cpp
```bash
./main -m llama32_datafusion.gguf --color -p "### Instruction:\nHow do I use the Ballista scheduler?\n\n### Response:" -n 256 --stop "### Instruction:" --stop "### Response:" --stop "### End"
```
## Citation
If you use this model, please cite the original base model:
```
@misc{yarenty_2025_llama32_datafusion_instruct,
author = {yarenty},
title = {Llama 3.2 DataFusion Instruct},
year = {2025},
publisher = {Hugging Face},
journal = {Hugging Face repository},
howpublished = {\url{https://huggingface.co/yarenty/llama32-datafusion-instruct}}
}
```
## Contact
For questions or feedback, please open an issue on the Hugging Face repository or the [source GitHub repository](https://github.com/yarenty/trainer). |