File size: 3,336 Bytes
c6070db fbe2ef1 c6070db |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
{
"train": {
"log_interval": 200,
"eval_interval": 1000,
"seed": 1234,
"epochs": 10000,
"learning_rate": 2e-4,
"betas": [0.8, 0.99],
"eps": 1e-9,
"batch_size": 1,
"fp16_run": true,
"lr_decay": 0.999875,
"segment_size": 8192,
"init_lr_ratio": 1,
"warmup_epochs": 0,
"c_mel": 45,
"c_kl": 1.0
},
"data": {
"training_files":"E:/uma_voice/output_train.txt.cleaned",
"validation_files":"E:/uma_voice/output_val.txt.cleaned",
"text_cleaners":["japanese_cleaners"],
"max_wav_value": 32768.0,
"sampling_rate": 22050,
"filter_length": 1024,
"hop_length": 256,
"win_length": 1024,
"n_mel_channels": 80,
"mel_fmin": 0.0,
"mel_fmax": null,
"add_blank": true,
"n_speakers": 87,
"cleaned_text": true
},
"model": {
"inter_channels": 192,
"hidden_channels": 192,
"filter_channels": 768,
"n_heads": 2,
"n_layers": 6,
"kernel_size": 3,
"p_dropout": 0.1,
"resblock": "1",
"resblock_kernel_sizes": [3,7,11],
"resblock_dilation_sizes": [[1,3,5], [1,3,5], [1,3,5]],
"upsample_rates": [8,8,2,2],
"upsample_initial_channel": 512,
"upsample_kernel_sizes": [16,16,4,4],
"n_layers_q": 3,
"use_spectral_norm": false,
"gin_channels": 256
},
"speakers": ["Special Week",
"Silence Suzuka",
"Tokai Teio",
"Maruzensky",
"Fuji Kiseki",
"Oguri Cap",
"Gold Ship",
"Vodka",
"Daiwa Scarlet",
"Taiki Shuttle",
"Grass Wonder",
"Hishi Amazon",
"Mejiro Mcqueen",
"El Condor Pasa",
"T.M. Opera O",
"Narita Brian",
"Symboli Rudolf",
"Air Groove",
"Agnes Digital",
"Seiun Sky",
"Tamamo Cross",
"Fine Motion",
"Biwa Hayahide",
"Mayano Topgun",
"Manhattan Cafe",
"Mihono Bourbon",
"Mejiro Ryan",
"Hishi Akebono",
"Yukino Bijin",
"Rice Shower",
"Ines Fujin",
"Agnes Tachyon",
"Admire Vega",
"Inari One",
"Winning Ticket",
"Air Shakur",
"Eishin Flash",
"Curren Chan",
"Kawakami Princess",
"Gold City",
"Sakura Bakushin O",
"Seeking the Pearl",
"Shinko Windy",
"Sweep Tosho",
"Super Creek",
"Smart Falcon",
"Zenno Rob Roy",
"Tosen Jordan",
"Nakayama Festa",
"Narita Taishin",
"Nishino Flower",
"Haru Urara",
"Bamboo Memory",
"Biko Pegasus",
"Marvelous Sunday",
"Matikane Fukukitaru",
"Mr. C.B.",
"Meisho Doto",
"Mejiro Dober",
"Nice Nature",
"King Halo",
"Matikane Tannhauser",
"Ikuno Dictus",
"Mejiro Palmer",
"Daitaku Helios",
"Twin Turbo",
"Satono Diamond",
"Kitasan Black",
"Sakura Chiyono O",
"Sirius Symboli",
"Mejiro Ardan",
"Yaeno Muteki",
"Tsurumaru Tsuyoshi",
"Mejiro Bright",
"Sakura Laurel",
"Narita Top Road",
"Yamanin Zephyr",
"Symboli Kris S",
"Tanino Gimlet",
"Daiichi Ruby",
"Aston Machan",
"Hayakawa Tazuna",
"KS Miracle",
"Kopano Rickey",
"Hoko Tarumae",
"Wonder Acute",
"President Akikawa"
],
"symbols": ["_", ",", ".", "!", "?", "-", "A", "E", "I", "N", "O", "Q", "U", "a", "b", "d", "e", "f", "g", "h", "i", "j", "k", "m", "n", "o", "p", "r", "s", "t", "u", "v", "w", "y", "z", "\u0283", "\u02a7", "\u2193", "\u2191", " "]
}
|