so commited on
Commit
49907a3
·
verified ·
1 Parent(s): d3cb159

Upload model checkpoints

Browse files
F5TTS_Hinglish_new/README.md ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ library_name: f5-tts
4
+ datasets:
5
+ - ujs/hinglish
6
+ language:
7
+ - hi
8
+ - en
9
+ pipeline_tag: text-to-speech
10
+ base_model:
11
+ - SPRINGLab/F5-Hindi-24KHz
12
+ tags:
13
+ - f5-tts
14
+ - hinglish
15
+ - hindi
16
+ - english
17
+ - code-switching
18
+ - voice-cloning
19
+ - tts
20
+ - fine-tuned
21
+ ---
22
+ # F5-TTS Hinglish
23
+
24
+ Fine-tuned F5-TTS for **Hinglish** (Hindi-English code-switched) TTS
25
+ with zero-shot voice cloning.
26
+
27
+ ## Dataset
28
+ [ujs/hinglish](https://huggingface.co/datasets/ujs/hinglish) —
29
+ **OpenSLR-104** (Hindi-English Code-Switching, IIT Guwahati).
30
+
31
+ ## Training Details
32
+ - **Base model:** SPRINGLab/F5-Hindi-24KHz (151M params, F5-TTS Small)
33
+ - **Learning rate:** 1e-05
34
+ - **Epochs:** 10
35
+ - **Batch size:** 3000 frames/GPU
36
+ - **Architecture:** DiT (dim=768, depth=18, heads=12) + ConvNeXt V2 (dim=512, layers=4)
37
+ - **Audio:** 24 kHz, 100-dim mel spectrogram, Vocos vocoder
38
+
39
+ ## Usage
40
+ ```python
41
+ from f5_tts.api import F5TTS
42
+ import soundfile as sf
43
+
44
+ tts = F5TTS(
45
+ model_type="F5-TTS",
46
+ ckpt_file="path/to/model_last.pt",
47
+ vocab_file="path/to/vocab.txt",
48
+ )
49
+
50
+ wav, sr, _ = tts.infer(
51
+ ref_file="reference.wav", # 3-10 s of target speaker
52
+ ref_text="yaar kya scene hai", # transcript of ref audio
53
+ gen_text="aaj ki meeting cancel ho gayi, let's go for lunch",
54
+ )
55
+
56
+ sf.write("output.wav", wav, sr)
57
+ ```
F5TTS_Hinglish_new/model_6000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01bcd505550f39565491cce2d838c7dfe857a9d759519240d8e2ff15823303e7
3
+ size 2528213295
F5TTS_Hinglish_new/model_7000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f61f47a9f6564345f36a14f3a003076abc10de2ce19d009e39232b3f3c3e45a
3
+ size 2528213295
F5TTS_Hinglish_new/model_8000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25fa18da695a8d2e49a66ecf23c266b7dc899537104324f5cb8f13e4181a26dc
3
+ size 2528213295
F5TTS_Hinglish_new/model_last.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:052f782125d0ad30a77471154ac06b9ae576f3144fc4a4913242504e8583e272
3
+ size 2528213295
F5TTS_Hinglish_new/pretrained_model_2500000.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:011d5b81535d21b91b22d78a06905c5253c0a360b873fd5a8b55eb21c134fd2f
3
+ size 632168041
Female-hindhi/README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ library_name: f5-tts
4
+ datasets:
5
+ - somu9/iisc_mono_hindi_female
6
+
7
+ language:
8
+ - hi
9
+ pipeline_tag: text-to-speech
10
+ base_model:
11
+ - SPRINGLab/F5-Hindi-24KHz
12
+ tags:
13
+ - f5-tts
14
+ - hindi
15
+ - tts
16
+ - fine-tuned
17
+ ---
18
+ # F5-TTS Hindi
19
+ Fine-tuned F5-TTS model for Hindi text-to-speech.
20
+ ## Training Details
21
+ - **Base model:** SPRINGLab/F5-Hindi-24KHz (151M params, F5-TTS Small)
22
+ - **Datasets:** somu9/iisc_mono_hindi_female (Studio-quality single-speaker Hindi female TTS dataset from the SYSPIN project by Indian Institute of Science (IISc), Bengaluru)
23
+ - **Learning rate:** 1e-05
24
+ - **Epochs:** 3
25
+ - **Batch size:** 200 frames/GPU
26
+ - **Architecture:** DiT (dim=768, depth=18, heads=12) + ConvNeXt V2 (dim=512, layers=4)
27
+ - **Audio:** 24kHz, 100-dim mel spectrogram, Vocos vocoder
28
+ ## Usage
29
+ ```python
30
+ from f5_tts.api import F5TTS
31
+ model = F5TTS(
32
+ model_type="F5-TTS",
33
+ ckpt_file="path/to/model_last.pt",
34
+ vocab_file="path/to/vocab.txt",
35
+ )
36
+ wav, sr, _ = model.infer(
37
+ ref_file="reference.wav",
38
+ ref_text="संदर्भ पाठ हिंदी में",
39
+ gen_text="आपका दिन शुभ हो",
40
+ )
41
+ ```
Female-hindhi/model_last.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d8f76c96a23eafeab3e1818004093c5ab3903fd41139bf0bf2308a5d6db88a8
3
+ size 2528213295
Female-hindhi/pretrained_model_2500000.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:011d5b81535d21b91b22d78a06905c5253c0a360b873fd5a8b55eb21c134fd2f
3
+ size 632168041
Female-hindhi/vocab.txt ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ !
3
+ "
4
+ #
5
+ $
6
+ %
7
+ &
8
+ '
9
+ (
10
+ )
11
+ *
12
+ +
13
+ ,
14
+ -
15
+ .
16
+ /
17
+ 0
18
+ 1
19
+ 2
20
+ 3
21
+ 4
22
+ 5
23
+ 6
24
+ 7
25
+ 8
26
+ 9
27
+ :
28
+ ;
29
+ =
30
+ >
31
+ ?
32
+ @
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+ ि
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
IndicVoices-R_Hindi/README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ library_name: f5-tts
4
+ datasets:
5
+ - SPRINGLab/IndicTTS-Hindi
6
+ - SPRINGLab/IndicVoices-R_Hindi
7
+ language:
8
+ - hi
9
+ pipeline_tag: text-to-speech
10
+ base_model:
11
+ - SPRINGLab/F5-Hindi-24KHz
12
+ tags:
13
+ - f5-tts
14
+ - hindi
15
+ - tts
16
+ - fine-tuned
17
+ ---
18
+ # F5-TTS Hindi
19
+ Fine-tuned F5-TTS model for Hindi text-to-speech.
20
+ ## Training Details
21
+ - **Base model:** SPRINGLab/F5-Hindi-24KHz (151M params, F5-TTS Small)
22
+ - **Datasets:** IndicTTS-Hindi + IndicVoices-R_Hindi
23
+ - **Learning rate:** 1e-05
24
+ - **Epochs:** 10
25
+ - **Batch size:** 200 frames/GPU
26
+ - **Architecture:** DiT (dim=768, depth=18, heads=12) + ConvNeXt V2 (dim=512, layers=4)
27
+ - **Audio:** 24kHz, 100-dim mel spectrogram, Vocos vocoder
28
+ ## Usage
29
+ ```python
30
+ from f5_tts.api import F5TTS
31
+ model = F5TTS(
32
+ model_type="F5-TTS",
33
+ ckpt_file="path/to/model_last.pt",
34
+ vocab_file="path/to/vocab.txt",
35
+ )
36
+ wav, sr, _ = model.infer(
37
+ ref_file="reference.wav",
38
+ ref_text="संदर्भ पाठ हिंदी में",
39
+ gen_text="आपका दिन शुभ हो",
40
+ )
41
+ ```
IndicVoices-R_Hindi/model_6000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9fbb18529fde01dda15133b8e7371d58f10ba0d7b7aac98157ea34d83df358f
3
+ size 2528213295
IndicVoices-R_Hindi/model_7000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67d1ecab225f8c5407034160276f88e30778fd7536b5544f65ab9128ef16f42e
3
+ size 2528213295
IndicVoices-R_Hindi/model_8000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fb85863ba6c51f58754325d677fc8fcd6aa4d96b083e537a90aac460dfcf7dd
3
+ size 2528213295
IndicVoices-R_Hindi/model_last.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49ce17feeb9bc885d5affb45efca33aff68067a6ece0d624a214f1dd063e74bf
3
+ size 2528213295
IndicVoices-R_Hindi/pretrained_model_2500000.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:011d5b81535d21b91b22d78a06905c5253c0a360b873fd5a8b55eb21c134fd2f
3
+ size 632168041
IndicVoices-R_Hindi/vocab.txt ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ !
3
+ "
4
+ #
5
+ $
6
+ %
7
+ &
8
+ '
9
+ (
10
+ )
11
+ *
12
+ +
13
+ ,
14
+ -
15
+ .
16
+ /
17
+ 0
18
+ 1
19
+ 2
20
+ 3
21
+ 4
22
+ 5
23
+ 6
24
+ 7
25
+ 8
26
+ 9
27
+ :
28
+ ;
29
+ =
30
+ >
31
+ ?
32
+ @
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+ ि
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+