tinyopsec/llama-3.2-1b-instruct-fine-tuned-GGUF
01.6k
llama-3.2-1b-instruct-fine-tuned GGUF
GGUF quantizations of ai-nexuz/llama-3.2-1b-instruct-fine-tuned.
Fine-tuned version of meta-llama/Llama-3.2-1B-Instruct on the kanhatakeyama/wizardlm8x22b-logical-math-coding-sft dataset. Specializes in logical reasoning, mathematics, and code generation.
Quantization Table
VRAM Requirements
Usage
llama.cpp
./llama-cli -m model_q4_k_m.gguf -p "Solve: 2x + 5 = 13" -n 256llama-cpp-python
from llama_cpp import Llama
llm = Llama(model_path="model_q4_k_m.gguf", n_ctx=2048)
output = llm("Solve: 2x + 5 = 13", max_tokens=256)
print(output["choices"][0]["text"])LM Studio
Search tinyopsec/llama-3.2-1b-instruct-fine-tuned-GGUF in the model browser.
Ollama
ollama run hf.co/tinyopsec/llama-3.2-1b-instruct-fine-tuned-GGUF:Q4_K_M