Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- text-to-speech
|
| 5 |
+
- tts
|
| 6 |
+
- chatterbox
|
| 7 |
+
- voice-cloning
|
| 8 |
+
language:
|
| 9 |
+
- en
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Chatterbox TTS Fine-Tuned Model
|
| 13 |
+
|
| 14 |
+
This is a fine-tuned version of the Chatterbox TTS model.
|
| 15 |
+
|
| 16 |
+
## Model Details
|
| 17 |
+
|
| 18 |
+
- **Base Model**: Chatterbox TTS Standard
|
| 19 |
+
- **Training Epochs**: 50
|
| 20 |
+
- **Batch Size**: 24
|
| 21 |
+
- **Learning Rate**: 5e-05
|
| 22 |
+
|
| 23 |
+
## Usage
|
| 24 |
+
|
| 25 |
+
```python
|
| 26 |
+
from huggingface_hub import hf_hub_download
|
| 27 |
+
from safetensors.torch import load_file
|
| 28 |
+
|
| 29 |
+
# Download the fine-tuned weights
|
| 30 |
+
model_path = hf_hub_download(
|
| 31 |
+
repo_id="Chandan683/chatterbox-finetuned",
|
| 32 |
+
filename="t3_finetuned.safetensors"
|
| 33 |
+
)
|
| 34 |
+
|
| 35 |
+
# Load weights
|
| 36 |
+
state_dict = load_file(model_path)
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
## Training Data
|
| 40 |
+
|
| 41 |
+
This model was fine-tuned on custom speech data.
|
| 42 |
+
|
| 43 |
+
## License
|
| 44 |
+
|
| 45 |
+
MIT License
|