notmax123 commited on
Commit
49df439
·
verified ·
1 Parent(s): cd392e3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +26 -3
README.md CHANGED
@@ -1,3 +1,26 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # Light-BlueTTS Model Checkpoints
6
+
7
+ This repository contains the training checkpoints and stats files for the [Light-BlueTTS](https://github.com/maxmelichov/BlueTTS) speech synthesis system.
8
+
9
+ ## Checkpoints Directory
10
+
11
+ If you are following the finetuning or training instructions, download these weights:
12
+
13
+ - `blue_codec.safetensors`: The standalone trained Audio Codec. Used for translating to/from discrete/continuous latents.
14
+ - `stats_multilingual.pt`: The statistical data containing the latent means and standard deviations computed from the corpus.
15
+ - `vf_estimator.safetensors`: The combined Text-to-Latent acoustic checkpoints (includes text encoder, reference encoder, and the Flow Matching model).
16
+ - `duration_predictor_final.pt`: The Duration Predictor checkpoint.
17
+
18
+ ## Setup Instructions
19
+
20
+ To train or finetune, download this repository to your codebase:
21
+
22
+ ```bash
23
+ huggingface-cli download notmax123/Blue --local-dir pt_weights
24
+ ```
25
+
26
+ For more specifics, see the [Training Guide](https://github.com/maxmelichov/BlueTTS/tree/main/training).