-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
152 lines (136 loc) · 3.59 KB
/
config.yml
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
144
145
146
147
148
149
150
151
152
model_configs:
- name: "hs1-encoder"
model: "harmony-ai/harmony-speech-v1"
model_type: "HarmonySpeechEncoder"
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "hs1-synthesizer"
model: "harmony-ai/harmony-speech-v1"
model_type: "HarmonySpeechSynthesizer"
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "hs1-vocoder"
model: "harmony-ai/harmony-speech-v1"
model_type: "HarmonySpeechVocoder"
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "ov1-synthesizer-en"
model: "myshell-ai/openvoice"
model_type: "OpenVoiceV1Synthesizer"
language: "EN"
voices: ["default", "whispering", "shouting", "excited", "cheerful", "terrified", "angry", "sad", "friendly"]
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "ov1-synthesizer-zh"
model: "myshell-ai/openvoice"
model_type: "OpenVoiceV1Synthesizer"
language: "ZH"
voices: ["default"]
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "ov1-tone-converter"
model: "myshell-ai/openvoice"
model_type: "OpenVoiceV1ToneConverter"
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "ov1-tone-converter-encoder"
model: "myshell-ai/openvoice"
model_type: "OpenVoiceV1ToneConverterEncoder"
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "ov2-synthesizer-en"
model: "myshell-ai/MeloTTS-English-v3"
model_type: "MeloTTSSynthesizer"
language: "EN"
voices: ["EN-Newest"]
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "ov2-synthesizer-zh"
model: "myshell-ai/MeloTTS-Chinese"
model_type: "MeloTTSSynthesizer"
language: "ZH"
voices: ["ZH"]
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "ov2-synthesizer-es"
model: "myshell-ai/MeloTTS-Spanish"
model_type: "MeloTTSSynthesizer"
language: "ES"
voices: [ "ES" ]
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "ov2-synthesizer-fr"
model: "myshell-ai/MeloTTS-French"
model_type: "MeloTTSSynthesizer"
language: "FR"
voices: [ "FR" ]
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "ov2-synthesizer-jp"
model: "myshell-ai/MeloTTS-Japanese"
model_type: "MeloTTSSynthesizer"
language: "JP"
voices: [ "JP" ]
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "ov2-synthesizer-kr"
model: "myshell-ai/MeloTTS-Korean"
model_type: "MeloTTSSynthesizer"
language: "KR"
voices: [ "KR" ]
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "ov2-tone-converter"
model: "myshell-ai/openvoicev2"
model_type: "OpenVoiceV2ToneConverter"
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "ov2-tone-converter-encoder"
model: "myshell-ai/openvoicev2"
model_type: "OpenVoiceV2ToneConverterEncoder"
max_batch_size: 10
dtype: "float32"
device_config:
device: "cpu"
- name: "faster-whisper-medium"
model: "medium"
model_type: "FasterWhisper"
max_batch_size: 16
dtype: "float32"
device_config:
device: "cpu"
- name: "faster-whisper-tiny"
model: "tiny"
model_type: "FasterWhisper"
max_batch_size: 16
dtype: "float32"
device_config:
device: "cpu"