utshobs commited on
Commit
032fd0a
·
verified ·
1 Parent(s): e3e2458

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +33 -11
README.md CHANGED
@@ -1,21 +1,43 @@
1
  ---
2
  base_model: unsloth/orpheus-3b-0.1-ft
3
  tags:
4
- - text-generation-inference
5
- - transformers
6
- - unsloth
7
- - llama
 
8
  license: apache-2.0
9
  language:
10
- - en
 
 
11
  ---
 
12
 
13
- # Uploaded finetuned model
14
 
15
- - **Developed by:** utshobs
16
- - **License:** apache-2.0
17
- - **Finetuned from model :** unsloth/orpheus-3b-0.1-ft
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
- This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
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