diff --git a/Data/config.json b/Data/config.json new file mode 100644 index 0000000000000000000000000000000000000000..81eb9903b8136701fed32875a148f13a12fafca9 --- /dev/null +++ b/Data/config.json @@ -0,0 +1,98 @@ +{ + "train": { + "log_interval": 200, + "eval_interval": 1000, + "seed": 42, + "epochs": 1000, + "learning_rate": 0.0002, + "betas": [ + 0.8, + 0.99 + ], + "eps": 1e-09, + "batch_size": 24, + "fp16_run": false, + "lr_decay": 0.99995, + "segment_size": 16384, + "init_lr_ratio": 1, + "warmup_epochs": 0, + "c_mel": 45, + "c_kl": 1.0, + "skip_optimizer": true + }, + "data": { + "training_files": "filelists/TalkFlower_mix/train.list", + "validation_files": "filelists/TalkFlower_mix/val.list", + "max_wav_value": 32768.0, + "sampling_rate": 44100, + "filter_length": 2048, + "hop_length": 512, + "win_length": 2048, + "n_mel_channels": 128, + "mel_fmin": 0.0, + "mel_fmax": null, + "add_blank": true, + "n_speakers": 896, + "cleaned_text": true, + "spk2id": { + "TalkFlower_CNzh": 0, + "TalkFlower_JPja": 1, + "TalkFlower_USen": 2 + } + }, + "model": { + "use_spk_conditioned_encoder": true, + "use_noise_scaled_mas": true, + "use_mel_posterior_encoder": false, + "use_duration_discriminator": true, + "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, + 2 + ], + "upsample_initial_channel": 512, + "upsample_kernel_sizes": [ + 16, + 16, + 8, + 2, + 2 + ], + "n_layers_q": 3, + "use_spectral_norm": false, + "gin_channels": 256 + }, + "version": "2.1" +} \ No newline at end of file diff --git a/__pycache__/attentions.cpython-39.pyc b/__pycache__/attentions.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0b98a269c86248286ac916f031bc9e08d6144569 Binary files /dev/null and b/__pycache__/attentions.cpython-39.pyc differ diff --git a/__pycache__/commons.cpython-39.pyc b/__pycache__/commons.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..051398eec69408c622931475353bb3b70569c4ac Binary files /dev/null and b/__pycache__/commons.cpython-39.pyc differ diff --git a/__pycache__/config.cpython-39.pyc b/__pycache__/config.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e93fe4c02f5d148228b2e14b609b1d1fc771ca6c Binary files /dev/null and b/__pycache__/config.cpython-39.pyc differ diff --git a/__pycache__/emo_gen.cpython-39.pyc b/__pycache__/emo_gen.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..95ffb0cc2aa19cb48b5eb6c9f5987105a67a62be Binary files /dev/null and b/__pycache__/emo_gen.cpython-39.pyc differ diff --git a/__pycache__/infer.cpython-39.pyc b/__pycache__/infer.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a643001d3b14d59ba7c12b862b45128d9df8b429 Binary files /dev/null and b/__pycache__/infer.cpython-39.pyc differ diff --git a/__pycache__/models.cpython-39.pyc b/__pycache__/models.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..77fce5a1034ee7b35eaf6118f2a94bc4238df11e Binary files /dev/null and b/__pycache__/models.cpython-39.pyc differ diff --git a/__pycache__/modules.cpython-39.pyc b/__pycache__/modules.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1f926e46fc8da5ba962a50d4872ed72373108e1d Binary files /dev/null and b/__pycache__/modules.cpython-39.pyc differ diff --git a/__pycache__/presets.cpython-39.pyc b/__pycache__/presets.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d067c392aabee2f96a56e79bd3ac02fa573ae9d7 Binary files /dev/null and b/__pycache__/presets.cpython-39.pyc differ diff --git a/__pycache__/re_matching.cpython-39.pyc b/__pycache__/re_matching.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e1a98d15a9307a0a1ccd3a7053a9a3c4167bfd8d Binary files /dev/null and b/__pycache__/re_matching.cpython-39.pyc differ diff --git a/__pycache__/transforms.cpython-39.pyc b/__pycache__/transforms.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1c503b44c36ce55c6ab693cb652f0a1b5053a47f Binary files /dev/null and b/__pycache__/transforms.cpython-39.pyc differ diff --git a/__pycache__/utils.cpython-39.pyc b/__pycache__/utils.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..076957dd93856f47ed8340706951209c59ce5a43 Binary files /dev/null and b/__pycache__/utils.cpython-39.pyc differ diff --git a/monotonic_align/__pycache__/__init__.cpython-39.pyc b/monotonic_align/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5193220f7c786832d5819a99512ef010da093d5 Binary files /dev/null and b/monotonic_align/__pycache__/__init__.cpython-39.pyc differ diff --git a/monotonic_align/__pycache__/core.cpython-39.pyc b/monotonic_align/__pycache__/core.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c146958a0c7bd4fedafb20bad2902a2b4041331c Binary files /dev/null and b/monotonic_align/__pycache__/core.cpython-39.pyc differ diff --git a/oldVersion/V101/__pycache__/__init__.cpython-39.pyc b/oldVersion/V101/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1d8f30145ea6483bb4ba591ae163ecd7117c0681 Binary files /dev/null and b/oldVersion/V101/__pycache__/__init__.cpython-39.pyc differ diff --git a/oldVersion/V101/__pycache__/models.cpython-39.pyc b/oldVersion/V101/__pycache__/models.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c7e6d9a646e458cdd3ab22bdea52dcae8233cf82 Binary files /dev/null and b/oldVersion/V101/__pycache__/models.cpython-39.pyc differ diff --git a/oldVersion/V101/text/__pycache__/__init__.cpython-39.pyc b/oldVersion/V101/text/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..63450385ad5dda24ad14c8b0a251ddcc8990aef7 Binary files /dev/null and b/oldVersion/V101/text/__pycache__/__init__.cpython-39.pyc differ diff --git a/oldVersion/V101/text/__pycache__/chinese.cpython-39.pyc b/oldVersion/V101/text/__pycache__/chinese.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb743ba9d98f9bcf515729bc1fd3b1f320626150 Binary files /dev/null and b/oldVersion/V101/text/__pycache__/chinese.cpython-39.pyc differ diff --git a/oldVersion/V101/text/__pycache__/cleaner.cpython-39.pyc b/oldVersion/V101/text/__pycache__/cleaner.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1e1cc41420827ca3c660d97b8c1511c52140b2e1 Binary files /dev/null and b/oldVersion/V101/text/__pycache__/cleaner.cpython-39.pyc differ diff --git a/oldVersion/V101/text/__pycache__/symbols.cpython-39.pyc b/oldVersion/V101/text/__pycache__/symbols.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2f1fa8e397a3914b1af7cbf767adc1ebf0a2f984 Binary files /dev/null and b/oldVersion/V101/text/__pycache__/symbols.cpython-39.pyc differ diff --git a/oldVersion/V101/text/__pycache__/tone_sandhi.cpython-39.pyc b/oldVersion/V101/text/__pycache__/tone_sandhi.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..966abea24a8ca2aa35fced9d393ae6c33f2a182a Binary files /dev/null and b/oldVersion/V101/text/__pycache__/tone_sandhi.cpython-39.pyc differ diff --git a/oldVersion/V110/__pycache__/__init__.cpython-39.pyc b/oldVersion/V110/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6b5e540f2326c9443b741bb512d58b15c24c5787 Binary files /dev/null and b/oldVersion/V110/__pycache__/__init__.cpython-39.pyc differ diff --git a/oldVersion/V110/__pycache__/models.cpython-39.pyc b/oldVersion/V110/__pycache__/models.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7b59993943347fdb4558ffee8d48530d0debcbbc Binary files /dev/null and b/oldVersion/V110/__pycache__/models.cpython-39.pyc differ diff --git a/oldVersion/V110/text/__pycache__/__init__.cpython-39.pyc b/oldVersion/V110/text/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a90960189fd62c115696dafdb21db2380b3b41fc Binary files /dev/null and b/oldVersion/V110/text/__pycache__/__init__.cpython-39.pyc differ diff --git a/oldVersion/V110/text/__pycache__/chinese.cpython-39.pyc b/oldVersion/V110/text/__pycache__/chinese.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..708cb08a812ea5d66d2e3a0ef12d4065583d7c2c Binary files /dev/null and b/oldVersion/V110/text/__pycache__/chinese.cpython-39.pyc differ diff --git a/oldVersion/V110/text/__pycache__/cleaner.cpython-39.pyc b/oldVersion/V110/text/__pycache__/cleaner.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6c5b555809ae93aa8bd1e51a3bb42192cb690dfe Binary files /dev/null and b/oldVersion/V110/text/__pycache__/cleaner.cpython-39.pyc differ diff --git a/oldVersion/V110/text/__pycache__/japanese.cpython-39.pyc b/oldVersion/V110/text/__pycache__/japanese.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ab26ed353399af42e8596ca633632a120058c50a Binary files /dev/null and b/oldVersion/V110/text/__pycache__/japanese.cpython-39.pyc differ diff --git a/oldVersion/V110/text/__pycache__/symbols.cpython-39.pyc b/oldVersion/V110/text/__pycache__/symbols.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..883c64039053dfbb15bfca83df765b47b481f625 Binary files /dev/null and b/oldVersion/V110/text/__pycache__/symbols.cpython-39.pyc differ diff --git a/oldVersion/V110/text/__pycache__/tone_sandhi.cpython-39.pyc b/oldVersion/V110/text/__pycache__/tone_sandhi.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb8e77747eb4cd0c4b64c3f7d0032cf41a64c425 Binary files /dev/null and b/oldVersion/V110/text/__pycache__/tone_sandhi.cpython-39.pyc differ diff --git a/oldVersion/V111/__pycache__/__init__.cpython-39.pyc b/oldVersion/V111/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4d187b93b8d1482a15b83088ca593dcbb70da08c Binary files /dev/null and b/oldVersion/V111/__pycache__/__init__.cpython-39.pyc differ diff --git a/oldVersion/V111/__pycache__/models.cpython-39.pyc b/oldVersion/V111/__pycache__/models.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..982ef9720721464372bf43778aa6ecbdfc231a51 Binary files /dev/null and b/oldVersion/V111/__pycache__/models.cpython-39.pyc differ diff --git a/oldVersion/V111/text/__pycache__/__init__.cpython-39.pyc b/oldVersion/V111/text/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5c880c1b1687ff4d784c1913c8404e18c2d0a256 Binary files /dev/null and b/oldVersion/V111/text/__pycache__/__init__.cpython-39.pyc differ diff --git a/oldVersion/V111/text/__pycache__/chinese.cpython-39.pyc b/oldVersion/V111/text/__pycache__/chinese.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d06eef1b57b70e769f990f775a5e69c19807fe70 Binary files /dev/null and b/oldVersion/V111/text/__pycache__/chinese.cpython-39.pyc differ diff --git a/oldVersion/V111/text/__pycache__/cleaner.cpython-39.pyc b/oldVersion/V111/text/__pycache__/cleaner.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..596c6bd716358071005eb3dc53407ef53964e9eb Binary files /dev/null and b/oldVersion/V111/text/__pycache__/cleaner.cpython-39.pyc differ diff --git a/oldVersion/V111/text/__pycache__/japanese.cpython-39.pyc b/oldVersion/V111/text/__pycache__/japanese.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cbf18175291e9d39508934582085fda41416f19c Binary files /dev/null and b/oldVersion/V111/text/__pycache__/japanese.cpython-39.pyc differ diff --git a/oldVersion/V111/text/__pycache__/symbols.cpython-39.pyc b/oldVersion/V111/text/__pycache__/symbols.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c336480e268758ef09e2969350c0eed2127923c1 Binary files /dev/null and b/oldVersion/V111/text/__pycache__/symbols.cpython-39.pyc differ diff --git a/oldVersion/V111/text/__pycache__/tone_sandhi.cpython-39.pyc b/oldVersion/V111/text/__pycache__/tone_sandhi.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..306f231f354d2fd7c3b4d692babea92a202d4888 Binary files /dev/null and b/oldVersion/V111/text/__pycache__/tone_sandhi.cpython-39.pyc differ diff --git a/oldVersion/V111/text/fix/__pycache__/__init__.cpython-39.pyc b/oldVersion/V111/text/fix/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2705bc1544aa603444c181054b1dc55580e0c4d0 Binary files /dev/null and b/oldVersion/V111/text/fix/__pycache__/__init__.cpython-39.pyc differ diff --git a/oldVersion/V111/text/fix/__pycache__/japanese.cpython-39.pyc b/oldVersion/V111/text/fix/__pycache__/japanese.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f0a1253e82e00e39138d366ced00913d05b7e0d Binary files /dev/null and b/oldVersion/V111/text/fix/__pycache__/japanese.cpython-39.pyc differ diff --git a/oldVersion/V200/__pycache__/__init__.cpython-39.pyc b/oldVersion/V200/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bfe94f7360f05fb57ae025d6be4cea0c54045bfa Binary files /dev/null and b/oldVersion/V200/__pycache__/__init__.cpython-39.pyc differ diff --git a/oldVersion/V200/__pycache__/models.cpython-39.pyc b/oldVersion/V200/__pycache__/models.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..48b567619d1b8b1d7b8e4ef5142b8890632a8755 Binary files /dev/null and b/oldVersion/V200/__pycache__/models.cpython-39.pyc differ diff --git a/oldVersion/V200/text/__pycache__/__init__.cpython-39.pyc b/oldVersion/V200/text/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..22db1658a3c1e9c97cd1de3846e792057695d914 Binary files /dev/null and b/oldVersion/V200/text/__pycache__/__init__.cpython-39.pyc differ diff --git a/oldVersion/V200/text/__pycache__/chinese.cpython-39.pyc b/oldVersion/V200/text/__pycache__/chinese.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..18e36d78b847c458b28c2e904c4115165daa894d Binary files /dev/null and b/oldVersion/V200/text/__pycache__/chinese.cpython-39.pyc differ diff --git a/oldVersion/V200/text/__pycache__/cleaner.cpython-39.pyc b/oldVersion/V200/text/__pycache__/cleaner.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a2d563bce0ec9e243766fb0881a3dc8b3450578d Binary files /dev/null and b/oldVersion/V200/text/__pycache__/cleaner.cpython-39.pyc differ diff --git a/oldVersion/V200/text/__pycache__/english.cpython-39.pyc b/oldVersion/V200/text/__pycache__/english.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..20e02895476a4ae9650f43f712a387cf6d4aab08 Binary files /dev/null and b/oldVersion/V200/text/__pycache__/english.cpython-39.pyc differ diff --git a/oldVersion/V200/text/__pycache__/japanese.cpython-39.pyc b/oldVersion/V200/text/__pycache__/japanese.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..253e00da8475506020a5b53aea11f7fe38f7b775 Binary files /dev/null and b/oldVersion/V200/text/__pycache__/japanese.cpython-39.pyc differ diff --git a/oldVersion/V200/text/__pycache__/symbols.cpython-39.pyc b/oldVersion/V200/text/__pycache__/symbols.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..da8cec144843494d26423fbb268d1b181bb3dbcb Binary files /dev/null and b/oldVersion/V200/text/__pycache__/symbols.cpython-39.pyc differ diff --git a/oldVersion/V200/text/__pycache__/tone_sandhi.cpython-39.pyc b/oldVersion/V200/text/__pycache__/tone_sandhi.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0fc0a630d7375edc2edfd7d9755c4417ebc8e941 Binary files /dev/null and b/oldVersion/V200/text/__pycache__/tone_sandhi.cpython-39.pyc differ diff --git a/oldVersion/__pycache__/__init__.cpython-39.pyc b/oldVersion/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d834a4f4747355309f3220722f768bf376909641 Binary files /dev/null and b/oldVersion/__pycache__/__init__.cpython-39.pyc differ diff --git a/text/__pycache__/__init__.cpython-39.pyc b/text/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1ef46c33fd2ac0e300fa987a7fdba47b34ba177 Binary files /dev/null and b/text/__pycache__/__init__.cpython-39.pyc differ diff --git a/text/__pycache__/chinese.cpython-39.pyc b/text/__pycache__/chinese.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..16dc98bee994451a783672f4e9f0a3d7c2aea8c9 Binary files /dev/null and b/text/__pycache__/chinese.cpython-39.pyc differ diff --git a/text/__pycache__/chinese_bert.cpython-39.pyc b/text/__pycache__/chinese_bert.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..58263ab5b3d69cbc258326750443309d8343b8dd Binary files /dev/null and b/text/__pycache__/chinese_bert.cpython-39.pyc differ diff --git a/text/__pycache__/cleaner.cpython-39.pyc b/text/__pycache__/cleaner.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df0a36615049ad30b866dfc8537ffcb7bdebdf6c Binary files /dev/null and b/text/__pycache__/cleaner.cpython-39.pyc differ diff --git a/text/__pycache__/english.cpython-39.pyc b/text/__pycache__/english.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ae1f33c7a941a5fbeb9dd54144d1046fe21532f7 Binary files /dev/null and b/text/__pycache__/english.cpython-39.pyc differ diff --git a/text/__pycache__/english_bert_mock.cpython-39.pyc b/text/__pycache__/english_bert_mock.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4d107f7e5fd87ae606a81361e69fceb9ece74269 Binary files /dev/null and b/text/__pycache__/english_bert_mock.cpython-39.pyc differ diff --git a/text/__pycache__/japanese.cpython-39.pyc b/text/__pycache__/japanese.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..83f82cbdc4a6d6c405fd830d4ba6fa6d223ae55c Binary files /dev/null and b/text/__pycache__/japanese.cpython-39.pyc differ diff --git a/text/__pycache__/japanese_bert.cpython-39.pyc b/text/__pycache__/japanese_bert.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fc54ac52acc2d745a90743fd41af17e69c746470 Binary files /dev/null and b/text/__pycache__/japanese_bert.cpython-39.pyc differ diff --git a/text/__pycache__/symbols.cpython-39.pyc b/text/__pycache__/symbols.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e3b018e0db28cc12e9467b9e0adc5f06d0a1fd76 Binary files /dev/null and b/text/__pycache__/symbols.cpython-39.pyc differ diff --git a/text/__pycache__/tone_sandhi.cpython-39.pyc b/text/__pycache__/tone_sandhi.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7f65fa206201911d9696d4fa61e873ec5f3c84ed Binary files /dev/null and b/text/__pycache__/tone_sandhi.cpython-39.pyc differ diff --git a/tools/__pycache__/__init__.cpython-39.pyc b/tools/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d0017f536349c3d50c897a9b38e9bff499f931f0 Binary files /dev/null and b/tools/__pycache__/__init__.cpython-39.pyc differ diff --git a/tools/__pycache__/classify_language.cpython-39.pyc b/tools/__pycache__/classify_language.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..906ffb1488bf8c6b2d26d598e1297c68801052ad Binary files /dev/null and b/tools/__pycache__/classify_language.cpython-39.pyc differ diff --git a/tools/__pycache__/sentence.cpython-39.pyc b/tools/__pycache__/sentence.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eada8cba74d71cb1c9cff89255e1c12cc082690c Binary files /dev/null and b/tools/__pycache__/sentence.cpython-39.pyc differ diff --git a/tools/__pycache__/webui.cpython-39.pyc b/tools/__pycache__/webui.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4d6dae0834c8cc516102de59a47a8cdb12acc967 Binary files /dev/null and b/tools/__pycache__/webui.cpython-39.pyc differ