Maxilicious20 commited on
Commit
ff49bcf
Β·
verified Β·
1 Parent(s): 71e61d2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -18
README.md CHANGED
@@ -1,35 +1,53 @@
1
  ---
2
- language:
3
- - en
4
- license: apache-2.0
5
- base_model: Maxilicious20/Aether-2.5
6
  tags:
7
  - gguf
8
- - llama-cpp
9
- - mono-ai
10
  - aether
11
- - quantization
 
 
 
 
 
 
 
12
  ---
13
 
14
- # 🌌 Aether 2.5 β€” GGUF Quantizations
 
 
15
 
16
- This repository contains official **GGUF quantizations** of [Maxilicious20/Aether-2.5](https://huggingface.co/Maxilicious20/Aether-2.5), optimized for local execution via `llama.cpp`, LM Studio, Ollama, and mobile runtimes (MonoAI).
17
 
18
- > πŸ”— **Base Model:** Access the unquantized merged PyTorch weights at [Maxilicious20/Aether-2.5](https://huggingface.co/Maxilicious20/Aether-2.5).
 
 
19
 
20
  ---
21
 
22
- ## πŸ’Ύ Provided Files & Quantizations
23
 
24
- | File | Size | Recommended Use Case |
25
- | :--- | :--- | :--- |
26
- | `Aether-2.5-3B-Q4_K_M.gguf` | ~2.0 GB | **Best for Mobile / Low VRAM:** Fast execution, minimal RAM usage. Perfect for Android/iOS or lightweight local apps. |
27
- | `Aether-2.5-3B-Q8_0.gguf` | ~3.4 GB | **Best for Desktop (RTX GPUs):** Near-lossless precision compared to FP16. High accuracy for desktop inference. |
 
 
 
28
 
29
  ---
30
 
31
- ## πŸš€ How to Run
 
 
 
 
 
 
32
 
33
- ### Using `llama.cpp` CLI:
 
34
  ```bash
35
- ./llama-cli -m Aether-2.5-3B-Q4_K_M.gguf -p "You are a highly capable AI assistant developed by Mono AI Studio.\nUser: Hello! What can you do?\nAssistant:" -n 256
 
1
  ---
2
+ library_name: gguf
 
 
 
3
  tags:
4
  - gguf
5
+ - llama.cpp
6
+ - lm-studio
7
  - aether
8
+ - german
9
+ - english
10
+ - text-generation
11
+ license: apache-2.0
12
+ language:
13
+ - de
14
+ - en
15
+ base_model: Maxilicious20/Aether-2.5
16
  ---
17
 
18
+ # Aether 2.5 - GGUF
19
+
20
+ Pre-quantized GGUF binaries for **Aether 2.5**, scaling up to the powerful **Qwen2.5-3B-Instruct** base architecture.
21
 
22
+ Trained with SFT (Supervised Fine-Tuning) and PEFT (LoRA) on a custom 3 GB dataset using local NVIDIA RTX GPU acceleration, Aether 2.5 delivers high intelligence, robust conversational capabilities, and exceptional multilingual performance in German and English.
23
 
24
+ > πŸ”— **Looking for the Base / LoRA Adapter?**
25
+ > If you want to use the Hugging Face Transformers PEFT adapter instead, check out the main repository:
26
+ > πŸ‘‰ **[Maxilicious20/Aether-2.5](https://huggingface.co/Maxilicious20/Aether-2.5)**
27
 
28
  ---
29
 
30
+ ## πŸ“¦ Available Files & Quantizations
31
 
32
+ Choose the right file depending on your system's VRAM/RAM and performance needs:
33
+
34
+ | Filename | Quantization | Quality | Size | Description / Recommendation |
35
+ | :--- | :--- | :--- | :--- | :--- |
36
+ | `aether_2_5_fp16.gguf` | FP16 / F16 | Maximum | ~5.75 GB | Uncompressed full precision. Best quality, requires more VRAM. |
37
+ | `Aether-2.5-3B-Q8_0.gguf` | Q8_0 | Very High | ~3.05 GB | Near-lossless quantization. Excellent balance of precision and speed. |
38
+ | `Aether-2.5-3B-Q4_K_M.gguf` | Q4_K_M | Balanced | ~1.79 GB | **Recommended.** Best compromise between speed, size, and minimal quality loss. |
39
 
40
  ---
41
 
42
+ ## πŸš€ How to Run Locally
43
+
44
+ ### 1. LM Studio
45
+ 1. Open LM Studio.
46
+ 2. Search for `Maxilicious20/Aether-2.5-GGUF` or paste the repo ID.
47
+ 3. Download your preferred quantization (e.g., `Aether-2.5-3B-Q4_K_M.gguf`).
48
+ 4. Load the model and start chatting!
49
 
50
+ ### 2. Ollama / llama.cpp
51
+ You can run the GGUF file directly using `llama.cpp`:
52
  ```bash
53
+ ./llama-cli -m Aether-2.5-3B-Q4_K_M.gguf -p "Hello Aether!" -n 256