TachibanaKimika commited on
Commit
e8eb43d
1 Parent(s): 6ad3766

add hibiki model

Browse files
Files changed (3) hide show
  1. README.md +5 -4
  2. hibiki/G_hibiki_38.pth +3 -0
  3. hibiki/config.json +93 -0
README.md CHANGED
@@ -7,11 +7,12 @@ license: mit
7
 
8
  由[so-vits-svc-4.0](https://github.com/innnky/so-vits-svc/tree/4.0)训练的模型 **不是v2**
9
 
10
- - [ick](https://pjsekai.sega.jp/character/unite01/ichika/index.html) - 约1500条语音 [source](https://pjsek.ai/assets/ondemand/sound/card_scenario/voice)
11
- - [saki](https://pjsekai.sega.jp/character/unite01/saki/index.html) - 约1500条语音 [source](https://pjsek.ai/assets/ondemand/sound/card_scenario/voice)
12
- - [riri](https://bgm.tv/character/76764) - 5k条游戏语音, 包含hs
13
  - ![220ep](./assets/riri_220epoch.png)
14
- - [sora](https://bgm.tv/character/27602) - 游戏语音, 数量忘了, 包含hs
 
15
 
16
 
17
  模型命名遵循`G_${name}_${Epoch}.pth`.
 
7
 
8
  由[so-vits-svc-4.0](https://github.com/innnky/so-vits-svc/tree/4.0)训练的模型 **不是v2**
9
 
10
+ - [ick(星乃一歌)](https://pjsekai.sega.jp/character/unite01/ichika/index.html) - 约1500条语音 [source](https://pjsek.ai/assets/ondemand/sound/card_scenario/voice)
11
+ - [saki(天馬咲希)](https://pjsekai.sega.jp/character/unite01/saki/index.html) - 约1500条语音 [source](https://pjsek.ai/assets/ondemand/sound/card_scenario/voice)
12
+ - [riri(鹿島理々)](https://bgm.tv/character/76764) - 5k条语音, 包含hs语音
13
  - ![220ep](./assets/riri_220epoch.png)
14
+ - [sora(一ノ瀬空)](https://bgm.tv/character/27602) - 约3.5k条语音, 包含hs语音
15
+ - [hibiki(小日向響)](https://bgm.tv/character/76763) - 约7k条语音, 包含hs的语音
16
 
17
 
18
  模型命名遵循`G_${name}_${Epoch}.pth`.
hibiki/G_hibiki_38.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:220b1be481d9c9dc4e0d50eef25dfa718522a8b794aa12567c4b8940da182006
3
+ size 542789405
hibiki/config.json ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "train": {
3
+ "log_interval": 200,
4
+ "eval_interval": 1000,
5
+ "seed": 1234,
6
+ "epochs": 60,
7
+ "learning_rate": 0.0001,
8
+ "betas": [
9
+ 0.8,
10
+ 0.99
11
+ ],
12
+ "eps": 1e-09,
13
+ "batch_size": 6,
14
+ "fp16_run": false,
15
+ "lr_decay": 0.999875,
16
+ "segment_size": 10240,
17
+ "init_lr_ratio": 1,
18
+ "warmup_epochs": 0,
19
+ "c_mel": 45,
20
+ "c_kl": 1.0,
21
+ "use_sr": true,
22
+ "max_speclen": 512,
23
+ "port": "8001",
24
+ "keep_ckpts": 3
25
+ },
26
+ "data": {
27
+ "training_files": "filelists/train.txt",
28
+ "validation_files": "filelists/val.txt",
29
+ "max_wav_value": 32768.0,
30
+ "sampling_rate": 44100,
31
+ "filter_length": 2048,
32
+ "hop_length": 512,
33
+ "win_length": 2048,
34
+ "n_mel_channels": 80,
35
+ "mel_fmin": 0.0,
36
+ "mel_fmax": 22050
37
+ },
38
+ "model": {
39
+ "inter_channels": 192,
40
+ "hidden_channels": 192,
41
+ "filter_channels": 768,
42
+ "n_heads": 2,
43
+ "n_layers": 6,
44
+ "kernel_size": 3,
45
+ "p_dropout": 0.1,
46
+ "resblock": "1",
47
+ "resblock_kernel_sizes": [
48
+ 3,
49
+ 7,
50
+ 11
51
+ ],
52
+ "resblock_dilation_sizes": [
53
+ [
54
+ 1,
55
+ 3,
56
+ 5
57
+ ],
58
+ [
59
+ 1,
60
+ 3,
61
+ 5
62
+ ],
63
+ [
64
+ 1,
65
+ 3,
66
+ 5
67
+ ]
68
+ ],
69
+ "upsample_rates": [
70
+ 8,
71
+ 8,
72
+ 2,
73
+ 2,
74
+ 2
75
+ ],
76
+ "upsample_initial_channel": 512,
77
+ "upsample_kernel_sizes": [
78
+ 16,
79
+ 16,
80
+ 4,
81
+ 4,
82
+ 4
83
+ ],
84
+ "n_layers_q": 3,
85
+ "use_spectral_norm": false,
86
+ "gin_channels": 256,
87
+ "ssl_dim": 256,
88
+ "n_speakers": 200
89
+ },
90
+ "spk": {
91
+ "hibiki": 0
92
+ }
93
+ }