Instructions to use augustZheng/TTS-Core-AI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Supertonic
How to use augustZheng/TTS-Core-AI with Supertonic:
from supertonic import TTS tts = TTS(auto_download=True) style = tts.get_voice_style(voice_name="M1") text = "The train delay was announced at 4:45 PM on Wed, Apr 3, 2024 due to track maintenance." wav, duration = tts.synthesize(text, voice_style=style) tts.save_audio(wav, "output.wav")
- Notebooks
- Google Colab
- Kaggle
Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +70 -0
- TTSCoreAILab/Models/DynamicText/af_heart_voice.f32 +3 -0
- TTSCoreAILab/Models/DynamicText/english_lexicon.json +0 -0
- TTSCoreAILab/Models/DynamicText/harmonic_source_linear.f32 +1 -0
- TTSCoreAILab/Models/DynamicText/metadata.json +20 -0
- TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_128.mlpackage/Data/com.apple.CoreML/model.mlmodel +3 -0
- TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_128.mlpackage/Data/com.apple.CoreML/weights/weight.bin +3 -0
- TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_128.mlpackage/Manifest.json +18 -0
- TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_256.mlpackage/Data/com.apple.CoreML/model.mlmodel +3 -0
- TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_256.mlpackage/Data/com.apple.CoreML/weights/weight.bin +3 -0
- TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_256.mlpackage/Manifest.json +18 -0
- TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_512.mlpackage/Data/com.apple.CoreML/model.mlmodel +3 -0
- TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_512.mlpackage/Data/com.apple.CoreML/weights/weight.bin +3 -0
- TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_512.mlpackage/Manifest.json +18 -0
- TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Predictor.mlpackage/Data/com.apple.CoreML/model.mlmodel +3 -0
- TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Predictor.mlpackage/Data/com.apple.CoreML/weights/weight.bin +3 -0
- TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Predictor.mlpackage/Manifest.json +18 -0
- TTSCoreAILab/Models/KokoroCoreML/resources/kokoro_vocab.json +1 -0
- TTSCoreAILab/Models/KokoroCoreML/resources/us_gold.json +0 -0
- TTSCoreAILab/Models/KokoroCoreML/resources/us_silver.json +0 -0
- TTSCoreAILab/Models/KokoroCoreML/resources/voice_af_heart.bin +3 -0
- TTSCoreAILab/Models/KokoroCoreML/resources/voices.json +27 -0
- TTSCoreAILab/Models/LongDemo/long_demo.json +681 -0
- TTSCoreAILab/Models/LongDemo/long_demo_0_decoder_style.f32 +0 -0
- TTSCoreAILab/Models/LongDemo/long_demo_0_harmonic_features.f32 +3 -0
- TTSCoreAILab/Models/LongDemo/long_demo_0_prosody_style.f32 +0 -0
- TTSCoreAILab/Models/LongDemo/long_demo_1_decoder_style.f32 +2 -0
- TTSCoreAILab/Models/LongDemo/long_demo_1_harmonic_features.f32 +3 -0
- TTSCoreAILab/Models/LongDemo/long_demo_1_prosody_style.f32 +2 -0
- TTSCoreAILab/Models/LongDemo/long_demo_2_decoder_style.f32 +3 -0
- TTSCoreAILab/Models/LongDemo/long_demo_2_harmonic_features.f32 +3 -0
- TTSCoreAILab/Models/LongDemo/long_demo_2_prosody_style.f32 +0 -0
- TTSCoreAILab/Models/LongDemo/long_demo_3_decoder_style.f32 +0 -0
- TTSCoreAILab/Models/LongDemo/long_demo_3_harmonic_features.f32 +3 -0
- TTSCoreAILab/Models/LongDemo/long_demo_3_prosody_style.f32 +0 -0
- TTSCoreAILab/Models/LongDemo/long_demo_4_decoder_style.f32 +0 -0
- TTSCoreAILab/Models/LongDemo/long_demo_4_harmonic_features.f32 +3 -0
- TTSCoreAILab/Models/LongDemo/long_demo_4_prosody_style.f32 +0 -0
- TTSCoreAILab/Models/LongDemo/long_demo_5_decoder_style.f32 +0 -0
- TTSCoreAILab/Models/LongDemo/long_demo_5_harmonic_features.f32 +3 -0
- TTSCoreAILab/Models/LongDemo/long_demo_5_prosody_style.f32 +0 -0
- TTSCoreAILab/Models/LongDemo/long_demo_6_decoder_style.f32 +0 -0
- TTSCoreAILab/Models/LongDemo/long_demo_6_harmonic_features.f32 +3 -0
- TTSCoreAILab/Models/LongDemo/long_demo_6_prosody_style.f32 +0 -0
- TTSCoreAILab/Models/LongDemo/long_demo_7_decoder_style.f32 +2 -0
- TTSCoreAILab/Models/LongDemo/long_demo_7_harmonic_features.f32 +3 -0
- TTSCoreAILab/Models/LongDemo/long_demo_7_prosody_style.f32 +0 -0
- TTSCoreAILab/Models/LongDemo/long_demo_8_decoder_style.f32 +0 -0
- TTSCoreAILab/Models/LongDemo/long_demo_8_harmonic_features.f32 +3 -0
- TTSCoreAILab/Models/LongDemo/long_demo_8_prosody_style.f32 +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,73 @@ 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 |
+
TTSCoreAILab/Models/DynamicText/af_heart_voice.f32 filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
TTSCoreAILab/Models/LongDemo/long_demo_0_harmonic_features.f32 filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
TTSCoreAILab/Models/LongDemo/long_demo_1_harmonic_features.f32 filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
TTSCoreAILab/Models/LongDemo/long_demo_2_harmonic_features.f32 filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
TTSCoreAILab/Models/LongDemo/long_demo_3_harmonic_features.f32 filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
TTSCoreAILab/Models/LongDemo/long_demo_4_harmonic_features.f32 filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
TTSCoreAILab/Models/LongDemo/long_demo_5_harmonic_features.f32 filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
TTSCoreAILab/Models/LongDemo/long_demo_6_harmonic_features.f32 filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
TTSCoreAILab/Models/LongDemo/long_demo_7_harmonic_features.f32 filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
TTSCoreAILab/Models/LongDemo/long_demo_8_harmonic_features.f32 filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
TTSCoreAILab/Models/Profiles/128x256/kokoro_bert_eager.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
TTSCoreAILab/Models/Profiles/128x256/kokoro_bert_projection.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
TTSCoreAILab/Models/Profiles/128x256/kokoro_decoder_pre.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
TTSCoreAILab/Models/Profiles/128x256/kokoro_duration_encoder.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
TTSCoreAILab/Models/Profiles/128x256/kokoro_duration_head.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
TTSCoreAILab/Models/Profiles/128x256/kokoro_f0n_blocks.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
TTSCoreAILab/Models/Profiles/128x256/kokoro_f0n_shared_lstm.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
TTSCoreAILab/Models/Profiles/128x256/kokoro_generator_core.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
TTSCoreAILab/Models/Profiles/128x256/kokoro_text_encoder_conv.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
TTSCoreAILab/Models/Profiles/128x256/kokoro_text_encoder_lstm.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
TTSCoreAILab/Models/Profiles/256x512/kokoro_bert_eager.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
TTSCoreAILab/Models/Profiles/256x512/kokoro_bert_projection.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
TTSCoreAILab/Models/Profiles/256x512/kokoro_decoder_pre.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
TTSCoreAILab/Models/Profiles/256x512/kokoro_duration_encoder.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
TTSCoreAILab/Models/Profiles/256x512/kokoro_duration_head.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
TTSCoreAILab/Models/Profiles/256x512/kokoro_f0n_blocks.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
TTSCoreAILab/Models/Profiles/256x512/kokoro_f0n_shared_lstm.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
TTSCoreAILab/Models/Profiles/256x512/kokoro_generator_core.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
TTSCoreAILab/Models/Profiles/256x512/kokoro_text_encoder_conv.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
TTSCoreAILab/Models/Profiles/256x512/kokoro_text_encoder_lstm.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
TTSCoreAILab/Models/Profiles/512x1024/kokoro_bert_eager.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
TTSCoreAILab/Models/Profiles/512x1024/kokoro_bert_projection.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 68 |
+
TTSCoreAILab/Models/Profiles/512x1024/kokoro_decoder_pre.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 69 |
+
TTSCoreAILab/Models/Profiles/512x1024/kokoro_duration_encoder.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 70 |
+
TTSCoreAILab/Models/Profiles/512x1024/kokoro_duration_head.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 71 |
+
TTSCoreAILab/Models/Profiles/512x1024/kokoro_f0n_blocks.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 72 |
+
TTSCoreAILab/Models/Profiles/512x1024/kokoro_f0n_shared_lstm.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 73 |
+
TTSCoreAILab/Models/Profiles/512x1024/kokoro_generator_core.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 74 |
+
TTSCoreAILab/Models/Profiles/512x1024/kokoro_text_encoder_conv.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 75 |
+
TTSCoreAILab/Models/Profiles/512x1024/kokoro_text_encoder_lstm.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 76 |
+
TTSCoreAILab/Models/Profiles/512x256/kokoro_bert_eager.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 77 |
+
TTSCoreAILab/Models/Profiles/512x256/kokoro_bert_projection.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 78 |
+
TTSCoreAILab/Models/Profiles/512x256/kokoro_decoder_pre.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 79 |
+
TTSCoreAILab/Models/Profiles/512x256/kokoro_duration_encoder.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 80 |
+
TTSCoreAILab/Models/Profiles/512x256/kokoro_duration_head.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 81 |
+
TTSCoreAILab/Models/Profiles/512x256/kokoro_f0n_blocks.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 82 |
+
TTSCoreAILab/Models/Profiles/512x256/kokoro_f0n_shared_lstm.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 83 |
+
TTSCoreAILab/Models/Profiles/512x256/kokoro_generator_core.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 84 |
+
TTSCoreAILab/Models/Profiles/512x256/kokoro_text_encoder_conv.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 85 |
+
TTSCoreAILab/Models/Profiles/512x256/kokoro_text_encoder_lstm.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 86 |
+
TTSCoreAILab/Models/Profiles/64x128/kokoro_bert_eager.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 87 |
+
TTSCoreAILab/Models/Profiles/64x128/kokoro_bert_projection.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 88 |
+
TTSCoreAILab/Models/Profiles/64x128/kokoro_decoder_pre.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 89 |
+
TTSCoreAILab/Models/Profiles/64x128/kokoro_duration_encoder.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 90 |
+
TTSCoreAILab/Models/Profiles/64x128/kokoro_duration_head.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 91 |
+
TTSCoreAILab/Models/Profiles/64x128/kokoro_f0n_blocks.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 92 |
+
TTSCoreAILab/Models/Profiles/64x128/kokoro_f0n_shared_lstm.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 93 |
+
TTSCoreAILab/Models/Profiles/64x128/kokoro_generator_core.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 94 |
+
TTSCoreAILab/Models/Profiles/64x128/kokoro_text_encoder_conv.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 95 |
+
TTSCoreAILab/Models/Profiles/64x128/kokoro_text_encoder_lstm.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 96 |
+
TTSCoreAILab/Models/hi_harmonic_features.f32 filter=lfs diff=lfs merge=lfs -text
|
| 97 |
+
TTSCoreAILab/Models/kokoro_bert_eager_64.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 98 |
+
TTSCoreAILab/Models/kokoro_bert_projection.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 99 |
+
TTSCoreAILab/Models/kokoro_decoder_pre.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 100 |
+
TTSCoreAILab/Models/kokoro_duration_encoder_no_pack_64_intmask.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 101 |
+
TTSCoreAILab/Models/kokoro_duration_head.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 102 |
+
TTSCoreAILab/Models/kokoro_f0n_blocks_64.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 103 |
+
TTSCoreAILab/Models/kokoro_f0n_shared_lstm_64.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 104 |
+
TTSCoreAILab/Models/kokoro_generator_core.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
| 105 |
+
TTSCoreAILab/Models/kokoro_text_encoder_conv_64_intmask.aimodel/main.mlirb filter=lfs diff=lfs merge=lfs -text
|
TTSCoreAILab/Models/DynamicText/af_heart_voice.f32
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d583ccff3cdca2f7fae535cb998ac07e9fcb90f09737b9a41fa2734ec44a8f0b
|
| 3 |
+
size 522240
|
TTSCoreAILab/Models/DynamicText/english_lexicon.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
TTSCoreAILab/Models/DynamicText/harmonic_source_linear.f32
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
l���2�=�g;�*�6��7ʽ^?�=��=�Ⱦ�8��A�
|
TTSCoreAILab/Models/DynamicText/metadata.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"lexiconEntries": 178402,
|
| 3 |
+
"voiceShape": [
|
| 4 |
+
510,
|
| 5 |
+
1,
|
| 6 |
+
256
|
| 7 |
+
],
|
| 8 |
+
"sourceWeights": [
|
| 9 |
+
-0.08154186606407166,
|
| 10 |
+
-0.1851966679096222,
|
| 11 |
+
-0.18263398110866547,
|
| 12 |
+
-0.17837205529212952,
|
| 13 |
+
-0.09873894602060318,
|
| 14 |
+
0.0826403945684433,
|
| 15 |
+
0.08743999153375626,
|
| 16 |
+
-0.39068546891212463,
|
| 17 |
+
-0.5477443337440491,
|
| 18 |
+
-0.02945026010274887
|
| 19 |
+
]
|
| 20 |
+
}
|
TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_128.mlpackage/Data/com.apple.CoreML/model.mlmodel
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d5826c0cdbd4f8a4e42a71664043bfbfc6cafe7be115d037d629bcf783f3c59a
|
| 3 |
+
size 352267
|
TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_128.mlpackage/Data/com.apple.CoreML/weights/weight.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d18186659e4807e86ef24a896aa058ed12eb66a9bef4b1f2d809c7bda785791a
|
| 3 |
+
size 249502528
|
TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_128.mlpackage/Manifest.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"fileFormatVersion": "1.0.0",
|
| 3 |
+
"itemInfoEntries": {
|
| 4 |
+
"9172E103-89E9-4056-B6AE-DD8C6A61E21F": {
|
| 5 |
+
"author": "com.apple.CoreML",
|
| 6 |
+
"description": "CoreML Model Weights",
|
| 7 |
+
"name": "weights",
|
| 8 |
+
"path": "com.apple.CoreML/weights"
|
| 9 |
+
},
|
| 10 |
+
"CFC6F3E8-3DA2-4177-AC32-377C821F35BD": {
|
| 11 |
+
"author": "com.apple.CoreML",
|
| 12 |
+
"description": "CoreML Model Specification",
|
| 13 |
+
"name": "model.mlmodel",
|
| 14 |
+
"path": "com.apple.CoreML/model.mlmodel"
|
| 15 |
+
}
|
| 16 |
+
},
|
| 17 |
+
"rootModelIdentifier": "CFC6F3E8-3DA2-4177-AC32-377C821F35BD"
|
| 18 |
+
}
|
TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_256.mlpackage/Data/com.apple.CoreML/model.mlmodel
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a634771e002190bdf6c0b646699e9be9020f0ff2d1825d5409bc9757296ce8cf
|
| 3 |
+
size 352553
|
TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_256.mlpackage/Data/com.apple.CoreML/weights/weight.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7983d82c87d2692de116c3f003a8518437143d6346b04430f737b492d0a5d9b6
|
| 3 |
+
size 252267328
|
TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_256.mlpackage/Manifest.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"fileFormatVersion": "1.0.0",
|
| 3 |
+
"itemInfoEntries": {
|
| 4 |
+
"384765F5-E61B-42A4-B2C8-44CBBDEF657B": {
|
| 5 |
+
"author": "com.apple.CoreML",
|
| 6 |
+
"description": "CoreML Model Specification",
|
| 7 |
+
"name": "model.mlmodel",
|
| 8 |
+
"path": "com.apple.CoreML/model.mlmodel"
|
| 9 |
+
},
|
| 10 |
+
"E3BC7476-89D3-4471-A348-AED4A1BF88F6": {
|
| 11 |
+
"author": "com.apple.CoreML",
|
| 12 |
+
"description": "CoreML Model Weights",
|
| 13 |
+
"name": "weights",
|
| 14 |
+
"path": "com.apple.CoreML/weights"
|
| 15 |
+
}
|
| 16 |
+
},
|
| 17 |
+
"rootModelIdentifier": "384765F5-E61B-42A4-B2C8-44CBBDEF657B"
|
| 18 |
+
}
|
TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_512.mlpackage/Data/com.apple.CoreML/model.mlmodel
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b852a96d8d008dc3b3b6fd20d39c8742b650c7aaaaabd0ec09163332ea0062e5
|
| 3 |
+
size 352553
|
TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_512.mlpackage/Data/com.apple.CoreML/weights/weight.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f423c131650185251fabdf129a27c4cf8a0e870a83e3959e6e3a82446e232194
|
| 3 |
+
size 257796928
|
TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Decoder_512.mlpackage/Manifest.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"fileFormatVersion": "1.0.0",
|
| 3 |
+
"itemInfoEntries": {
|
| 4 |
+
"6E59A31B-9E34-4B52-813A-B16DD39390C6": {
|
| 5 |
+
"author": "com.apple.CoreML",
|
| 6 |
+
"description": "CoreML Model Specification",
|
| 7 |
+
"name": "model.mlmodel",
|
| 8 |
+
"path": "com.apple.CoreML/model.mlmodel"
|
| 9 |
+
},
|
| 10 |
+
"7763E1DB-356F-4A82-B558-2AD5EFA0D5C1": {
|
| 11 |
+
"author": "com.apple.CoreML",
|
| 12 |
+
"description": "CoreML Model Weights",
|
| 13 |
+
"name": "weights",
|
| 14 |
+
"path": "com.apple.CoreML/weights"
|
| 15 |
+
}
|
| 16 |
+
},
|
| 17 |
+
"rootModelIdentifier": "6E59A31B-9E34-4B52-813A-B16DD39390C6"
|
| 18 |
+
}
|
TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Predictor.mlpackage/Data/com.apple.CoreML/model.mlmodel
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:121fe59f42a48b7fea21f0f6793eaff65ede80447235398ed38c0b291227eda8
|
| 3 |
+
size 228295
|
TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Predictor.mlpackage/Data/com.apple.CoreML/weights/weight.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be52a0c0081c8b9ecbeb3726ec21324da607cbd4f319708702a39362ee769299
|
| 3 |
+
size 77881472
|
TTSCoreAILab/Models/KokoroCoreML/models/Kokoro_Predictor.mlpackage/Manifest.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"fileFormatVersion": "1.0.0",
|
| 3 |
+
"itemInfoEntries": {
|
| 4 |
+
"83A191C5-8F87-4216-A7F0-1AEF5334D7DF": {
|
| 5 |
+
"author": "com.apple.CoreML",
|
| 6 |
+
"description": "CoreML Model Specification",
|
| 7 |
+
"name": "model.mlmodel",
|
| 8 |
+
"path": "com.apple.CoreML/model.mlmodel"
|
| 9 |
+
},
|
| 10 |
+
"8C91C3A5-6517-47B2-8E58-BE495BA617CF": {
|
| 11 |
+
"author": "com.apple.CoreML",
|
| 12 |
+
"description": "CoreML Model Weights",
|
| 13 |
+
"name": "weights",
|
| 14 |
+
"path": "com.apple.CoreML/weights"
|
| 15 |
+
}
|
| 16 |
+
},
|
| 17 |
+
"rootModelIdentifier": "83A191C5-8F87-4216-A7F0-1AEF5334D7DF"
|
| 18 |
+
}
|
TTSCoreAILab/Models/KokoroCoreML/resources/kokoro_vocab.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{";": 1, ":": 2, ",": 3, ".": 4, "!": 5, "?": 6, "—": 9, "…": 10, "\"": 11, "(": 12, ")": 13, "“": 14, "”": 15, " ": 16, "̃": 17, "ʣ": 18, "ʥ": 19, "ʦ": 20, "ʨ": 21, "ᵝ": 22, "ꭧ": 23, "A": 24, "I": 25, "O": 31, "Q": 33, "S": 35, "T": 36, "W": 39, "Y": 41, "ᵊ": 42, "a": 43, "b": 44, "c": 45, "d": 46, "e": 47, "f": 48, "h": 50, "i": 51, "j": 52, "k": 53, "l": 54, "m": 55, "n": 56, "o": 57, "p": 58, "q": 59, "r": 60, "s": 61, "t": 62, "u": 63, "v": 64, "w": 65, "x": 66, "y": 67, "z": 68, "ɑ": 69, "ɐ": 70, "ɒ": 71, "æ": 72, "β": 75, "ɔ": 76, "ɕ": 77, "ç": 78, "ɖ": 80, "ð": 81, "ʤ": 82, "ə": 83, "ɚ": 85, "ɛ": 86, "ɜ": 87, "ɟ": 90, "ɡ": 92, "ɥ": 99, "ɨ": 101, "ɪ": 102, "ʝ": 103, "ɯ": 110, "ɰ": 111, "ŋ": 112, "ɳ": 113, "ɲ": 114, "ɴ": 115, "ø": 116, "ɸ": 118, "θ": 119, "œ": 120, "ɹ": 123, "ɾ": 125, "ɻ": 126, "ʁ": 128, "ɽ": 129, "ʂ": 130, "ʃ": 131, "ʈ": 132, "ʧ": 133, "ʊ": 135, "ʋ": 136, "ʌ": 138, "ɣ": 139, "ɤ": 140, "χ": 142, "ʎ": 143, "ʒ": 147, "ʔ": 148, "ˈ": 156, "ˌ": 157, "ː": 158, "ʰ": 162, "ʲ": 164, "↓": 169, "→": 171, "↗": 172, "↘": 173, "ᵻ": 177}
|
TTSCoreAILab/Models/KokoroCoreML/resources/us_gold.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
TTSCoreAILab/Models/KokoroCoreML/resources/us_silver.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
TTSCoreAILab/Models/KokoroCoreML/resources/voice_af_heart.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d583ccff3cdca2f7fae535cb998ac07e9fcb90f09737b9a41fa2734ec44a8f0b
|
| 3 |
+
size 522240
|
TTSCoreAILab/Models/KokoroCoreML/resources/voices.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"af_heart": [
|
| 3 |
+
510,
|
| 4 |
+
1,
|
| 5 |
+
256
|
| 6 |
+
],
|
| 7 |
+
"af_bella": [
|
| 8 |
+
510,
|
| 9 |
+
1,
|
| 10 |
+
256
|
| 11 |
+
],
|
| 12 |
+
"am_michael": [
|
| 13 |
+
510,
|
| 14 |
+
1,
|
| 15 |
+
256
|
| 16 |
+
],
|
| 17 |
+
"bf_emma": [
|
| 18 |
+
510,
|
| 19 |
+
1,
|
| 20 |
+
256
|
| 21 |
+
],
|
| 22 |
+
"bm_george": [
|
| 23 |
+
510,
|
| 24 |
+
1,
|
| 25 |
+
256
|
| 26 |
+
]
|
| 27 |
+
}
|
TTSCoreAILab/Models/LongDemo/long_demo.json
ADDED
|
@@ -0,0 +1,681 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"title": "Long sentence demo",
|
| 3 |
+
"text": "Hello. This is Kokoro. The model runs locally with Core AI on this iPhone. Long sentences are generated one short segment at a time.",
|
| 4 |
+
"segments": [
|
| 5 |
+
{
|
| 6 |
+
"text": "Hello.",
|
| 7 |
+
"phonemes": "h\u0259l\u02c8O.",
|
| 8 |
+
"validTokenLength": 8,
|
| 9 |
+
"inputIds": [
|
| 10 |
+
0,
|
| 11 |
+
50,
|
| 12 |
+
83,
|
| 13 |
+
54,
|
| 14 |
+
156,
|
| 15 |
+
31,
|
| 16 |
+
4,
|
| 17 |
+
0,
|
| 18 |
+
0,
|
| 19 |
+
0,
|
| 20 |
+
0,
|
| 21 |
+
0,
|
| 22 |
+
0,
|
| 23 |
+
0,
|
| 24 |
+
0,
|
| 25 |
+
0,
|
| 26 |
+
0,
|
| 27 |
+
0,
|
| 28 |
+
0,
|
| 29 |
+
0,
|
| 30 |
+
0,
|
| 31 |
+
0,
|
| 32 |
+
0,
|
| 33 |
+
0,
|
| 34 |
+
0,
|
| 35 |
+
0,
|
| 36 |
+
0,
|
| 37 |
+
0,
|
| 38 |
+
0,
|
| 39 |
+
0,
|
| 40 |
+
0,
|
| 41 |
+
0,
|
| 42 |
+
0,
|
| 43 |
+
0,
|
| 44 |
+
0,
|
| 45 |
+
0,
|
| 46 |
+
0,
|
| 47 |
+
0,
|
| 48 |
+
0,
|
| 49 |
+
0,
|
| 50 |
+
0,
|
| 51 |
+
0,
|
| 52 |
+
0,
|
| 53 |
+
0,
|
| 54 |
+
0,
|
| 55 |
+
0,
|
| 56 |
+
0,
|
| 57 |
+
0,
|
| 58 |
+
0,
|
| 59 |
+
0,
|
| 60 |
+
0,
|
| 61 |
+
0,
|
| 62 |
+
0,
|
| 63 |
+
0,
|
| 64 |
+
0,
|
| 65 |
+
0,
|
| 66 |
+
0,
|
| 67 |
+
0,
|
| 68 |
+
0,
|
| 69 |
+
0,
|
| 70 |
+
0,
|
| 71 |
+
0,
|
| 72 |
+
0,
|
| 73 |
+
0
|
| 74 |
+
],
|
| 75 |
+
"prosodyStyleResource": "long_demo_0_prosody_style",
|
| 76 |
+
"decoderStyleResource": "long_demo_0_decoder_style",
|
| 77 |
+
"harmonicResource": "long_demo_0_harmonic_features",
|
| 78 |
+
"expectedFrames": 46
|
| 79 |
+
},
|
| 80 |
+
{
|
| 81 |
+
"text": "This is Kokoro.",
|
| 82 |
+
"phonemes": "\u00f0\u02cc\u026as \u026az k\u0259k\u02c8\u0254\u0279O.",
|
| 83 |
+
"validTokenLength": 18,
|
| 84 |
+
"inputIds": [
|
| 85 |
+
0,
|
| 86 |
+
81,
|
| 87 |
+
157,
|
| 88 |
+
102,
|
| 89 |
+
61,
|
| 90 |
+
16,
|
| 91 |
+
102,
|
| 92 |
+
68,
|
| 93 |
+
16,
|
| 94 |
+
53,
|
| 95 |
+
83,
|
| 96 |
+
53,
|
| 97 |
+
156,
|
| 98 |
+
76,
|
| 99 |
+
123,
|
| 100 |
+
31,
|
| 101 |
+
4,
|
| 102 |
+
0,
|
| 103 |
+
0,
|
| 104 |
+
0,
|
| 105 |
+
0,
|
| 106 |
+
0,
|
| 107 |
+
0,
|
| 108 |
+
0,
|
| 109 |
+
0,
|
| 110 |
+
0,
|
| 111 |
+
0,
|
| 112 |
+
0,
|
| 113 |
+
0,
|
| 114 |
+
0,
|
| 115 |
+
0,
|
| 116 |
+
0,
|
| 117 |
+
0,
|
| 118 |
+
0,
|
| 119 |
+
0,
|
| 120 |
+
0,
|
| 121 |
+
0,
|
| 122 |
+
0,
|
| 123 |
+
0,
|
| 124 |
+
0,
|
| 125 |
+
0,
|
| 126 |
+
0,
|
| 127 |
+
0,
|
| 128 |
+
0,
|
| 129 |
+
0,
|
| 130 |
+
0,
|
| 131 |
+
0,
|
| 132 |
+
0,
|
| 133 |
+
0,
|
| 134 |
+
0,
|
| 135 |
+
0,
|
| 136 |
+
0,
|
| 137 |
+
0,
|
| 138 |
+
0,
|
| 139 |
+
0,
|
| 140 |
+
0,
|
| 141 |
+
0,
|
| 142 |
+
0,
|
| 143 |
+
0,
|
| 144 |
+
0,
|
| 145 |
+
0,
|
| 146 |
+
0,
|
| 147 |
+
0,
|
| 148 |
+
0
|
| 149 |
+
],
|
| 150 |
+
"prosodyStyleResource": "long_demo_1_prosody_style",
|
| 151 |
+
"decoderStyleResource": "long_demo_1_decoder_style",
|
| 152 |
+
"harmonicResource": "long_demo_1_harmonic_features",
|
| 153 |
+
"expectedFrames": 61
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"text": "The model runs locally",
|
| 157 |
+
"phonemes": "\u00f0\u0259 m\u02c8\u0251d\u1d4al \u0279\u02c8\u028cnz l\u02c8Ok\u0259li",
|
| 158 |
+
"validTokenLength": 25,
|
| 159 |
+
"inputIds": [
|
| 160 |
+
0,
|
| 161 |
+
81,
|
| 162 |
+
83,
|
| 163 |
+
16,
|
| 164 |
+
55,
|
| 165 |
+
156,
|
| 166 |
+
69,
|
| 167 |
+
46,
|
| 168 |
+
42,
|
| 169 |
+
54,
|
| 170 |
+
16,
|
| 171 |
+
123,
|
| 172 |
+
156,
|
| 173 |
+
138,
|
| 174 |
+
56,
|
| 175 |
+
68,
|
| 176 |
+
16,
|
| 177 |
+
54,
|
| 178 |
+
156,
|
| 179 |
+
31,
|
| 180 |
+
53,
|
| 181 |
+
83,
|
| 182 |
+
54,
|
| 183 |
+
51,
|
| 184 |
+
0,
|
| 185 |
+
0,
|
| 186 |
+
0,
|
| 187 |
+
0,
|
| 188 |
+
0,
|
| 189 |
+
0,
|
| 190 |
+
0,
|
| 191 |
+
0,
|
| 192 |
+
0,
|
| 193 |
+
0,
|
| 194 |
+
0,
|
| 195 |
+
0,
|
| 196 |
+
0,
|
| 197 |
+
0,
|
| 198 |
+
0,
|
| 199 |
+
0,
|
| 200 |
+
0,
|
| 201 |
+
0,
|
| 202 |
+
0,
|
| 203 |
+
0,
|
| 204 |
+
0,
|
| 205 |
+
0,
|
| 206 |
+
0,
|
| 207 |
+
0,
|
| 208 |
+
0,
|
| 209 |
+
0,
|
| 210 |
+
0,
|
| 211 |
+
0,
|
| 212 |
+
0,
|
| 213 |
+
0,
|
| 214 |
+
0,
|
| 215 |
+
0,
|
| 216 |
+
0,
|
| 217 |
+
0,
|
| 218 |
+
0,
|
| 219 |
+
0,
|
| 220 |
+
0,
|
| 221 |
+
0,
|
| 222 |
+
0,
|
| 223 |
+
0
|
| 224 |
+
],
|
| 225 |
+
"prosodyStyleResource": "long_demo_2_prosody_style",
|
| 226 |
+
"decoderStyleResource": "long_demo_2_decoder_style",
|
| 227 |
+
"harmonicResource": "long_demo_2_harmonic_features",
|
| 228 |
+
"expectedFrames": 61
|
| 229 |
+
},
|
| 230 |
+
{
|
| 231 |
+
"text": "with Core AI",
|
| 232 |
+
"phonemes": "w\u026a\u00f0 k\u02c8\u0254\u0279 \u02c8A\u02ccI",
|
| 233 |
+
"validTokenLength": 15,
|
| 234 |
+
"inputIds": [
|
| 235 |
+
0,
|
| 236 |
+
65,
|
| 237 |
+
102,
|
| 238 |
+
81,
|
| 239 |
+
16,
|
| 240 |
+
53,
|
| 241 |
+
156,
|
| 242 |
+
76,
|
| 243 |
+
123,
|
| 244 |
+
16,
|
| 245 |
+
156,
|
| 246 |
+
24,
|
| 247 |
+
157,
|
| 248 |
+
25,
|
| 249 |
+
0,
|
| 250 |
+
0,
|
| 251 |
+
0,
|
| 252 |
+
0,
|
| 253 |
+
0,
|
| 254 |
+
0,
|
| 255 |
+
0,
|
| 256 |
+
0,
|
| 257 |
+
0,
|
| 258 |
+
0,
|
| 259 |
+
0,
|
| 260 |
+
0,
|
| 261 |
+
0,
|
| 262 |
+
0,
|
| 263 |
+
0,
|
| 264 |
+
0,
|
| 265 |
+
0,
|
| 266 |
+
0,
|
| 267 |
+
0,
|
| 268 |
+
0,
|
| 269 |
+
0,
|
| 270 |
+
0,
|
| 271 |
+
0,
|
| 272 |
+
0,
|
| 273 |
+
0,
|
| 274 |
+
0,
|
| 275 |
+
0,
|
| 276 |
+
0,
|
| 277 |
+
0,
|
| 278 |
+
0,
|
| 279 |
+
0,
|
| 280 |
+
0,
|
| 281 |
+
0,
|
| 282 |
+
0,
|
| 283 |
+
0,
|
| 284 |
+
0,
|
| 285 |
+
0,
|
| 286 |
+
0,
|
| 287 |
+
0,
|
| 288 |
+
0,
|
| 289 |
+
0,
|
| 290 |
+
0,
|
| 291 |
+
0,
|
| 292 |
+
0,
|
| 293 |
+
0,
|
| 294 |
+
0,
|
| 295 |
+
0,
|
| 296 |
+
0,
|
| 297 |
+
0,
|
| 298 |
+
0
|
| 299 |
+
],
|
| 300 |
+
"prosodyStyleResource": "long_demo_3_prosody_style",
|
| 301 |
+
"decoderStyleResource": "long_demo_3_decoder_style",
|
| 302 |
+
"harmonicResource": "long_demo_3_harmonic_features",
|
| 303 |
+
"expectedFrames": 53
|
| 304 |
+
},
|
| 305 |
+
{
|
| 306 |
+
"text": "on this iPhone.",
|
| 307 |
+
"phonemes": "\u02cc\u0254n \u00f0\u026as \u02c8If\u02ccOn.",
|
| 308 |
+
"validTokenLength": 17,
|
| 309 |
+
"inputIds": [
|
| 310 |
+
0,
|
| 311 |
+
157,
|
| 312 |
+
76,
|
| 313 |
+
56,
|
| 314 |
+
16,
|
| 315 |
+
81,
|
| 316 |
+
102,
|
| 317 |
+
61,
|
| 318 |
+
16,
|
| 319 |
+
156,
|
| 320 |
+
25,
|
| 321 |
+
48,
|
| 322 |
+
157,
|
| 323 |
+
31,
|
| 324 |
+
56,
|
| 325 |
+
4,
|
| 326 |
+
0,
|
| 327 |
+
0,
|
| 328 |
+
0,
|
| 329 |
+
0,
|
| 330 |
+
0,
|
| 331 |
+
0,
|
| 332 |
+
0,
|
| 333 |
+
0,
|
| 334 |
+
0,
|
| 335 |
+
0,
|
| 336 |
+
0,
|
| 337 |
+
0,
|
| 338 |
+
0,
|
| 339 |
+
0,
|
| 340 |
+
0,
|
| 341 |
+
0,
|
| 342 |
+
0,
|
| 343 |
+
0,
|
| 344 |
+
0,
|
| 345 |
+
0,
|
| 346 |
+
0,
|
| 347 |
+
0,
|
| 348 |
+
0,
|
| 349 |
+
0,
|
| 350 |
+
0,
|
| 351 |
+
0,
|
| 352 |
+
0,
|
| 353 |
+
0,
|
| 354 |
+
0,
|
| 355 |
+
0,
|
| 356 |
+
0,
|
| 357 |
+
0,
|
| 358 |
+
0,
|
| 359 |
+
0,
|
| 360 |
+
0,
|
| 361 |
+
0,
|
| 362 |
+
0,
|
| 363 |
+
0,
|
| 364 |
+
0,
|
| 365 |
+
0,
|
| 366 |
+
0,
|
| 367 |
+
0,
|
| 368 |
+
0,
|
| 369 |
+
0,
|
| 370 |
+
0,
|
| 371 |
+
0,
|
| 372 |
+
0,
|
| 373 |
+
0
|
| 374 |
+
],
|
| 375 |
+
"prosodyStyleResource": "long_demo_4_prosody_style",
|
| 376 |
+
"decoderStyleResource": "long_demo_4_decoder_style",
|
| 377 |
+
"harmonicResource": "long_demo_4_harmonic_features",
|
| 378 |
+
"expectedFrames": 63
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"text": "Long sentences",
|
| 382 |
+
"phonemes": "l\u02c8\u0254\u014b s\u02c8\u025bnt\u1d4ans\u1d7bz",
|
| 383 |
+
"validTokenLength": 17,
|
| 384 |
+
"inputIds": [
|
| 385 |
+
0,
|
| 386 |
+
54,
|
| 387 |
+
156,
|
| 388 |
+
76,
|
| 389 |
+
112,
|
| 390 |
+
16,
|
| 391 |
+
61,
|
| 392 |
+
156,
|
| 393 |
+
86,
|
| 394 |
+
56,
|
| 395 |
+
62,
|
| 396 |
+
42,
|
| 397 |
+
56,
|
| 398 |
+
61,
|
| 399 |
+
177,
|
| 400 |
+
68,
|
| 401 |
+
0,
|
| 402 |
+
0,
|
| 403 |
+
0,
|
| 404 |
+
0,
|
| 405 |
+
0,
|
| 406 |
+
0,
|
| 407 |
+
0,
|
| 408 |
+
0,
|
| 409 |
+
0,
|
| 410 |
+
0,
|
| 411 |
+
0,
|
| 412 |
+
0,
|
| 413 |
+
0,
|
| 414 |
+
0,
|
| 415 |
+
0,
|
| 416 |
+
0,
|
| 417 |
+
0,
|
| 418 |
+
0,
|
| 419 |
+
0,
|
| 420 |
+
0,
|
| 421 |
+
0,
|
| 422 |
+
0,
|
| 423 |
+
0,
|
| 424 |
+
0,
|
| 425 |
+
0,
|
| 426 |
+
0,
|
| 427 |
+
0,
|
| 428 |
+
0,
|
| 429 |
+
0,
|
| 430 |
+
0,
|
| 431 |
+
0,
|
| 432 |
+
0,
|
| 433 |
+
0,
|
| 434 |
+
0,
|
| 435 |
+
0,
|
| 436 |
+
0,
|
| 437 |
+
0,
|
| 438 |
+
0,
|
| 439 |
+
0,
|
| 440 |
+
0,
|
| 441 |
+
0,
|
| 442 |
+
0,
|
| 443 |
+
0,
|
| 444 |
+
0,
|
| 445 |
+
0,
|
| 446 |
+
0,
|
| 447 |
+
0,
|
| 448 |
+
0
|
| 449 |
+
],
|
| 450 |
+
"prosodyStyleResource": "long_demo_5_prosody_style",
|
| 451 |
+
"decoderStyleResource": "long_demo_5_decoder_style",
|
| 452 |
+
"harmonicResource": "long_demo_5_harmonic_features",
|
| 453 |
+
"expectedFrames": 64
|
| 454 |
+
},
|
| 455 |
+
{
|
| 456 |
+
"text": "are generated",
|
| 457 |
+
"phonemes": "\u0251\u0279 \u02a4\u02c8\u025bn\u0259\u0279\u02ccAT\u1d7bd",
|
| 458 |
+
"validTokenLength": 16,
|
| 459 |
+
"inputIds": [
|
| 460 |
+
0,
|
| 461 |
+
69,
|
| 462 |
+
123,
|
| 463 |
+
16,
|
| 464 |
+
82,
|
| 465 |
+
156,
|
| 466 |
+
86,
|
| 467 |
+
56,
|
| 468 |
+
83,
|
| 469 |
+
123,
|
| 470 |
+
157,
|
| 471 |
+
24,
|
| 472 |
+
36,
|
| 473 |
+
177,
|
| 474 |
+
46,
|
| 475 |
+
0,
|
| 476 |
+
0,
|
| 477 |
+
0,
|
| 478 |
+
0,
|
| 479 |
+
0,
|
| 480 |
+
0,
|
| 481 |
+
0,
|
| 482 |
+
0,
|
| 483 |
+
0,
|
| 484 |
+
0,
|
| 485 |
+
0,
|
| 486 |
+
0,
|
| 487 |
+
0,
|
| 488 |
+
0,
|
| 489 |
+
0,
|
| 490 |
+
0,
|
| 491 |
+
0,
|
| 492 |
+
0,
|
| 493 |
+
0,
|
| 494 |
+
0,
|
| 495 |
+
0,
|
| 496 |
+
0,
|
| 497 |
+
0,
|
| 498 |
+
0,
|
| 499 |
+
0,
|
| 500 |
+
0,
|
| 501 |
+
0,
|
| 502 |
+
0,
|
| 503 |
+
0,
|
| 504 |
+
0,
|
| 505 |
+
0,
|
| 506 |
+
0,
|
| 507 |
+
0,
|
| 508 |
+
0,
|
| 509 |
+
0,
|
| 510 |
+
0,
|
| 511 |
+
0,
|
| 512 |
+
0,
|
| 513 |
+
0,
|
| 514 |
+
0,
|
| 515 |
+
0,
|
| 516 |
+
0,
|
| 517 |
+
0,
|
| 518 |
+
0,
|
| 519 |
+
0,
|
| 520 |
+
0,
|
| 521 |
+
0,
|
| 522 |
+
0,
|
| 523 |
+
0
|
| 524 |
+
],
|
| 525 |
+
"prosodyStyleResource": "long_demo_6_prosody_style",
|
| 526 |
+
"decoderStyleResource": "long_demo_6_decoder_style",
|
| 527 |
+
"harmonicResource": "long_demo_6_harmonic_features",
|
| 528 |
+
"expectedFrames": 56
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"text": "one short segment",
|
| 532 |
+
"phonemes": "w\u02c8\u028cn \u0283\u02c8\u0254\u0279t s\u02c8\u025b\u0261m\u1d4ant",
|
| 533 |
+
"validTokenLength": 21,
|
| 534 |
+
"inputIds": [
|
| 535 |
+
0,
|
| 536 |
+
65,
|
| 537 |
+
156,
|
| 538 |
+
138,
|
| 539 |
+
56,
|
| 540 |
+
16,
|
| 541 |
+
131,
|
| 542 |
+
156,
|
| 543 |
+
76,
|
| 544 |
+
123,
|
| 545 |
+
62,
|
| 546 |
+
16,
|
| 547 |
+
61,
|
| 548 |
+
156,
|
| 549 |
+
86,
|
| 550 |
+
92,
|
| 551 |
+
55,
|
| 552 |
+
42,
|
| 553 |
+
56,
|
| 554 |
+
62,
|
| 555 |
+
0,
|
| 556 |
+
0,
|
| 557 |
+
0,
|
| 558 |
+
0,
|
| 559 |
+
0,
|
| 560 |
+
0,
|
| 561 |
+
0,
|
| 562 |
+
0,
|
| 563 |
+
0,
|
| 564 |
+
0,
|
| 565 |
+
0,
|
| 566 |
+
0,
|
| 567 |
+
0,
|
| 568 |
+
0,
|
| 569 |
+
0,
|
| 570 |
+
0,
|
| 571 |
+
0,
|
| 572 |
+
0,
|
| 573 |
+
0,
|
| 574 |
+
0,
|
| 575 |
+
0,
|
| 576 |
+
0,
|
| 577 |
+
0,
|
| 578 |
+
0,
|
| 579 |
+
0,
|
| 580 |
+
0,
|
| 581 |
+
0,
|
| 582 |
+
0,
|
| 583 |
+
0,
|
| 584 |
+
0,
|
| 585 |
+
0,
|
| 586 |
+
0,
|
| 587 |
+
0,
|
| 588 |
+
0,
|
| 589 |
+
0,
|
| 590 |
+
0,
|
| 591 |
+
0,
|
| 592 |
+
0,
|
| 593 |
+
0,
|
| 594 |
+
0,
|
| 595 |
+
0,
|
| 596 |
+
0,
|
| 597 |
+
0,
|
| 598 |
+
0
|
| 599 |
+
],
|
| 600 |
+
"prosodyStyleResource": "long_demo_7_prosody_style",
|
| 601 |
+
"decoderStyleResource": "long_demo_7_decoder_style",
|
| 602 |
+
"harmonicResource": "long_demo_7_harmonic_features",
|
| 603 |
+
"expectedFrames": 53
|
| 604 |
+
},
|
| 605 |
+
{
|
| 606 |
+
"text": "at a time.",
|
| 607 |
+
"phonemes": "\u00e6t \u0250 t\u02c8Im.",
|
| 608 |
+
"validTokenLength": 12,
|
| 609 |
+
"inputIds": [
|
| 610 |
+
0,
|
| 611 |
+
72,
|
| 612 |
+
62,
|
| 613 |
+
16,
|
| 614 |
+
70,
|
| 615 |
+
16,
|
| 616 |
+
62,
|
| 617 |
+
156,
|
| 618 |
+
25,
|
| 619 |
+
55,
|
| 620 |
+
4,
|
| 621 |
+
0,
|
| 622 |
+
0,
|
| 623 |
+
0,
|
| 624 |
+
0,
|
| 625 |
+
0,
|
| 626 |
+
0,
|
| 627 |
+
0,
|
| 628 |
+
0,
|
| 629 |
+
0,
|
| 630 |
+
0,
|
| 631 |
+
0,
|
| 632 |
+
0,
|
| 633 |
+
0,
|
| 634 |
+
0,
|
| 635 |
+
0,
|
| 636 |
+
0,
|
| 637 |
+
0,
|
| 638 |
+
0,
|
| 639 |
+
0,
|
| 640 |
+
0,
|
| 641 |
+
0,
|
| 642 |
+
0,
|
| 643 |
+
0,
|
| 644 |
+
0,
|
| 645 |
+
0,
|
| 646 |
+
0,
|
| 647 |
+
0,
|
| 648 |
+
0,
|
| 649 |
+
0,
|
| 650 |
+
0,
|
| 651 |
+
0,
|
| 652 |
+
0,
|
| 653 |
+
0,
|
| 654 |
+
0,
|
| 655 |
+
0,
|
| 656 |
+
0,
|
| 657 |
+
0,
|
| 658 |
+
0,
|
| 659 |
+
0,
|
| 660 |
+
0,
|
| 661 |
+
0,
|
| 662 |
+
0,
|
| 663 |
+
0,
|
| 664 |
+
0,
|
| 665 |
+
0,
|
| 666 |
+
0,
|
| 667 |
+
0,
|
| 668 |
+
0,
|
| 669 |
+
0,
|
| 670 |
+
0,
|
| 671 |
+
0,
|
| 672 |
+
0,
|
| 673 |
+
0
|
| 674 |
+
],
|
| 675 |
+
"prosodyStyleResource": "long_demo_8_prosody_style",
|
| 676 |
+
"decoderStyleResource": "long_demo_8_decoder_style",
|
| 677 |
+
"harmonicResource": "long_demo_8_harmonic_features",
|
| 678 |
+
"expectedFrames": 56
|
| 679 |
+
}
|
| 680 |
+
]
|
| 681 |
+
}
|
TTSCoreAILab/Models/LongDemo/long_demo_0_decoder_style.f32
ADDED
|
Binary file (512 Bytes). View file
|
|
|
TTSCoreAILab/Models/LongDemo/long_demo_0_harmonic_features.f32
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:310047ebe876691d35d8c093a8693bb07a0a62c7408c7a95df462c858e13028a
|
| 3 |
+
size 675928
|
TTSCoreAILab/Models/LongDemo/long_demo_0_prosody_style.f32
ADDED
|
Binary file (512 Bytes). View file
|
|
|
TTSCoreAILab/Models/LongDemo/long_demo_1_decoder_style.f32
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
�hm�@&C>��������w��U�;Si����,�������U�Qo�<9e7����>s�`>��>�F��.���y�7����=�mX���x�]�K�SS�<U��:p��;�ē>�Y��5#>-VR=t�=�bS>}�
|
| 2 |
+
=~�u:*>�9�=�˅=��o>��.>@���^��>;�a>8=��q����c��<X>
|
TTSCoreAILab/Models/LongDemo/long_demo_1_harmonic_features.f32
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7d57d06eec11cedead35a2d2c66ff2710a05c8b5773753969bbbd8f0d565683c
|
| 3 |
+
size 675928
|
TTSCoreAILab/Models/LongDemo/long_demo_1_prosody_style.f32
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
��H�x �>8_<?��?>����b�=��p>�>�(f�aL-��N>��!�h�@����L�I=ө��J>��j>�(���P��Q>@�=�5�=S��=5�T=���>����ܽ������>z��>y�9��ҳ>_��>(�&>H��>gԼ>e�>�u>j��=���=V�`���U=���>�_g����>�Ħ���)��t���a?>)�&>�3���?-;r>l&>?2>MG?"���0C=��ܾ�㋾�ၾ�7��=�>���=#4?P��<����?ƽ���>Hs%=}$�=�)
|
| 2 |
+
�^��|���R�;�P ?P`�=�V>F#�>9�������/��<hC�zϡ�-�T�ۑ�>���t�=�gܾ� �>b���<m>q�$��-7���J��/{�螄�9����=ޥ�=Q��>��=7>��\�>v���� ��=z�'qQ��k[>I���ՙ>��>��?�o�~>N�~��'?�D����������n��>���+T���$����=
|
TTSCoreAILab/Models/LongDemo/long_demo_2_decoder_style.f32
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
�Zj�Dv9>�������ײ��@�Y<�m��8�'�S���E����<Pz&��`�>�WY>i�>���J���qG���=W[�ɔl�$!I�P��<��<U!9+�>-$��U>8�L=4v�=ȝ=>�3��+ـ=�Z|���ýq~v>'E�Y
|
| 2 |
+
��;^��c>�%��"t�k<�vr=}wZ>��<5�?=�@�=s2�<��>�s�=ޑ�>}�^���Ž��.�S�A��
|
| 3 |
+
h>sLO>R�����=�x=$>��=(>�+7>��9��d������u��A��2>9���<���>=���[�#�O�=cҽ3����A����������= 0�Gc=�uC>�=�QV>.�>0��+1:+V(=t�=�2b���}<���;�Eн���kz;�`��Q\��u��<��ݽk�Y=�a<ʀ�<m����:�
|
TTSCoreAILab/Models/LongDemo/long_demo_2_harmonic_features.f32
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fbbc89ccc44a360307683cd1540c218015fd930d921f2d6c2e457be1762944d3
|
| 3 |
+
size 675928
|
TTSCoreAILab/Models/LongDemo/long_demo_2_prosody_style.f32
ADDED
|
Binary file (512 Bytes). View file
|
|
|
TTSCoreAILab/Models/LongDemo/long_demo_3_decoder_style.f32
ADDED
|
Binary file (512 Bytes). View file
|
|
|
TTSCoreAILab/Models/LongDemo/long_demo_3_harmonic_features.f32
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02155cf3002459d3d027400332cef0f6d995a9aedfb5d620cbe3b635b4cde828
|
| 3 |
+
size 675928
|
TTSCoreAILab/Models/LongDemo/long_demo_3_prosody_style.f32
ADDED
|
Binary file (512 Bytes). View file
|
|
|
TTSCoreAILab/Models/LongDemo/long_demo_4_decoder_style.f32
ADDED
|
Binary file (512 Bytes). View file
|
|
|
TTSCoreAILab/Models/LongDemo/long_demo_4_harmonic_features.f32
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:326d08a369ddb7ceeb25468a32af20a832d5e73321c1e1da8a477b082a9d94da
|
| 3 |
+
size 675928
|
TTSCoreAILab/Models/LongDemo/long_demo_4_prosody_style.f32
ADDED
|
Binary file (512 Bytes). View file
|
|
|
TTSCoreAILab/Models/LongDemo/long_demo_5_decoder_style.f32
ADDED
|
Binary file (512 Bytes). View file
|
|
|
TTSCoreAILab/Models/LongDemo/long_demo_5_harmonic_features.f32
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:edaa8c3653188593852515f58ae6b8dcc67a400797fda4ef51ef814319568f65
|
| 3 |
+
size 675928
|
TTSCoreAILab/Models/LongDemo/long_demo_5_prosody_style.f32
ADDED
|
Binary file (512 Bytes). View file
|
|
|
TTSCoreAILab/Models/LongDemo/long_demo_6_decoder_style.f32
ADDED
|
Binary file (512 Bytes). View file
|
|
|
TTSCoreAILab/Models/LongDemo/long_demo_6_harmonic_features.f32
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7040847dc59c2db829994e29e35d6feca18a03b1584608ed3eaeb2931e9559ed
|
| 3 |
+
size 675928
|
TTSCoreAILab/Models/LongDemo/long_demo_6_prosody_style.f32
ADDED
|
Binary file (512 Bytes). View file
|
|
|
TTSCoreAILab/Models/LongDemo/long_demo_7_decoder_style.f32
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
K�k�`�>>��Ȼ�8��
|
| 2 |
+
�=�����n���P~>�#�;�`��V
|
TTSCoreAILab/Models/LongDemo/long_demo_7_harmonic_features.f32
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4f3b40601f132826fce4805eaeb813237d15218cd7abccb1eb730f10f0e5693
|
| 3 |
+
size 675928
|
TTSCoreAILab/Models/LongDemo/long_demo_7_prosody_style.f32
ADDED
|
Binary file (512 Bytes). View file
|
|
|
TTSCoreAILab/Models/LongDemo/long_demo_8_decoder_style.f32
ADDED
|
Binary file (512 Bytes). View file
|
|
|
TTSCoreAILab/Models/LongDemo/long_demo_8_harmonic_features.f32
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d342973ef036253e48888d0b063fdc65816fc5bb9b6119bcae68b8192739b9f4
|
| 3 |
+
size 675928
|
TTSCoreAILab/Models/LongDemo/long_demo_8_prosody_style.f32
ADDED
|
Binary file (512 Bytes). View file
|
|
|