Views
No views yet
آوا یک مدل تبدیل متن فارسی به گفتار است که بر پایهٔ Orpheus 3B تنظیم شده است.
| Direct base | unsloth/orpheus-3b-0.1-ft-unsloth-bnb-4bit |
| Method | LoRA, rank 128, alpha 256, dropout 0.05 |
| Target modules | attention, MLP projections, embeddings |
| Context | 4,096 tokens |
| Audio codec | SNAC 24 kHz |
| Language | Persian (fa) |
| Adapter storage | ~1.77 GB |
1import torch
2from peft import PeftModel
3from unsloth import FastLanguageModel
4
5model, tokenizer = FastLanguageModel.from_pretrained(
6 model_name="unsloth/orpheus-3b-0.1-ft-unsloth-bnb-4bit",
7 max_seq_length=4096,
8 dtype=torch.bfloat16,
9 load_in_4bit=True,
10)
11model = PeftModel.from_pretrained(model, "KEYHAN-A/aava-tts-persian")
12model.eval()| Setting | Value |
|---|---|
| Training records | 492,596 |
| Tokenized corpus | ~1,905.3 hours |
| Epochs / steps | 3 / 184,725 |
| Effective batch | 8 |
| Learning rate | 1.5e-4 |
| Scheduler | cosine with restarts |
| Optimizer | AdamW 8-bit |
| Precision | bfloat16 |
| Hardware | RTX 3090 24 GB |
| Training time | ~11 days |
| Reported eval loss | 4.2045 |
aava.1@misc{aava_tts_2026,
2 title = {Aava TTS: Persian Orpheus 3B Adapter},
3 author = {{KEYHAN-A}},
4 year = {2026},
5 version = {1.0.0},
6 url = {https://huggingface.co/KEYHAN-A/aava-tts-persian}
7}