Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
tags:
|
4 |
+
- voice-cloning
|
5 |
+
- text-to-speech
|
6 |
+
- chatterbox
|
7 |
+
- audio-generation
|
8 |
+
---
|
9 |
+
|
10 |
+
# Chatterbox Voice Cloning Model Files
|
11 |
+
|
12 |
+
This repository contains the model files for the Chatterbox Voice Cloning application.
|
13 |
+
|
14 |
+
## Model Files
|
15 |
+
|
16 |
+
- `s3gen.pt` - Speech synthesis generator model
|
17 |
+
- `t3_cfg.pt` - Text-to-speech configuration model
|
18 |
+
- `ve.pt` - Voice encoder model
|
19 |
+
- `tokenizer.json` - Text tokenizer configuration
|
20 |
+
|
21 |
+
## Usage
|
22 |
+
|
23 |
+
These files are automatically downloaded by the [Chatterbox Voice Cloning Space](https://huggingface.co/spaces/ramimu/chatterbox-voice-cloning) when it starts up.
|
24 |
+
|
25 |
+
You can also use them programmatically:
|
26 |
+
|
27 |
+
```python
|
28 |
+
from huggingface_hub import hf_hub_download
|
29 |
+
|
30 |
+
# Download a specific model file
|
31 |
+
model_path = hf_hub_download(
|
32 |
+
repo_id="ramimu/chatterbox-voice-cloning-model",
|
33 |
+
filename="s3gen.pt"
|
34 |
+
)
|
35 |
+
```
|
36 |
+
|
37 |
+
## Model Information
|
38 |
+
|
39 |
+
- **Library**: ChatterboxTTS
|
40 |
+
- **Task**: Voice Cloning / Text-to-Speech
|
41 |
+
- **Format**: PyTorch (.pt files)
|
42 |
+
- **Size**: ~3GB total
|