Cal3bd3v commited on
Commit
8d32fb8
·
verified ·
1 Parent(s): 10278d3

Transfer from cxlrd/luganda-tts-v3

Browse files
Files changed (4) hide show
  1. .gitattributes +2 -0
  2. README.md +34 -0
  3. luganda_fastpitch.nemo +3 -0
  4. luganda_hifigan.nemo +3 -0
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ luganda_fastpitch.nemo filter=lfs diff=lfs merge=lfs -text
37
+ luganda_hifigan.nemo filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: lg
3
+ license: apache-2.0
4
+ tags: [text-to-speech, tts, nemo, luganda, african-languages]
5
+ datasets: [Sunbird/salt]
6
+ ---
7
+
8
+ # Luganda TTS v3
9
+
10
+ Text-to-Speech system for Luganda using NVIDIA NeMo.
11
+
12
+ ## Models
13
+ | Model | Description | Size |
14
+ |-------|-------------|------|
15
+ | `luganda_fastpitch.nemo` | FastPitch spectrogram generator | 187 MB |
16
+ | `luganda_hifigan.nemo` | HiFi-GAN neural vocoder | 339 MB |
17
+
18
+ ## Training
19
+ - **Dataset**: Sunbird/salt (~2,380 samples, 2.69 hours)
20
+ - **FastPitch**: 20,000 steps
21
+ - **HiFi-GAN**: 20,000 steps
22
+ - **Sample Rate**: 22,050 Hz
23
+
24
+ ## Usage
25
+ ```python
26
+ from nemo.collections.tts.models import FastPitchModel, HifiGanModel
27
+
28
+ fastpitch = FastPitchModel.restore_from("luganda_fastpitch.nemo")
29
+ hifigan = HifiGanModel.restore_from("luganda_hifigan.nemo")
30
+
31
+ text = "Oli otya?"
32
+ spec = fastpitch.generate_spectrogram(tokens=fastpitch.parse(text))
33
+ audio = hifigan.convert_spectrogram_to_audio(spec=spec)
34
+ ```
luganda_fastpitch.nemo ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1eddc12da7d377bb3bf1dc0dc3a761dc86a0f4bdd153577faf528c1d1e23d759
3
+ size 187023360
luganda_hifigan.nemo ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9d19d517bcb3042fe3c776fe151894f98e3ae96825f1d14b0c62b81a69e0681
3
+ size 339210240