Update README.md
Browse files
README.md
CHANGED
@@ -18,284 +18,157 @@ tags:
|
|
18 |
<meta charset="UTF-8">
|
19 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
20 |
<style>
|
21 |
-
body {
|
22 |
-
font-family: 'Arial', sans-serif;
|
23 |
-
padding: 2rem;
|
24 |
-
color: #333;
|
25 |
-
background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
|
26 |
-
}
|
27 |
.container {
|
28 |
-
max-width:
|
29 |
-
margin: 0 auto;
|
30 |
-
padding: 2rem;
|
31 |
-
border-radius: 10px;
|
32 |
-
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
33 |
text-align: center;
|
34 |
animation: fadeIn 1s ease-in-out;
|
35 |
}
|
36 |
h1 {
|
37 |
-
margin-bottom: 1.5rem;
|
38 |
font-size: 2.5rem;
|
39 |
color: transparent;
|
40 |
background: linear-gradient(135deg, #800080, #6a006a);
|
41 |
-webkit-background-clip: text;
|
42 |
-
background-clip: text;
|
43 |
-
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
|
44 |
-
animation: textFadeIn 1s ease-in-out;
|
45 |
}
|
46 |
h2 {
|
47 |
-
margin-bottom: 1rem;
|
48 |
font-size: 2rem;
|
49 |
color: transparent;
|
50 |
background: linear-gradient(135deg, #800080, #6a006a);
|
51 |
-webkit-background-clip: text;
|
52 |
-
background-clip: text;
|
53 |
-
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
|
54 |
-
animation: textFadeIn 1s ease-in-out;
|
55 |
-
}
|
56 |
-
.table-container {
|
57 |
-
width: 100%;
|
58 |
-
overflow-x: auto;
|
59 |
-
margin-bottom: 2rem;
|
60 |
}
|
61 |
table {
|
62 |
-
|
63 |
-
border-collapse: collapse;
|
64 |
-
table-layout: fixed;
|
65 |
-
border-radius: 5px;
|
66 |
overflow: hidden;
|
67 |
-
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
68 |
-
animation: slideIn 1s ease-in-out;
|
69 |
-
background-color: #333;
|
70 |
}
|
71 |
th, td {
|
72 |
-
padding: 1rem;
|
73 |
-
border: 1px solid #555;
|
74 |
-
font-size: 1.2rem;
|
75 |
text-align: center;
|
76 |
vertical-align: middle;
|
77 |
-
|
78 |
-
|
79 |
color: #fff;
|
|
|
|
|
80 |
}
|
81 |
th {
|
82 |
background-color: #6a006a;
|
83 |
-
color: #fff;
|
84 |
}
|
85 |
a {
|
86 |
color: #007bff;
|
87 |
text-decoration: none;
|
88 |
-
transition: color 0.3s ease, transform 0.3s ease;
|
89 |
-
}
|
90 |
-
a:hover {
|
91 |
-
color: #0056b3;
|
92 |
-
transform: scale(1.05);
|
93 |
-
}
|
94 |
-
.model-col {
|
95 |
-
width: 50%;
|
96 |
-
}
|
97 |
-
.author-col {
|
98 |
-
width: 50%;
|
99 |
}
|
100 |
.donate-button {
|
101 |
-
|
102 |
padding: 15px 30px;
|
|
|
103 |
background: linear-gradient(135deg, #800080, #6a006a);
|
104 |
-
color: #fff;
|
105 |
-
text-decoration: none;
|
106 |
-
border-radius: 5px;
|
107 |
-
margin-top: 20px;
|
108 |
-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
109 |
-
transition: all 0.3s ease;
|
110 |
-
}
|
111 |
-
.donate-button:hover {
|
112 |
-
background: linear-gradient(135deg, #6a006a, #500050);
|
113 |
-
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
|
114 |
-
transform: translateY(-2px) scale(1.05);
|
115 |
}
|
116 |
hr {
|
117 |
border: none;
|
118 |
-
height:
|
|
|
119 |
background: linear-gradient(90deg, transparent, #800080, transparent);
|
120 |
-
margin: 2rem 0;
|
121 |
-
animation: pulse 2s infinite;
|
122 |
-
}
|
123 |
-
.table-row td:hover {
|
124 |
-
background-color: #555;
|
125 |
-
transform: scale(1.05);
|
126 |
-
}
|
127 |
-
.icon {
|
128 |
-
margin-right: 5px;
|
129 |
-
transition: transform 0.3s ease;
|
130 |
-
}
|
131 |
-
.icon:hover {
|
132 |
-
transform: scale(1.2);
|
133 |
-
}
|
134 |
-
.tooltip {
|
135 |
-
position: relative;
|
136 |
-
display: inline-block;
|
137 |
-
}
|
138 |
-
.tooltip .tooltiptext {
|
139 |
-
visibility: hidden;
|
140 |
-
width: 120px;
|
141 |
-
background-color: #555;
|
142 |
-
color: #fff;
|
143 |
-
text-align: center;
|
144 |
-
border-radius: 5px;
|
145 |
-
padding: 5px;
|
146 |
-
position: absolute;
|
147 |
-
z-index: 1;
|
148 |
-
bottom: 125%;
|
149 |
-
left: 50%;
|
150 |
-
margin-left: -60px;
|
151 |
-
opacity: 0;
|
152 |
-
transition: opacity 0.3s;
|
153 |
-
}
|
154 |
-
.tooltip:hover .tooltiptext {
|
155 |
-
visibility: visible;
|
156 |
-
opacity: 1;
|
157 |
-
}
|
158 |
-
@keyframes fadeIn {
|
159 |
-
0% { opacity: 0; transform: translateY(-20px); }
|
160 |
-
100% { opacity: 1; transform: translateY(0); }
|
161 |
-
}
|
162 |
-
@keyframes textFadeIn {
|
163 |
-
0% { opacity: 0; transform: translateY(10px); }
|
164 |
-
100% { opacity: 1; transform: translateY(0); }
|
165 |
-
}
|
166 |
-
@keyframes slideIn {
|
167 |
-
0% { opacity: 0; transform: translateY(20px); }
|
168 |
-
100% { opacity: 1; transform: translateY(0); }
|
169 |
-
}
|
170 |
-
@keyframes pulse {
|
171 |
-
0% { opacity: 0.5; }
|
172 |
-
50% { opacity: 1; }
|
173 |
-
100% { opacity: 0.5; }
|
174 |
-
}
|
175 |
-
.table-row {
|
176 |
-
border: 2px solid #ddd;
|
177 |
-
}
|
178 |
-
@media (max-width: 600px) {
|
179 |
-
th, td {
|
180 |
-
padding: 0.5rem;
|
181 |
-
font-size: 1rem;
|
182 |
-
}
|
183 |
-
}
|
184 |
-
@media (max-width: 400px) {
|
185 |
-
th, td {
|
186 |
-
padding: 0.3rem;
|
187 |
-
font-size: 0.8rem;
|
188 |
-
}
|
189 |
}
|
190 |
</style>
|
191 |
</head>
|
192 |
-
<
|
193 |
-
<
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
<
|
199 |
-
|
200 |
-
<
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
</table>
|
295 |
-
</div>
|
296 |
-
<hr>
|
297 |
-
<a href="https://www.donationalerts.com/r/politrees" target="_blank" class="donate-button">Send Donation</a>
|
298 |
-
<hr>
|
299 |
-
</div>
|
300 |
-
</body>
|
301 |
</html>
|
|
|
18 |
<meta charset="UTF-8">
|
19 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
20 |
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
.container {
|
22 |
+
max-width: auto;
|
|
|
|
|
|
|
|
|
23 |
text-align: center;
|
24 |
animation: fadeIn 1s ease-in-out;
|
25 |
}
|
26 |
h1 {
|
|
|
27 |
font-size: 2.5rem;
|
28 |
color: transparent;
|
29 |
background: linear-gradient(135deg, #800080, #6a006a);
|
30 |
-webkit-background-clip: text;
|
|
|
|
|
|
|
31 |
}
|
32 |
h2 {
|
|
|
33 |
font-size: 2rem;
|
34 |
color: transparent;
|
35 |
background: linear-gradient(135deg, #800080, #6a006a);
|
36 |
-webkit-background-clip: text;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
}
|
38 |
table {
|
39 |
+
margin: 0 auto;
|
|
|
|
|
|
|
40 |
overflow: hidden;
|
|
|
|
|
|
|
41 |
}
|
42 |
th, td {
|
|
|
|
|
|
|
43 |
text-align: center;
|
44 |
vertical-align: middle;
|
45 |
+
font-size: 1.2rem;
|
46 |
+
padding: 1rem;
|
47 |
color: #fff;
|
48 |
+
background-color: #444;
|
49 |
+
border: 1px solid #555;
|
50 |
}
|
51 |
th {
|
52 |
background-color: #6a006a;
|
|
|
53 |
}
|
54 |
a {
|
55 |
color: #007bff;
|
56 |
text-decoration: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
}
|
58 |
.donate-button {
|
59 |
+
color: #fff;
|
60 |
padding: 15px 30px;
|
61 |
+
border-radius: 50px;
|
62 |
background: linear-gradient(135deg, #800080, #6a006a);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
}
|
64 |
hr {
|
65 |
border: none;
|
66 |
+
height: 3px;
|
67 |
+
margin: 1rem 0;
|
68 |
background: linear-gradient(90deg, transparent, #800080, transparent);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
}
|
70 |
</style>
|
71 |
</head>
|
72 |
+
<div class="container">
|
73 |
+
<h1>Voice Conversion RVC Hub</h1>
|
74 |
+
<p>A repository of pretrained models, HuBERT models, and other files for RVC neural network.</p>
|
75 |
+
<hr>
|
76 |
+
<h2>HuBERT Models</h2>
|
77 |
+
<table>
|
78 |
+
<tr>
|
79 |
+
<th>Model</th>
|
80 |
+
<th>Author</th>
|
81 |
+
</tr>
|
82 |
+
<tr>
|
83 |
+
<td>📁contentvec_base</td>
|
84 |
+
<td><a href="https://github.com/auspicious3000" target="_blank">👤auspicious3000</a></td>
|
85 |
+
</tr>
|
86 |
+
<tr>
|
87 |
+
<td>📁japanese_hubert_base</td>
|
88 |
+
<td><a href="https://huggingface.co/rinna" target="_blank">👤rinna</a></td>
|
89 |
+
</tr>
|
90 |
+
<tr>
|
91 |
+
<td>📁chinese_hubert_base</td>
|
92 |
+
<td><a href="https://huggingface.co/TencentGameMate" target="_blank">👤TencentGameMate</a></td>
|
93 |
+
</tr>
|
94 |
+
<tr>
|
95 |
+
<td>📁korean_hubert_base</td>
|
96 |
+
<td><a href="https://huggingface.co/team-lucid" target="_blank">👤team-lucid</a></td>
|
97 |
+
</tr>
|
98 |
+
<tr>
|
99 |
+
<td>📁portuguese_hubert_base</td>
|
100 |
+
<td><a href="https://huggingface.co/shiromiya" target="_blank">👤shiromiya</a></td>
|
101 |
+
</tr>
|
102 |
+
</table>
|
103 |
+
<h2>Pre-Trained Models</h2>
|
104 |
+
<table>
|
105 |
+
<tr>
|
106 |
+
<th>Model</th>
|
107 |
+
<th>Author</th>
|
108 |
+
</tr>
|
109 |
+
<tr>
|
110 |
+
<td>📁Rigel</td>
|
111 |
+
<td rowspan="3"><a href="https://huggingface.co/MUSTAR" target="_blank">👤MUSTAR</a></td>
|
112 |
+
</tr>
|
113 |
+
<tr>
|
114 |
+
<td>📁Snowie</td>
|
115 |
+
</tr>
|
116 |
+
<tr>
|
117 |
+
<td>📁RIN_E3</td>
|
118 |
+
</tr>
|
119 |
+
<tr>
|
120 |
+
<td>📁Ov2Super</td>
|
121 |
+
<td><a href="https://huggingface.co/ORVC" target="_blank">👤ORVC</a></td>
|
122 |
+
</tr>
|
123 |
+
<tr>
|
124 |
+
<td>📁TITAN</td>
|
125 |
+
<td><a href="https://huggingface.co/blaise-tk" target="_blank">👤blaise-tk</a></td>
|
126 |
+
</tr>
|
127 |
+
<tr>
|
128 |
+
<td>📁itaila</td>
|
129 |
+
<td><a href="https://huggingface.co/TheStinger" target="_blank">👤TheStinger</a></td>
|
130 |
+
</tr>
|
131 |
+
<tr>
|
132 |
+
<td>📁KLM</td>
|
133 |
+
<td><a href="https://huggingface.co/SeoulStreamingStation" target="_blank">👤SeoulStreamingStation</a></td>
|
134 |
+
</tr>
|
135 |
+
<tr>
|
136 |
+
<td>📁SingerPretrain</td>
|
137 |
+
<td rowspan="2"><a href="https://huggingface.co/Sztef" target="_blank">👤Sztef</a></td>
|
138 |
+
</tr>
|
139 |
+
<tr>
|
140 |
+
<td>📁Anime</td>
|
141 |
+
</tr>
|
142 |
+
<tr>
|
143 |
+
<td>📁DMR</td>
|
144 |
+
<td><a href="https://huggingface.co/Razer112" target="_blank">👤Razer112</a></td>
|
145 |
+
</tr>
|
146 |
+
<tr>
|
147 |
+
<td>📁UKR</td>
|
148 |
+
<td rowspan="2"><a href="https://huggingface.co/Plasmati" target="_blank">👤Plasmati</a></td>
|
149 |
+
</tr>
|
150 |
+
<tr>
|
151 |
+
<td>📁UKA</td>
|
152 |
+
</tr>
|
153 |
+
<tr>
|
154 |
+
<td>📁IMA_Robotic</td>
|
155 |
+
<td><a href="https://huggingface.co/Loren85" target="_blank">👤Loren85</a></td>
|
156 |
+
</tr>
|
157 |
+
<tr>
|
158 |
+
<td>📁Nanashi</td>
|
159 |
+
<td><a href="https://huggingface.co/shiromiya" target="_blank">👤shiromiya</a></td>
|
160 |
+
</tr>
|
161 |
+
<tr>
|
162 |
+
<td>📁Nezox</td>
|
163 |
+
<td><a href="https://huggingface.co/theNeofr" target="_blank">👤theNeofr</a></td>
|
164 |
+
</tr>
|
165 |
+
<tr>
|
166 |
+
<td>📁GuideVocalPretrain</td>
|
167 |
+
<td><a href="https://huggingface.co/Essid" target="_blank">👤Essid</a></td>
|
168 |
+
</tr>
|
169 |
+
</table>
|
170 |
+
<hr>
|
171 |
+
<a href="https://www.donationalerts.com/r/politrees" target="_blank" class="donate-button">Send Donation</a>
|
172 |
+
<hr>
|
173 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
</html>
|