Spaces:
Running
Running
Zulivan
commited on
Commit
·
1c0cbb0
1
Parent(s):
c03419f
updates
Browse files- app.py +16 -17
- weights/Cyprien400/Cyprien_e400_s37600.pth +3 -0
- weights/Cyprien400/added_IVF1510_Flat_nprobe_1_Cyprien_v2.index +3 -0
- weights/Inoxtag/added_IVF829_Flat_nprobe_1_inoxtagModel_v2.index +3 -0
- weights/Inoxtag/inoxtagModel.pth +3 -0
- weights/Joyca/JOYCA (1).pth +3 -0
- weights/Joyca/added_IVF854_Flat_nprobe_1_JOYCA_v2.index +3 -0
- weights/LinedMC/metadata.json +148 -0
- weights/LinedMC/model.index +3 -0
- weights/LinedMC/model.pth +3 -0
- weights/Michou/Michoumodel.pth +3 -0
- weights/Michou/added_IVF1218_Flat_nprobe_1_Michoumodel_v2.index +3 -0
- weights/MonsieurPof/MonsieurPof.pth +3 -0
- weights/MonsieurPof/added_IVF811_Flat_nprobe_1_MonsieurPof_v2.index +3 -0
- weights/Potatoz/added_IVF1049_Flat_nprobe_1_potatoz_v2.index +3 -0
- weights/Potatoz/potatoz_e300_s29400.pth +3 -0
- weights/Psyhodelik/Psyhodelik.pth +3 -0
- weights/Psyhodelik/added_IVF1795_Flat_nprobe_1_Psyhodelik_v2.index +3 -0
- weights/Shawen/metadata.json +151 -0
- weights/Shawen/model.index +3 -0
- weights/Shawen/model.pth +3 -0
- weights/XJP/added_IVF336_Flat_nprobe_1.index +3 -0
- weights/XJP/xi-jingpin2333333.pth +3 -0
- weights/azpaz/metadata.json +148 -0
- weights/azpaz/model.index +3 -0
- weights/azpaz/model.pth +3 -0
- weights/lincn/lincn_e420_s7560.pth +3 -0
- weights/lincn/trained_IVF718_Flat_nprobe_1_lincn_v2.index +3 -0
app.py
CHANGED
@@ -117,6 +117,7 @@ def tts(
|
|
117 |
f0_method,
|
118 |
index_rate,
|
119 |
protect,
|
|
|
120 |
filter_radius=3,
|
121 |
resample_sr=0,
|
122 |
rms_mix_rate=0.25,
|
@@ -141,11 +142,16 @@ def tts(
|
|
141 |
speed_str = f"+{speed}%"
|
142 |
else:
|
143 |
speed_str = f"{speed}%"
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
|
|
|
|
|
|
|
|
|
|
149 |
t1 = time.time()
|
150 |
edge_time = t1 - t0
|
151 |
audio, sr = librosa.load(edge_output_filename, sr=16000, mono=True)
|
@@ -217,16 +223,7 @@ rmvpe_model = RMVPE("rmvpe.pt", config.is_half, config.device)
|
|
217 |
print("rmvpe model loaded.")
|
218 |
|
219 |
initial_md = """
|
220 |
-
#
|
221 |
-
|
222 |
-
This is a text-to-speech demo of RVC moe models of [rvc_okiba](https://huggingface.co/litagin/rvc_okiba) using [edge-tts](https://github.com/rany2/edge-tts).
|
223 |
-
|
224 |
-
Input text ➡[(edge-tts)](https://github.com/rany2/edge-tts)➡ Speech mp3 file ➡[(RVC)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)➡ Final output
|
225 |
-
|
226 |
-
This runs on the 🤗 server's cpu, so it may be slow.
|
227 |
-
|
228 |
-
Although the models are trained on Japanese voices and intended for Japanese text, they can also be used with other languages with the corresponding edge-tts speaker (but possibly with a Japanese accent).
|
229 |
-
|
230 |
Input characters are limited to 280 characters, and the speech audio is limited to 20 seconds in this 🤗 space.
|
231 |
|
232 |
[Visit this GitHub repo](https://github.com/litagin02/rvc-tts-webui) for running locally with your models and GPU!
|
@@ -238,7 +235,7 @@ with app:
|
|
238 |
with gr.Row():
|
239 |
with gr.Column():
|
240 |
model_name = gr.Dropdown(
|
241 |
-
label="Model
|
242 |
choices=models,
|
243 |
value=models[0],
|
244 |
)
|
@@ -284,8 +281,9 @@ with app:
|
|
284 |
step=10,
|
285 |
interactive=True,
|
286 |
)
|
287 |
-
tts_text = gr.Textbox(label="Input Text", value="
|
288 |
with gr.Column():
|
|
|
289 |
but0 = gr.Button("Convert", variant="primary")
|
290 |
info_text = gr.Textbox(label="Output info")
|
291 |
with gr.Column():
|
@@ -302,6 +300,7 @@ with app:
|
|
302 |
f0_method,
|
303 |
index_rate,
|
304 |
protect0,
|
|
|
305 |
],
|
306 |
[info_text, edge_tts_output, tts_output],
|
307 |
)
|
|
|
117 |
f0_method,
|
118 |
index_rate,
|
119 |
protect,
|
120 |
+
custom_audio,
|
121 |
filter_radius=3,
|
122 |
resample_sr=0,
|
123 |
rms_mix_rate=0.25,
|
|
|
142 |
speed_str = f"+{speed}%"
|
143 |
else:
|
144 |
speed_str = f"{speed}%"
|
145 |
+
|
146 |
+
if custom_audio is not None:
|
147 |
+
hertz, audio = custom_audio
|
148 |
+
edge_output_filename = audio
|
149 |
+
else:
|
150 |
+
asyncio.run(
|
151 |
+
edge_tts.Communicate(
|
152 |
+
tts_text, "-".join(tts_voice.split("-")[:-1]), rate=speed_str
|
153 |
+
).save(edge_output_filename)
|
154 |
+
)
|
155 |
t1 = time.time()
|
156 |
edge_time = t1 - t0
|
157 |
audio, sr = librosa.load(edge_output_filename, sr=16000, mono=True)
|
|
|
223 |
print("rmvpe model loaded.")
|
224 |
|
225 |
initial_md = """
|
226 |
+
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
Input characters are limited to 280 characters, and the speech audio is limited to 20 seconds in this 🤗 space.
|
228 |
|
229 |
[Visit this GitHub repo](https://github.com/litagin02/rvc-tts-webui) for running locally with your models and GPU!
|
|
|
235 |
with gr.Row():
|
236 |
with gr.Column():
|
237 |
model_name = gr.Dropdown(
|
238 |
+
label="Model",
|
239 |
choices=models,
|
240 |
value=models[0],
|
241 |
)
|
|
|
281 |
step=10,
|
282 |
interactive=True,
|
283 |
)
|
284 |
+
tts_text = gr.Textbox(label="Input Text", value="Input text here")
|
285 |
with gr.Column():
|
286 |
+
custom_audio = gr.Audio(label="Custom audio", type="filepath")
|
287 |
but0 = gr.Button("Convert", variant="primary")
|
288 |
info_text = gr.Textbox(label="Output info")
|
289 |
with gr.Column():
|
|
|
300 |
f0_method,
|
301 |
index_rate,
|
302 |
protect0,
|
303 |
+
custom_audio,
|
304 |
],
|
305 |
[info_text, edge_tts_output, tts_output],
|
306 |
)
|
weights/Cyprien400/Cyprien_e400_s37600.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9b5770b07e7dc0784dbd488c98f1a3e46ffec10de7773d183afda97444dc9257
|
3 |
+
size 55228787
|
weights/Cyprien400/added_IVF1510_Flat_nprobe_1_Cyprien_v2.index
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:116f12bbb167f6d8029cb6ffe96d86a2bd75abd43f86fe714838ad345bde21c1
|
3 |
+
size 186041379
|
weights/Inoxtag/added_IVF829_Flat_nprobe_1_inoxtagModel_v2.index
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ee00965eb64990a80a8befd25efd7c65b9bcbab3d7e266c60b15b3e061491065
|
3 |
+
size 102222259
|
weights/Inoxtag/inoxtagModel.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ffb79ffebd382df21b7b0a06df491ea9ec9dd64bc43d0e0356cc3f4e20c4d5d6
|
3 |
+
size 55225574
|
weights/Joyca/JOYCA (1).pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1373a35ed990141e2005d4c2b3d97ea7f48b60e44c26d7626bfd46cee81d44cc
|
3 |
+
size 55193241
|
weights/Joyca/added_IVF854_Flat_nprobe_1_JOYCA_v2.index
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:86e79e43e4946e94b8f662357b5f13c66bc4a7debc81c3285e016a496f85641c
|
3 |
+
size 105268379
|
weights/LinedMC/metadata.json
ADDED
@@ -0,0 +1,148 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"title": "Lined (YTB Minecraft)",
|
3 |
+
"author": {
|
4 |
+
"name": "smaillor",
|
5 |
+
"discordUserId": "835772122303299596"
|
6 |
+
},
|
7 |
+
"md5": "173d23712a3d83d954d3a3c79d1f4071",
|
8 |
+
"uploadedAt": "2023-09-17T09:26:41.179Z",
|
9 |
+
"weightsLink": "https://www.weights.gg/models/clmn97p0r000hwszfs86k11aw",
|
10 |
+
"id": "clmn97p0r000hwszfs86k11aw",
|
11 |
+
"type": "v2",
|
12 |
+
"tags": [
|
13 |
+
"RVC v2",
|
14 |
+
"Jeux Vidéo",
|
15 |
+
"YouTubeur",
|
16 |
+
"Français"
|
17 |
+
],
|
18 |
+
"description": "__Fait par :__ Smaillor\n__Lien HuggingFace :__ https://huggingface.co/Smaillor/Lined/resolve/main/Lined.zip",
|
19 |
+
"samples": [],
|
20 |
+
"files": [
|
21 |
+
{
|
22 |
+
"name": "model.index",
|
23 |
+
"size": 51269819,
|
24 |
+
"md5": "cb13f634f5f692a28e3e81c6625b2916"
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"name": "model.pth",
|
28 |
+
"size": 57552537,
|
29 |
+
"md5": "173d23712a3d83d954d3a3c79d1f4071"
|
30 |
+
}
|
31 |
+
],
|
32 |
+
"torchMetadata": {
|
33 |
+
"config": {
|
34 |
+
"spec_channels": 1025,
|
35 |
+
"segment_size": 32,
|
36 |
+
"inter_channels": 192,
|
37 |
+
"hidden_channels": 192,
|
38 |
+
"filter_channels": 768,
|
39 |
+
"n_heads": 2,
|
40 |
+
"n_layers": 6,
|
41 |
+
"kernel_size": 3,
|
42 |
+
"p_dropout": 0,
|
43 |
+
"resblock": "1",
|
44 |
+
"resblock_kernel_sizes": [
|
45 |
+
3,
|
46 |
+
7,
|
47 |
+
11
|
48 |
+
],
|
49 |
+
"resblock_dilation_sizes": [
|
50 |
+
[
|
51 |
+
1,
|
52 |
+
3,
|
53 |
+
5
|
54 |
+
],
|
55 |
+
[
|
56 |
+
1,
|
57 |
+
3,
|
58 |
+
5
|
59 |
+
],
|
60 |
+
[
|
61 |
+
1,
|
62 |
+
3,
|
63 |
+
5
|
64 |
+
]
|
65 |
+
],
|
66 |
+
"upsample_rates": [
|
67 |
+
12,
|
68 |
+
10,
|
69 |
+
2,
|
70 |
+
2
|
71 |
+
],
|
72 |
+
"upsample_initial_channel": 512,
|
73 |
+
"upsample_kernel_sizes": [
|
74 |
+
24,
|
75 |
+
20,
|
76 |
+
4,
|
77 |
+
4
|
78 |
+
],
|
79 |
+
"emb_channels": null,
|
80 |
+
"spk_embed_dim": 109,
|
81 |
+
"gin_channels": 256,
|
82 |
+
"sr": 48000
|
83 |
+
},
|
84 |
+
"f0": 1,
|
85 |
+
"version": "v2",
|
86 |
+
"extra_info": {
|
87 |
+
"config": [
|
88 |
+
1025,
|
89 |
+
32,
|
90 |
+
192,
|
91 |
+
192,
|
92 |
+
768,
|
93 |
+
2,
|
94 |
+
6,
|
95 |
+
3,
|
96 |
+
0,
|
97 |
+
"1",
|
98 |
+
[
|
99 |
+
3,
|
100 |
+
7,
|
101 |
+
11
|
102 |
+
],
|
103 |
+
[
|
104 |
+
[
|
105 |
+
1,
|
106 |
+
3,
|
107 |
+
5
|
108 |
+
],
|
109 |
+
[
|
110 |
+
1,
|
111 |
+
3,
|
112 |
+
5
|
113 |
+
],
|
114 |
+
[
|
115 |
+
1,
|
116 |
+
3,
|
117 |
+
5
|
118 |
+
]
|
119 |
+
],
|
120 |
+
[
|
121 |
+
12,
|
122 |
+
10,
|
123 |
+
2,
|
124 |
+
2
|
125 |
+
],
|
126 |
+
512,
|
127 |
+
[
|
128 |
+
24,
|
129 |
+
20,
|
130 |
+
4,
|
131 |
+
4
|
132 |
+
],
|
133 |
+
109,
|
134 |
+
256,
|
135 |
+
48000
|
136 |
+
],
|
137 |
+
"info": "300epoch",
|
138 |
+
"sr": "48k",
|
139 |
+
"f0": 1,
|
140 |
+
"version": "v2"
|
141 |
+
}
|
142 |
+
},
|
143 |
+
"url": "https://huggingface.co/Smaillor/Lined/resolve/main/Lined.zip",
|
144 |
+
"originalFileList": [
|
145 |
+
"Lined.pth",
|
146 |
+
"added_IVF416_Flat_nprobe_1_Lined_v2.index"
|
147 |
+
]
|
148 |
+
}
|
weights/LinedMC/model.index
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:73dd191e673ebaaba8a5b8f4a501e61a041d6889b0b443bff0213e3df8b03246
|
3 |
+
size 51269819
|
weights/LinedMC/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a3da545f0b6d6e6a7f07d769a20830c1f6c8099e84a8de1893992ecd8c421d38
|
3 |
+
size 57552537
|
weights/Michou/Michoumodel.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3b0a15788014b5679f2fddce05a0fa08941b34be6c355e03a0c1c629da68e227
|
3 |
+
size 55225115
|
weights/Michou/added_IVF1218_Flat_nprobe_1_Michoumodel_v2.index
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1f978e9086f56ee411459fc90fc425f04c67277cbfcfe651405fe9fd7c3f090f
|
3 |
+
size 150066979
|
weights/MonsieurPof/MonsieurPof.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ffe29750969a4ce472f48176186030429c9146ce36f8457067004a1699e03add
|
3 |
+
size 57589524
|
weights/MonsieurPof/added_IVF811_Flat_nprobe_1_MonsieurPof_v2.index
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:53e559ebc48de8235313eb4c6fdb93d693134f9b8639d6c4dfac185b5fb24be7
|
3 |
+
size 99986179
|
weights/Potatoz/added_IVF1049_Flat_nprobe_1_potatoz_v2.index
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:404909c3513da58418bc3f66670a82c69769020a2bdd953853d1fef255926b32
|
3 |
+
size 129347819
|
weights/Potatoz/potatoz_e300_s29400.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eb789ca44646f335a23cc12350cac348f74feaadcdced006381f572afc6f60b4
|
3 |
+
size 55228787
|
weights/Psyhodelik/Psyhodelik.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5bcb049e18a2a27cde3a380df33c21ac7c9a94cfbd93237c6f34ce9ec7e4cad3
|
3 |
+
size 57583952
|
weights/Psyhodelik/added_IVF1795_Flat_nprobe_1_Psyhodelik_v2.index
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0ec1e2af6278b521ce323efd2ff19cbe2a7d7b031d1e7dba4657d6856cd8dbaa
|
3 |
+
size 221165699
|
weights/Shawen/metadata.json
ADDED
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"title": "Shawen (YTB Minecraft) - RVC 2 - 300 EPOCHS",
|
3 |
+
"author": {
|
4 |
+
"name": "smaillor",
|
5 |
+
"discordUserId": "835772122303299596"
|
6 |
+
},
|
7 |
+
"md5": "3449250a9e23d3ce3b313c1cf9c82665",
|
8 |
+
"uploadedAt": "2023-11-06T22:08:21.681Z",
|
9 |
+
"weightsLink": "https://www.weights.gg/models/clonggc1u00rowswvikx53om1",
|
10 |
+
"id": "clonggc1u00rowswvikx53om1",
|
11 |
+
"type": "v2",
|
12 |
+
"tags": [
|
13 |
+
"RVC v2",
|
14 |
+
"Jeux Vidéo",
|
15 |
+
"YouTubeur",
|
16 |
+
"Français"
|
17 |
+
],
|
18 |
+
"description": "__Fait par :__ Smaillor\n__Lien HuggingFace :__ https://huggingface.co/Smaillor/Shawen/resolve/main/Shawen.zip",
|
19 |
+
"samples": [],
|
20 |
+
"files": [
|
21 |
+
{
|
22 |
+
"name": "model.index",
|
23 |
+
"size": 50259579,
|
24 |
+
"md5": "caf60adfc7e7193f3b55e28f05057346"
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"name": "model.pth",
|
28 |
+
"size": 57583034,
|
29 |
+
"md5": "3449250a9e23d3ce3b313c1cf9c82665"
|
30 |
+
}
|
31 |
+
],
|
32 |
+
"torchMetadata": {
|
33 |
+
"config": {
|
34 |
+
"spec_channels": 1025,
|
35 |
+
"segment_size": 32,
|
36 |
+
"inter_channels": 192,
|
37 |
+
"hidden_channels": 192,
|
38 |
+
"filter_channels": 768,
|
39 |
+
"n_heads": 2,
|
40 |
+
"n_layers": 6,
|
41 |
+
"kernel_size": 3,
|
42 |
+
"p_dropout": 0,
|
43 |
+
"resblock": "1",
|
44 |
+
"resblock_kernel_sizes": [
|
45 |
+
3,
|
46 |
+
7,
|
47 |
+
11
|
48 |
+
],
|
49 |
+
"resblock_dilation_sizes": [
|
50 |
+
[
|
51 |
+
1,
|
52 |
+
3,
|
53 |
+
5
|
54 |
+
],
|
55 |
+
[
|
56 |
+
1,
|
57 |
+
3,
|
58 |
+
5
|
59 |
+
],
|
60 |
+
[
|
61 |
+
1,
|
62 |
+
3,
|
63 |
+
5
|
64 |
+
]
|
65 |
+
],
|
66 |
+
"upsample_rates": [
|
67 |
+
12,
|
68 |
+
10,
|
69 |
+
2,
|
70 |
+
2
|
71 |
+
],
|
72 |
+
"upsample_initial_channel": 512,
|
73 |
+
"upsample_kernel_sizes": [
|
74 |
+
24,
|
75 |
+
20,
|
76 |
+
4,
|
77 |
+
4
|
78 |
+
],
|
79 |
+
"emb_channels": null,
|
80 |
+
"spk_embed_dim": 109,
|
81 |
+
"gin_channels": 256,
|
82 |
+
"sr": 48000
|
83 |
+
},
|
84 |
+
"f0": 1,
|
85 |
+
"version": "v2",
|
86 |
+
"extra_info": {
|
87 |
+
"config": [
|
88 |
+
1025,
|
89 |
+
32,
|
90 |
+
192,
|
91 |
+
192,
|
92 |
+
768,
|
93 |
+
2,
|
94 |
+
6,
|
95 |
+
3,
|
96 |
+
0,
|
97 |
+
"1",
|
98 |
+
[
|
99 |
+
3,
|
100 |
+
7,
|
101 |
+
11
|
102 |
+
],
|
103 |
+
[
|
104 |
+
[
|
105 |
+
1,
|
106 |
+
3,
|
107 |
+
5
|
108 |
+
],
|
109 |
+
[
|
110 |
+
1,
|
111 |
+
3,
|
112 |
+
5
|
113 |
+
],
|
114 |
+
[
|
115 |
+
1,
|
116 |
+
3,
|
117 |
+
5
|
118 |
+
]
|
119 |
+
],
|
120 |
+
[
|
121 |
+
12,
|
122 |
+
10,
|
123 |
+
2,
|
124 |
+
2
|
125 |
+
],
|
126 |
+
512,
|
127 |
+
[
|
128 |
+
24,
|
129 |
+
20,
|
130 |
+
4,
|
131 |
+
4
|
132 |
+
],
|
133 |
+
109,
|
134 |
+
256,
|
135 |
+
48000
|
136 |
+
],
|
137 |
+
"info": "300epoch",
|
138 |
+
"sr": "48k",
|
139 |
+
"f0": 1,
|
140 |
+
"version": "v2"
|
141 |
+
}
|
142 |
+
},
|
143 |
+
"url": "https://huggingface.co/Smaillor/Shawen/resolve/main/Shawen.zip",
|
144 |
+
"urls": [
|
145 |
+
"https://huggingface.co/Smaillor/Shawen/resolve/main/Shawen.zip"
|
146 |
+
],
|
147 |
+
"originalFileList": [
|
148 |
+
"ShawenBG.pth",
|
149 |
+
"added_IVF407_Flat_nprobe_1_ShawenBG_v2.index"
|
150 |
+
]
|
151 |
+
}
|
weights/Shawen/model.index
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:49da081047dcd0a0eb3b98d66d55a688e7ae5ba4b7f23e0e878eb9577e283a7e
|
3 |
+
size 50259579
|
weights/Shawen/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:38b35db83233dd8df7c8fcb0b4c8e6383e4ba838221ad7d5680552fac472ccad
|
3 |
+
size 57583034
|
weights/XJP/added_IVF336_Flat_nprobe_1.index
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dd147ef8fe1a29616cd0ef342a80602bacd073e2a78e9a34243210c5a87a3ebc
|
3 |
+
size 13886731
|
weights/XJP/xi-jingpin2333333.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dd6d56ca24a360d93655f339fabf38180dd5d23625166ab26f4640ceb70af8a9
|
3 |
+
size 55028048
|
weights/azpaz/metadata.json
ADDED
@@ -0,0 +1,148 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"title": "AzpazTv (YTB Minecraft)",
|
3 |
+
"author": {
|
4 |
+
"name": "smaillor",
|
5 |
+
"discordUserId": "835772122303299596"
|
6 |
+
},
|
7 |
+
"md5": "5c2b558e26d3ddcb41355370ec60fd23",
|
8 |
+
"uploadedAt": "2023-09-13T14:59:06.628Z",
|
9 |
+
"weightsLink": "https://www.weights.gg/models/clmjwhlgr0005wsunjqx5gfj7",
|
10 |
+
"id": "clmjwhlgr0005wsunjqx5gfj7",
|
11 |
+
"type": "v2",
|
12 |
+
"tags": [
|
13 |
+
"RVC v1",
|
14 |
+
"Jeux Vidéo",
|
15 |
+
"YouTubeur",
|
16 |
+
"Français"
|
17 |
+
],
|
18 |
+
"description": "__Fait par :__ Smaillor\n__Conseil :__ Rglez le Pitch selon votre voix, sinon a sera mal fait\n__Lien HuggingFace :__ https://huggingface.co/Smaillor/AzpazTv/resolve/main/AzpazTv.zip",
|
19 |
+
"samples": [],
|
20 |
+
"files": [
|
21 |
+
{
|
22 |
+
"name": "model.index",
|
23 |
+
"size": 51263659,
|
24 |
+
"md5": "c01177580f931054afcb3fb5c14c22ea"
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"name": "model.pth",
|
28 |
+
"size": 57581999,
|
29 |
+
"md5": "5c2b558e26d3ddcb41355370ec60fd23"
|
30 |
+
}
|
31 |
+
],
|
32 |
+
"torchMetadata": {
|
33 |
+
"config": {
|
34 |
+
"spec_channels": 1025,
|
35 |
+
"segment_size": 32,
|
36 |
+
"inter_channels": 192,
|
37 |
+
"hidden_channels": 192,
|
38 |
+
"filter_channels": 768,
|
39 |
+
"n_heads": 2,
|
40 |
+
"n_layers": 6,
|
41 |
+
"kernel_size": 3,
|
42 |
+
"p_dropout": 0,
|
43 |
+
"resblock": "1",
|
44 |
+
"resblock_kernel_sizes": [
|
45 |
+
3,
|
46 |
+
7,
|
47 |
+
11
|
48 |
+
],
|
49 |
+
"resblock_dilation_sizes": [
|
50 |
+
[
|
51 |
+
1,
|
52 |
+
3,
|
53 |
+
5
|
54 |
+
],
|
55 |
+
[
|
56 |
+
1,
|
57 |
+
3,
|
58 |
+
5
|
59 |
+
],
|
60 |
+
[
|
61 |
+
1,
|
62 |
+
3,
|
63 |
+
5
|
64 |
+
]
|
65 |
+
],
|
66 |
+
"upsample_rates": [
|
67 |
+
12,
|
68 |
+
10,
|
69 |
+
2,
|
70 |
+
2
|
71 |
+
],
|
72 |
+
"upsample_initial_channel": 512,
|
73 |
+
"upsample_kernel_sizes": [
|
74 |
+
24,
|
75 |
+
20,
|
76 |
+
4,
|
77 |
+
4
|
78 |
+
],
|
79 |
+
"emb_channels": null,
|
80 |
+
"spk_embed_dim": 109,
|
81 |
+
"gin_channels": 256,
|
82 |
+
"sr": 48000
|
83 |
+
},
|
84 |
+
"f0": 1,
|
85 |
+
"version": "v2",
|
86 |
+
"extra_info": {
|
87 |
+
"config": [
|
88 |
+
1025,
|
89 |
+
32,
|
90 |
+
192,
|
91 |
+
192,
|
92 |
+
768,
|
93 |
+
2,
|
94 |
+
6,
|
95 |
+
3,
|
96 |
+
0,
|
97 |
+
"1",
|
98 |
+
[
|
99 |
+
3,
|
100 |
+
7,
|
101 |
+
11
|
102 |
+
],
|
103 |
+
[
|
104 |
+
[
|
105 |
+
1,
|
106 |
+
3,
|
107 |
+
5
|
108 |
+
],
|
109 |
+
[
|
110 |
+
1,
|
111 |
+
3,
|
112 |
+
5
|
113 |
+
],
|
114 |
+
[
|
115 |
+
1,
|
116 |
+
3,
|
117 |
+
5
|
118 |
+
]
|
119 |
+
],
|
120 |
+
[
|
121 |
+
12,
|
122 |
+
10,
|
123 |
+
2,
|
124 |
+
2
|
125 |
+
],
|
126 |
+
512,
|
127 |
+
[
|
128 |
+
24,
|
129 |
+
20,
|
130 |
+
4,
|
131 |
+
4
|
132 |
+
],
|
133 |
+
109,
|
134 |
+
256,
|
135 |
+
48000
|
136 |
+
],
|
137 |
+
"info": "300epoch",
|
138 |
+
"sr": "48k",
|
139 |
+
"f0": 1,
|
140 |
+
"version": "v2"
|
141 |
+
}
|
142 |
+
},
|
143 |
+
"url": "https://huggingface.co/Smaillor/AzpazTv/resolve/main/AzpazTv.zip",
|
144 |
+
"originalFileList": [
|
145 |
+
"AzpazTv.pth",
|
146 |
+
"added_IVF416_Flat_nprobe_1_AzpazTv_v2.index"
|
147 |
+
]
|
148 |
+
}
|
weights/azpaz/model.index
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aade5967215beed1a8fbb43b0db5d3104aeeccf80d8cf19449c6da81f1714d63
|
3 |
+
size 51263659
|
weights/azpaz/model.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0b83e4cc305f3e6acace8dc012ca08f5c49878c0bc204a412bc028acce8cfffc
|
3 |
+
size 57581999
|
weights/lincn/lincn_e420_s7560.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1cbeb4bce326fe9042f80c51b0cea29eb0526dabf03cbbbff2fd3e2179403690
|
3 |
+
size 55227861
|
weights/lincn/trained_IVF718_Flat_nprobe_1_lincn_v2.index
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5143863f8bbe8e0ebc4a07aee282d3b3048e16c2cc0dec8d947f622d97d196fc
|
3 |
+
size 2205835
|