Views
No views yet
🚀 Optimized with an Importance Matrix (imatrix). Unlike standard quantizations that calibrate on random data, this build was processed with a dense text corpus (The Adventures of Sherlock Holmes) to compute a high-fidelity Importance Matrix. This preserves the model's most influential weights, yielding lower perplexity and better reasoning than plain K-quants at the same bit width.
llama.cpp on macOS, and portable to Linux and Windows.| Filename | Quant Type | Size | Use Case |
|---|---|---|---|
TinyLlama-1.1B-Chat-v1.0-Q4_K_M.gguf | Q4_K_M | ~700 MB | 🌟 Recommended. Best balance of speed and quality. |
llama.cpp (command line)1# Point -m at the downloaded .gguf file
2./llama-cli -m TinyLlama-1.1B-Chat-v1.0-Q4_K_M.gguf \
3 -p "Hello, how are you?" \
4 -n 400 -ellama-cli -hf deepsky-ia/TinyLlama-1.1B-Chat-v1.0-GGUF-MacQuantized:Q4_K_Mllama-cpp-python1# pip install llama-cpp-python
2from llama_cpp import Llama
3
4llm = Llama.from_pretrained(
5 repo_id="deepsky-ia/TinyLlama-1.1B-Chat-v1.0-GGUF-MacQuantized",
6 filename="TinyLlama-1.1B-Chat-v1.0-Q4_K_M.gguf",
7)
8
9llm.create_chat_completion(
10 messages=[{"role": "user", "content": "What is the capital of France?"}]
11)ollama run hf.co/deepsky-ia/TinyLlama-1.1B-Chat-v1.0-GGUF-MacQuantized:Q4_K_Mdeepsky-ia/TinyLlama-1.1B-Chat-v1.0-GGUF-MacQuantized inside the app and download the Q4_K_M file.1<|system|>
2You are a helpful assistant.</s>
3<|user|>
4{your message}</s>
5<|assistant|>llama.cpp and compatible runtimes)1@misc{salmeron_tinyllama_imatrix,
2 author = {Salmeron, Jose L.},
3 title = {TinyLlama 1.1B Chat GGUF (Imatrix Quantized)},
4 year = {2026},
5 publisher = {Hugging Face},
6 doi = {10.57967/hf/7849},
7 url = {https://huggingface.co/deepsky-ia/TinyLlama-1.1B-Chat-v1.0-GGUF-MacQuantized}
8}