Maxilicious20 commited on
Commit
aa7e359
·
verified ·
1 Parent(s): 934147e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -0
README.md CHANGED
@@ -11,6 +11,7 @@ tags:
11
  - german
12
  - english
13
  - aether
 
14
  license: apache-2.0
15
  language:
16
  - de
@@ -21,6 +22,10 @@ language:
21
 
22
  Aether 2.2 Pro is an upgraded, fine-tuned language model based on **Qwen2.5-1.5B-Instruct**. Trained using TRL and PEFT (LoRA), the Pro edition delivers enhanced reasoning, improved response structure, and refined multilingual performance in German and English while maintaining efficient local execution.
23
 
 
 
 
 
24
  ## Model Details
25
 
26
  ### Model Description
@@ -37,8 +42,20 @@ Aether 2.2 Pro is an upgraded, fine-tuned language model based on **Qwen2.5-1.5B
37
 
38
  This model is designed for advanced conversational AI, instruction following, and text generation tasks requiring higher precision than standard builds.
39
 
 
 
 
 
 
 
 
 
 
 
40
  ### How to Get Started with the Model
41
 
 
 
42
  Use the following Python code to load Aether 2.2 Pro with `transformers` and `peft`:
43
 
44
  ```python
 
11
  - german
12
  - english
13
  - aether
14
+ - gguf
15
  license: apache-2.0
16
  language:
17
  - de
 
22
 
23
  Aether 2.2 Pro is an upgraded, fine-tuned language model based on **Qwen2.5-1.5B-Instruct**. Trained using TRL and PEFT (LoRA), the Pro edition delivers enhanced reasoning, improved response structure, and refined multilingual performance in German and English while maintaining efficient local execution.
24
 
25
+ > 🚀 **Looking for GGUF versions?**
26
+ > If you want to run Aether 2.2 Pro locally via **LM Studio**, **Ollama**, or **llama.cpp**, check out the pre-quantized GGUF repository:
27
+ > 👉 **[Maxilicious20/Aether-2.2-Pro-GGUF](https://huggingface.co/Maxilicious20/Aether-2.2-Pro-GGUF)**
28
+
29
  ## Model Details
30
 
31
  ### Model Description
 
42
 
43
  This model is designed for advanced conversational AI, instruction following, and text generation tasks requiring higher precision than standard builds.
44
 
45
+ ### Quantized & GGUF Models
46
+
47
+ For standalone, CPU/GPU local execution without Python/Transformers dependencies, use the quantized GGUF binaries:
48
+
49
+ * 📦 **GGUF Repository:** [Maxilicious20/Aether-2.2-Pro-GGUF](https://huggingface.co/Maxilicious20/Aether-2.2-Pro-GGUF)
50
+ * **Available Quantizations:**
51
+ * `aether_2_2_pro_f16.gguf` (Uncompressed / Full Precision)
52
+ * `aether_2_2_pro_q8_0.gguf` (High Quality / 8-bit)
53
+ * `aether_2_2_pro_q4_k_m.gguf` (Recommended / Balanced Performance & VRAM)
54
+
55
  ### How to Get Started with the Model
56
 
57
+ #### Python (Transformers & PEFT)
58
+
59
  Use the following Python code to load Aether 2.2 Pro with `transformers` and `peft`:
60
 
61
  ```python