Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Worth Doing AI
|
| 3 |
+
short_description: High-quality GGUF quantizations for local Mac inference
|
| 4 |
+
thumbnail: https://cdn-avatars.huggingface.co/v1/production/uploads/69dd63f1bb6154c42dfa1d49/4SVRV_yi-MhH6kz4yAY31.png
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# Worth Doing AI
|
| 8 |
+
|
| 9 |
+
We provide **high-quality GGUF quantizations** of the best open-source language models, optimized for **local inference on Apple Silicon Macs**.
|
| 10 |
+
|
| 11 |
+
## What We Do
|
| 12 |
+
|
| 13 |
+
We select the best small general-purpose models and quantize them using `llama.cpp` with carefully chosen quantization levels. Every model is tested on Apple Silicon hardware before release.
|
| 14 |
+
|
| 15 |
+
**Our focus:**
|
| 16 |
+
- Best-in-class small models (1.7B to 7B parameters)
|
| 17 |
+
- GGUF format compatible with Ollama, LM Studio, and llama.cpp
|
| 18 |
+
- Optimized for Apple Silicon (Metal GPU acceleration)
|
| 19 |
+
- Multiple quantization levels to fit any hardware
|
| 20 |
+
|
| 21 |
+
## Available Models
|
| 22 |
+
|
| 23 |
+
| Model | Parameters | Q4_K_M | Q5_K_M | Q8_0 |
|
| 24 |
+
|-------|-----------|--------|--------|------|
|
| 25 |
+
| [Qwen2.5-7B-Instruct-GGUF](https://huggingface.co/worthdoing/Qwen2.5-7B-Instruct-GGUF) | 7B | 4.4 GB | 5.1 GB | 7.5 GB |
|
| 26 |
+
| [Mistral-7B-Instruct-v0.3-GGUF](https://huggingface.co/worthdoing/Mistral-7B-Instruct-v0.3-GGUF) | 7B | 4.1 GB | 4.8 GB | 7.2 GB |
|
| 27 |
+
| [Phi-4-mini-GGUF](https://huggingface.co/worthdoing/Phi-4-mini-GGUF) | 3.8B | 2.3 GB | 2.6 GB | 3.8 GB |
|
| 28 |
+
| [Qwen2.5-3B-Instruct-GGUF](https://huggingface.co/worthdoing/Qwen2.5-3B-Instruct-GGUF) | 3B | 1.8 GB | 2.1 GB | 3.1 GB |
|
| 29 |
+
| [SmolLM2-1.7B-Instruct-GGUF](https://huggingface.co/worthdoing/SmolLM2-1.7B-Instruct-GGUF) | 1.7B | 1.0 GB | 1.1 GB | 1.7 GB |
|
| 30 |
+
|
| 31 |
+
## Quantization Levels
|
| 32 |
+
|
| 33 |
+
| Type | Bits per Weight | Best For |
|
| 34 |
+
|------|----------------|----------|
|
| 35 |
+
| **Q4_K_M** | ~4.6 bpw | **Recommended** - Best quality/size ratio for everyday use |
|
| 36 |
+
| **Q5_K_M** | ~5.3 bpw | Higher quality with minimal size increase |
|
| 37 |
+
| **Q8_0** | ~8.0 bpw | Near-original quality for maximum accuracy |
|
| 38 |
+
|
| 39 |
+
## Quick Start
|
| 40 |
+
|
| 41 |
+
### Ollama
|
| 42 |
+
```bash
|
| 43 |
+
# Download a GGUF file, then:
|
| 44 |
+
cat > Modelfile <<'EOF'
|
| 45 |
+
FROM ./qwen2.5-7b-instruct-Q4_K_M-worthdoing.gguf
|
| 46 |
+
EOF
|
| 47 |
+
ollama create qwen2.5-7b -f Modelfile
|
| 48 |
+
ollama run qwen2.5-7b
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
### llama.cpp
|
| 52 |
+
```bash
|
| 53 |
+
llama-cli -m qwen2.5-7b-instruct-Q4_K_M-worthdoing.gguf -p "Your prompt" -ngl 99
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
### LM Studio
|
| 57 |
+
Download any GGUF file and import it directly into LM Studio.
|
| 58 |
+
|
| 59 |
+
## Hardware Recommendations
|
| 60 |
+
|
| 61 |
+
| RAM | Recommended Models |
|
| 62 |
+
|-----|-------------------|
|
| 63 |
+
| **8 GB** | SmolLM2-1.7B (any quant), Qwen2.5-3B Q4_K_M/Q5_K_M |
|
| 64 |
+
| **16 GB** | Any 3-4B model (any quant), 7B models Q4_K_M |
|
| 65 |
+
| **32 GB+** | Any model, any quantization |
|
| 66 |
+
|
| 67 |
+
## About
|
| 68 |
+
|
| 69 |
+
Worth Doing AI is focused on making high-quality AI accessible for local, private use. All quantizations are performed with `llama.cpp` and verified on Apple Silicon hardware.
|
| 70 |
+
|
| 71 |
+
**Contact:** admin@worthdoing.ai
|