Add links to models.
Browse files
app.py
CHANGED
@@ -70,18 +70,18 @@ type=['wav'])
|
|
70 |
row1[2].write("**Audio**")
|
71 |
|
72 |
if base_mms is not None:
|
73 |
-
row2[0].write(f"Meta MMS")
|
74 |
row2[1].write("default")
|
75 |
row2[2].audio(base_mms[0], sample_rate = base_mms[1])
|
76 |
|
77 |
if base_coqui is not None:
|
78 |
-
row3[0].write(f"Coqui")
|
79 |
row3[1].write("default")
|
80 |
row3[2].audio(base_coqui[0], sample_rate = base_coqui[1])
|
81 |
|
82 |
if base_espeakng is not None:
|
83 |
|
84 |
-
row4[0].write(f"Espeak-ng")
|
85 |
row4[1].write("default")
|
86 |
row4[2].audio(base_espeakng[0], sample_rate = base_espeakng[1])
|
87 |
|
@@ -97,10 +97,10 @@ type=['wav'])
|
|
97 |
row1[2].write("**Audio**")
|
98 |
|
99 |
row2[0].write(f"Meta MMS")
|
100 |
-
row2[1].write("female 1")
|
101 |
row2[2].audio(finetuned_mms1[0], sample_rate = finetuned_mms1[1])
|
102 |
row3[0].write(f"Meta MMS")
|
103 |
-
row3[1].write("female 2")
|
104 |
row3[2].audio(finetuned_mms2[0], sample_rate = finetuned_mms2[1])
|
105 |
|
106 |
|
@@ -116,13 +116,13 @@ type=['wav'])
|
|
116 |
row1[2].write("**Audio**")
|
117 |
|
118 |
row2[0].write(f"Meta MMS")
|
119 |
-
row2[1].write("ylacombe - Argentinian")
|
120 |
row2[2].audio(finetuned_mms1[0], sample_rate = finetuned_mms1[1])
|
121 |
row3[0].write(f"Meta MMS")
|
122 |
-
row3[1].write("ylacombe - Chilean")
|
123 |
row3[2].audio(finetuned_mms2[0], sample_rate = finetuned_mms2[1])
|
124 |
row4[0].write(f"Meta MMS")
|
125 |
-
row4[1].write("ylacombe - Colombian")
|
126 |
row4[2].audio(finetuned_mms3[0], sample_rate = finetuned_mms3[1])
|
127 |
|
128 |
st.divider()
|
|
|
70 |
row1[2].write("**Audio**")
|
71 |
|
72 |
if base_mms is not None:
|
73 |
+
row2[0].write(f"[Meta MMS](https://huggingface.co/docs/transformers/main/en/model_doc/mms)")
|
74 |
row2[1].write("default")
|
75 |
row2[2].audio(base_mms[0], sample_rate = base_mms[1])
|
76 |
|
77 |
if base_coqui is not None:
|
78 |
+
row3[0].write(f"[Coqui](https://docs.coqui.ai/en/latest/index.html)")
|
79 |
row3[1].write("default")
|
80 |
row3[2].audio(base_coqui[0], sample_rate = base_coqui[1])
|
81 |
|
82 |
if base_espeakng is not None:
|
83 |
|
84 |
+
row4[0].write(f"[Espeak-ng](https://github.com/espeak-ng/espeak-ng)")
|
85 |
row4[1].write("default")
|
86 |
row4[2].audio(base_espeakng[0], sample_rate = base_espeakng[1])
|
87 |
|
|
|
97 |
row1[2].write("**Audio**")
|
98 |
|
99 |
row2[0].write(f"Meta MMS")
|
100 |
+
row2[1].write("[female 1](https://huggingface.co/khof312/mms-tts-swh-female-1)")
|
101 |
row2[2].audio(finetuned_mms1[0], sample_rate = finetuned_mms1[1])
|
102 |
row3[0].write(f"Meta MMS")
|
103 |
+
row3[1].write("[female 2](https://huggingface.co/khof312/mms-tts-swh-female-2)")
|
104 |
row3[2].audio(finetuned_mms2[0], sample_rate = finetuned_mms2[1])
|
105 |
|
106 |
|
|
|
116 |
row1[2].write("**Audio**")
|
117 |
|
118 |
row2[0].write(f"Meta MMS")
|
119 |
+
row2[1].write("[ylacombe - Argentinian](https://huggingface.co/ylacombe/mms-spa-finetuned-argentinian-monospeaker)")
|
120 |
row2[2].audio(finetuned_mms1[0], sample_rate = finetuned_mms1[1])
|
121 |
row3[0].write(f"Meta MMS")
|
122 |
+
row3[1].write("[ylacombe - Chilean](https://huggingface.co/ylacombe/mms-spa-finetuned-chilean-monospeaker)")
|
123 |
row3[2].audio(finetuned_mms2[0], sample_rate = finetuned_mms2[1])
|
124 |
row4[0].write(f"Meta MMS")
|
125 |
+
row4[1].write("[ylacombe - Colombian](https://huggingface.co/ylacombe/mms-spa-finetuned-colombian-monospeaker)")
|
126 |
row4[2].audio(finetuned_mms3[0], sample_rate = finetuned_mms3[1])
|
127 |
|
128 |
st.divider()
|