Text Generation
PEFT
Safetensors
Transformers
GGUF
German
English
lora
sft
trl
german
english
aether
conversational
Instructions to use Maxilicious20/Aether-2.5 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Maxilicious20/Aether-2.5 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-3B-Instruct") model = PeftModel.from_pretrained(base_model, "Maxilicious20/Aether-2.5") - Transformers
How to use Maxilicious20/Aether-2.5 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Maxilicious20/Aether-2.5") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Maxilicious20/Aether-2.5", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Maxilicious20/Aether-2.5 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Maxilicious20/Aether-2.5" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Maxilicious20/Aether-2.5", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Maxilicious20/Aether-2.5
- SGLang
How to use Maxilicious20/Aether-2.5 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Maxilicious20/Aether-2.5" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Maxilicious20/Aether-2.5", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Maxilicious20/Aether-2.5" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Maxilicious20/Aether-2.5", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Maxilicious20/Aether-2.5 with Docker Model Runner:
docker model run hf.co/Maxilicious20/Aether-2.5
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,57 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
license: apache-2.0
|
| 5 |
+
base_model: Qwen/Qwen2.5-3B-Instruct
|
| 6 |
+
tags:
|
| 7 |
+
- mono-ai
|
| 8 |
+
- aether
|
| 9 |
+
- text-generation
|
| 10 |
+
- lora
|
| 11 |
+
- merged
|
| 12 |
+
pipeline_tag: text-generation
|
| 13 |
---
|
| 14 |
+
|
| 15 |
+
# 🌌 Aether 2.5
|
| 16 |
+
|
| 17 |
+
**Aether 2.5** is a fine-tuned 3-billion parameter instruction-following language model developed by **Mono AI Studio**. It is based on `Qwen/Qwen2.5-3B-Instruct` and optimized for enhanced reasoning, knowledge retrieval, and standard text benchmarks.
|
| 18 |
+
|
| 19 |
+
## 📊 Benchmark Results
|
| 20 |
+
|
| 21 |
+
Evaluated on a 6-benchmark evaluation suite (300 MC samples per benchmark):
|
| 22 |
+
|
| 23 |
+
| Benchmark | Aether 2.3 | Aether 2.5 | Improvement |
|
| 24 |
+
| :--- | :---: | :---: | :---: |
|
| 25 |
+
| **ARC-Challenge** | 45.3% | **48.3%** | +3.0% |
|
| 26 |
+
| **OpenBookQA** | 49.7% | **52.3%** | +2.6% |
|
| 27 |
+
| **MMLU** | 37.3% | **39.7%** | +2.4% |
|
| 28 |
+
| **HellaSwag** | 51.7% | **54.0%** | +2.3% |
|
| 29 |
+
| **Overall Average** | 33.2% | **33.6%** | **+0.4%** |
|
| 30 |
+
|
| 31 |
+
## 🚀 Usage
|
| 32 |
+
|
| 33 |
+
You can run this model locally using standard Hugging Face Transformers:
|
| 34 |
+
|
| 35 |
+
```python
|
| 36 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 37 |
+
import torch
|
| 38 |
+
|
| 39 |
+
model_name = "Maxilicious20/Aether-2.5"
|
| 40 |
+
|
| 41 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 42 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 43 |
+
model_name,
|
| 44 |
+
torch_dtype=torch.bfloat16 if torch.cuda.is_bf16_supported() else torch.float16,
|
| 45 |
+
device_map="auto"
|
| 46 |
+
)
|
| 47 |
+
|
| 48 |
+
messages = [
|
| 49 |
+
{"role": "system", "content": "You are a highly capable AI assistant developed by Mono AI Studio."},
|
| 50 |
+
{"role": "user", "content": "Explain quantum computing in simple terms."}
|
| 51 |
+
]
|
| 52 |
+
|
| 53 |
+
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 54 |
+
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
|
| 55 |
+
|
| 56 |
+
outputs = model.generate(**inputs, max_new_tokens=512)
|
| 57 |
+
print(tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:], skip_special_tokens=True))
|