Add モデル設定
Browse files- config.json +66 -0
config.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "style_bert_vits2",
|
| 3 |
+
"language": "ja",
|
| 4 |
+
"sample_rate": 44100,
|
| 5 |
+
"n_speakers": 4,
|
| 6 |
+
"speakers": [
|
| 7 |
+
{
|
| 8 |
+
"id": 0,
|
| 9 |
+
"name": "Default",
|
| 10 |
+
"gender": "neutral",
|
| 11 |
+
"description": "デフォルト話者"
|
| 12 |
+
},
|
| 13 |
+
{
|
| 14 |
+
"id": 1,
|
| 15 |
+
"name": "Female1",
|
| 16 |
+
"gender": "female",
|
| 17 |
+
"description": "女性話者1"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"id": 2,
|
| 21 |
+
"name": "Male1",
|
| 22 |
+
"gender": "male",
|
| 23 |
+
"description": "男性話者1"
|
| 24 |
+
},
|
| 25 |
+
{
|
| 26 |
+
"id": 3,
|
| 27 |
+
"name": "Child1",
|
| 28 |
+
"gender": "neutral",
|
| 29 |
+
"description": "子供話者1"
|
| 30 |
+
}
|
| 31 |
+
],
|
| 32 |
+
"emotions": [
|
| 33 |
+
"neutral",
|
| 34 |
+
"happy",
|
| 35 |
+
"sad",
|
| 36 |
+
"angry",
|
| 37 |
+
"surprised",
|
| 38 |
+
"fear",
|
| 39 |
+
"disgust"
|
| 40 |
+
],
|
| 41 |
+
"inference_params": {
|
| 42 |
+
"speed": {
|
| 43 |
+
"min": 0.5,
|
| 44 |
+
"max": 2.0,
|
| 45 |
+
"default": 1.0
|
| 46 |
+
},
|
| 47 |
+
"pitch": {
|
| 48 |
+
"min": -12.0,
|
| 49 |
+
"max": 12.0,
|
| 50 |
+
"default": 0.0
|
| 51 |
+
},
|
| 52 |
+
"intonation": {
|
| 53 |
+
"min": 0.0,
|
| 54 |
+
"max": 2.0,
|
| 55 |
+
"default": 1.0
|
| 56 |
+
},
|
| 57 |
+
"volume": {
|
| 58 |
+
"min": 0.0,
|
| 59 |
+
"max": 2.0,
|
| 60 |
+
"default": 1.0
|
| 61 |
+
}
|
| 62 |
+
},
|
| 63 |
+
"max_text_length": 500,
|
| 64 |
+
"supported_formats": ["wav", "mp3"],
|
| 65 |
+
"version": "2.0"
|
| 66 |
+
}
|