Spaces:
Running
on
Zero
Running
on
Zero
Upload app.py
Browse files
app.py
CHANGED
@@ -414,7 +414,7 @@ z={
|
|
414 |
)
|
415 |
def change_language(value):
|
416 |
choices = list(PREVIEW_CHOICES[value].items())
|
417 |
-
return gr.Dropdown(choices, value=choices[0], label='Voice', info='⭐ voices are stable, 🧪 are unstable')
|
418 |
|
419 |
USE_GPU_CHOICES = [('Auto 🔀', 'auto'), ('CPU 💬', False), ('ZeroGPU 📄', True)]
|
420 |
USE_GPU_INFOS = {
|
@@ -787,12 +787,12 @@ with gr.Blocks() as data_card:
|
|
787 |
This data card was last updated on **8 Dec 2024**.
|
788 |
|
789 |
Kokoro was trained exclusively on **permissive/non-copyrighted audio data** and IPA phoneme labels. Examples of permissive/non-copyrighted audio include:
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
|
795 |
-
[1] https://copyright.gov/ai/ai_policy_guidance.pdf
|
796 |
[2] No open TTS models used
|
797 |
|
798 |
### Creative Commons Attribution
|
@@ -805,9 +805,9 @@ The following CC BY audio was part of the dataset used to train Kokoro.
|
|
805 |
|
806 |
### Notable Datasets Not Used
|
807 |
These datasets were **not** used to train Kokoro. They may be of interest to academics:
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
''')
|
812 |
|
813 |
with gr.Blocks() as app:
|
|
|
414 |
)
|
415 |
def change_language(value):
|
416 |
choices = list(PREVIEW_CHOICES[value].items())
|
417 |
+
return gr.Dropdown(choices, value=choices[0][1], label='Voice', info='⭐ voices are stable, 🧪 are unstable')
|
418 |
|
419 |
USE_GPU_CHOICES = [('Auto 🔀', 'auto'), ('CPU 💬', False), ('ZeroGPU 📄', True)]
|
420 |
USE_GPU_INFOS = {
|
|
|
787 |
This data card was last updated on **8 Dec 2024**.
|
788 |
|
789 |
Kokoro was trained exclusively on **permissive/non-copyrighted audio data** and IPA phoneme labels. Examples of permissive/non-copyrighted audio include:
|
790 |
+
* Public domain audio
|
791 |
+
* Audio licensed under Apache, MIT, etc
|
792 |
+
* Synthetic audio<sup>[1]</sup> generated by closed<sup>[2]</sup> TTS models from large providers
|
793 |
+
* CC BY audio (see below for attribution table)
|
794 |
|
795 |
+
[1] https://copyright.gov/ai/ai_policy_guidance.pdf <br/>
|
796 |
[2] No open TTS models used
|
797 |
|
798 |
### Creative Commons Attribution
|
|
|
805 |
|
806 |
### Notable Datasets Not Used
|
807 |
These datasets were **not** used to train Kokoro. They may be of interest to academics:
|
808 |
+
* Emilia, `cc-by-nc-4.0`: https://huggingface.co/datasets/amphion/Emilia-Dataset
|
809 |
+
* Expresso, `cc-by-nc-4.0`: https://huggingface.co/datasets/ylacombe/expresso
|
810 |
+
* JVS corpus, NC clause: https://sites.google.com/site/shinnosuketakamichi/research-topics/jvs_corpus
|
811 |
''')
|
812 |
|
813 |
with gr.Blocks() as app:
|