HiMind commited on
Commit
c45bdd8
·
verified ·
1 Parent(s): 6677dd7

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +57 -0
config.json ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "packedtts",
3
+ "library_name": "chichat",
4
+ "bundle_file": "tts.pt",
5
+ "runtime_script": "PackedTTS.py",
6
+ "version": 1,
7
+ "architecture": {
8
+ "text_model": "T3",
9
+ "vocoder": "S3Gen",
10
+ "speaker_encoder": "VoiceEncoder",
11
+ "tokenizer": "EnTokenizer"
12
+ },
13
+ "bundle_layout": {
14
+ "models": {
15
+ "t3_state": "models.t3_state",
16
+ "s3gen_state": "models.s3gen_state",
17
+ "ve_state": "models.ve_state",
18
+ "tokenizer_json": "models.tokenizer_json"
19
+ },
20
+ "collections": {
21
+ "voices": "voices",
22
+ "emotions": "emotions",
23
+ "defaults": "defaults",
24
+ "indexes": "indexes"
25
+ }
26
+ },
27
+ "audio": {
28
+ "sample_rate": 24000,
29
+ "reference_sample_rate": 16000,
30
+ "max_reference_seconds": 10.0
31
+ },
32
+ "defaults": {
33
+ "default_voice": "",
34
+ "default_emotion": "",
35
+ "missing_voice_policy": "random",
36
+ "missing_emotion_policy": "voice_default_else_random",
37
+ "fuzzy_cutoff": 0.72
38
+ },
39
+ "supported_commands": [
40
+ "create",
41
+ "add-voice-dir",
42
+ "add-voice-ref",
43
+ "add-emotion-dir",
44
+ "add-emotion-ref",
45
+ "remove-voice",
46
+ "remove-emotion",
47
+ "list",
48
+ "validate"
49
+ ],
50
+ "input_files": [
51
+ "tts.pt",
52
+ "PackedTTS.py",
53
+ "requirements.txt",
54
+ "README.md"
55
+ ],
56
+ "query_file": true
57
+ }