Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,21 +1,43 @@
|
|
| 1 |
---
|
| 2 |
base_model: unsloth/orpheus-3b-0.1-ft
|
| 3 |
tags:
|
| 4 |
-
- text-
|
| 5 |
-
-
|
| 6 |
-
-
|
| 7 |
-
-
|
|
|
|
| 8 |
license: apache-2.0
|
| 9 |
language:
|
| 10 |
-
-
|
|
|
|
|
|
|
| 11 |
---
|
|
|
|
| 12 |
|
| 13 |
-
|
| 14 |
|
| 15 |
-
-
|
| 16 |
-
|
| 17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
-
|
| 20 |
|
| 21 |
-
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
|
|
|
| 1 |
---
|
| 2 |
base_model: unsloth/orpheus-3b-0.1-ft
|
| 3 |
tags:
|
| 4 |
+
- text-to-speech
|
| 5 |
+
- TTS
|
| 6 |
+
- Bangla
|
| 7 |
+
- Orpheus
|
| 8 |
+
- fine-tuned
|
| 9 |
license: apache-2.0
|
| 10 |
language:
|
| 11 |
+
- bn
|
| 12 |
+
datasets:
|
| 13 |
+
- utshobs/bangla-tts-v2
|
| 14 |
---
|
| 15 |
+
# 🎙️ Orpheus 3B TTS — Bangla (Fine-tuned)
|
| 16 |
|
| 17 |
+
This model is a **fine-tuned version of Orpheus 3B** specialized for **Bangla text-to-speech (TTS)**.
|
| 18 |
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
## 🧠 Model Overview
|
| 22 |
+
- **Base Model:** [unsloth/orpheus-3b-0.1-ft](https://huggingface.co/unsloth/orpheus-3b-0.1-ft)
|
| 23 |
+
- **Fine-tuned Dataset:** [utshobs/bangla-tts-v2](https://huggingface.co/datasets/utshobs/bangla-tts-v2)
|
| 24 |
+
- **Language:** Bengali (Bangla)
|
| 25 |
+
- **Task:** Text-to-Speech (TTS)
|
| 26 |
+
- **Framework:** Transformers + PyTorch
|
| 27 |
+
|
| 28 |
+
---
|
| 29 |
+
|
| 30 |
+
## 🚀 Quick Usage
|
| 31 |
+
```python
|
| 32 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 33 |
+
tokenizer = AutoTokenizer.from_pretrained("utshobs/Orpheus_3B_TTS_Bangla_V4")
|
| 34 |
+
model = AutoModelForCausalLM.from_pretrained("utshobs/Orpheus_3B_TTS_Bangla_V4")
|
| 35 |
+
|
| 36 |
+
🪪 License
|
| 37 |
+
|
| 38 |
+
Apache 2.0 License
|
| 39 |
+
|
| 40 |
+
👤 Author
|
| 41 |
|
| 42 |
+
Fine-tuned and prepared by Utshob.
|
| 43 |
|
|
|