Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,10 +1,70 @@
|
|
| 1 |
---
|
| 2 |
title: README
|
| 3 |
-
emoji:
|
| 4 |
colorFrom: yellow
|
| 5 |
colorTo: pink
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
| 8 |
---
|
|
|
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
title: README
|
| 3 |
+
emoji: π»
|
| 4 |
colorFrom: yellow
|
| 5 |
colorTo: pink
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
short_description: Small, local models distilled from frontier teachers
|
| 9 |
---
|
| 10 |
+
# Advanced Data Intelligence
|
| 11 |
|
| 12 |
+
**Small, local, open models β distilled from frontier teachers.**
|
| 13 |
+
|
| 14 |
+
ADI is a line of compact language models built at [theLAB](https://thelabsource.com)
|
| 15 |
+
(*Learning. Algorithms. Breakthroughs.*). Each model is a **knowledge distillation**:
|
| 16 |
+
a strong frontier "teacher" generates high-quality answers across thousands of
|
| 17 |
+
prompts, and a small "student" model is fine-tuned to imitate them β producing a
|
| 18 |
+
model that reasons and responds like something much larger, while staying small
|
| 19 |
+
enough to run on a single consumer GPU.
|
| 20 |
+
|
| 21 |
+
Every model here is built end-to-end on theLAB hardware β no cloud training β then
|
| 22 |
+
quantized to GGUF and shipped ready to run in [Ollama](https://ollama.com) or any
|
| 23 |
+
llama.cpp-based runtime.
|
| 24 |
+
|
| 25 |
+
---
|
| 26 |
+
|
| 27 |
+
## Models
|
| 28 |
+
|
| 29 |
+
### π± adi-qwen3.5-4b-glm5.2-general
|
| 30 |
+
General-purpose local assistant. Qwen3.5-4B distilled from **glm-5.2**.
|
| 31 |
+
Reasons and explains like a frontier model on general topics. Native tool-calling,
|
| 32 |
+
262K context, ~2.7 GB.
|
| 33 |
+
|
| 34 |
+
```bash
|
| 35 |
+
ollama run hf.co/AdvancedDataIntelligence/adi-qwen3.5-4b-glm5.2-general-GGUF:Q4_K_M
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
### π± adi-qwen2.5-coder-7b-kimi2.7-code
|
| 39 |
+
Local coding assistant. Qwen2.5-Coder-7B distilled from **kimi-k2.7-code**.
|
| 40 |
+
Writes, explains, and debugs code with frontier-style quality. Native tool-calling,
|
| 41 |
+
128K context, ~4.4 GB.
|
| 42 |
+
|
| 43 |
+
```bash
|
| 44 |
+
ollama run hf.co/AdvancedDataIntelligence/adi-qwen2.5-coder-7b-kimi2.7-code-GGUF:Q4_K_M
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
---
|
| 48 |
+
|
| 49 |
+
## The approach
|
| 50 |
+
|
| 51 |
+
- **Distillation, not retraining.** We transfer a teacher's reasoning style and
|
| 52 |
+
answer quality into a small student β not net-new facts. For raw recall, pair
|
| 53 |
+
these with retrieval (RAG).
|
| 54 |
+
- **Local-first.** Every model runs fully offline on consumer hardware. No API, no
|
| 55 |
+
data leaving the machine.
|
| 56 |
+
- **Open.** Apache-2.0 where the base license allows, with full training details on
|
| 57 |
+
each model card so the work is reproducible.
|
| 58 |
+
|
| 59 |
+
---
|
| 60 |
+
|
| 61 |
+
## Naming
|
| 62 |
+
|
| 63 |
+
Models follow the pattern `adi-<base>-<size>-<teacher>-<purpose>` β so the name
|
| 64 |
+
tells you the student base, its size, the teacher it learned from, and what it's
|
| 65 |
+
tuned for.
|
| 66 |
+
|
| 67 |
+
---
|
| 68 |
+
|
| 69 |
+
*Built at [theLAB](https://thelabsource.com) β Learning. Algorithms. Breakthroughs.*
|
| 70 |
+
Edit this `README.md` markdown file to author your organization card.
|