File size: 1,685 Bytes
6395ac8
34d9066
 
 
 
 
 
 
 
 
 
 
 
 
6395ac8
34d9066
 
 
6395ac8
34d9066
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
base_model: Maxilicious20/Aether-2.5-Coder-3B
library_name: gguf
pipeline_tag: text-generation
tags:
- base_model:adapter:Qwen/Qwen2.5-Coder-3B-Instruct
- gguf
- quantized
- llama-cpp
- coding
- code-generation
- german
- english
- aether
license: apache-2.0
language:
- de
- en
---

# Aether 2.5 Coder - GGUF

This repository contains the quantized GGUF format binaries for **Aether 2.5 Coder**, fine-tuned from **Qwen2.5-Coder-3B-Instruct**. These files are optimized for local inference using tools like **LM Studio**, **Ollama**, **Jan**, **text-generation-webui**, or **llama.cpp**.

> ๐Ÿ”— **Original LoRA / Adapter Repository:**
> ๐Ÿ‘‰ **[Maxilicious20/Aether-2.5-Coder](https://huggingface.co/Maxilicious20/Aether-2.5-Coder)**

---

## ๐Ÿ“ฆ Available Files

| File Name | Quant Method | File Size | Description |
| :--- | :--- | :--- | :--- |
| `aether_coder_q4_k_m.gguf` | Q4_K_M | ~2.0 GB | **Recommended:** Best balance between performance, low VRAM usage, and speed. |
| `aether_coder_q8_0.gguf` | Q8_0 | ~3.4 GB | **High Quality:** Extremely close to 16-bit precision with minimal loss in accuracy. |
| `aether_coder_f16.gguf` | F16 | ~6.2 GB | **Uncompressed:** Unquantized full-precision GGUF export. |

---

## ๐Ÿš€ How to Use

### 1. LM Studio / Jan / Local WebUIs
1. Download `aether_coder_q4_k_m.gguf` or `aether_coder_q8_0.gguf`.
2. Move the `.gguf` file into your local models folder.
3. Select the model and start chatting or coding!

### 2. Ollama
Create a custom `Modelfile`:

```dockerfile
FROM ./aether_coder_q4_k_m.gguf

SYSTEM """You are Aether 2.5 Coder, an expert AI programming assistant."""

PARAMETER stop "<|im_start|>"
PARAMETER stop "<|im_end|>"