Politrees commited on
Commit
c19dc01
·
verified ·
1 Parent(s): 2b3043f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +112 -239
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: 800px;
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
- width: 100%;
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
- transition: background 0.3s ease, transform 0.3s ease;
78
- background-color: #444;
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
- display: inline-block;
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: 2px;
 
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
- <body>
193
- <div class="container">
194
- <hr>
195
- <h1>Voice Conversion RVC Hub</h1>
196
- <p>A repository of pretrained models, HuBERT models, and other files for RVC neural network.</p>
197
- <hr>
198
- <h2>HuBERT Models</h2>
199
- <div class="table-container">
200
- <table>
201
- <tr>
202
- <th class="model-col">Model</th>
203
- <th class="author-col">Author</th>
204
- </tr>
205
- <tr class="table-row">
206
- <td class="model-col"><span class="icon">📁</span>contentvec_base</td>
207
- <td class="author-col"><a href="https://github.com/auspicious3000" target="_blank"><span class="icon">👤</span>auspicious3000</a></td>
208
- </tr>
209
- <tr class="table-row">
210
- <td class="model-col"><span class="icon">📁</span>japanese_hubert_base</td>
211
- <td class="author-col"><a href="https://huggingface.co/rinna" target="_blank"><span class="icon">👤</span>rinna</a></td>
212
- </tr>
213
- <tr class="table-row">
214
- <td class="model-col"><span class="icon">📁</span>chinese_hubert_base</td>
215
- <td class="author-col"><a href="https://huggingface.co/TencentGameMate" target="_blank"><span class="icon">👤</span>TencentGameMate</a></td>
216
- </tr>
217
- <tr class="table-row">
218
- <td class="model-col"><span class="icon">📁</span>korean_hubert_base</td>
219
- <td class="author-col"><a href="https://huggingface.co/team-lucid" target="_blank"><span class="icon">👤</span>team-lucid</a></td>
220
- </tr>
221
- <tr class="table-row">
222
- <td class="model-col"><span class="icon">📁</span>portuguese_hubert_base</td>
223
- <td class="author-col"><a href="https://huggingface.co/shiromiya" target="_blank"><span class="icon">👤</span>shiromiya</a></td>
224
- </tr>
225
- </table>
226
- </div>
227
- <h2>Pre-Trained Models</h2>
228
- <div class="table-container">
229
- <table>
230
- <tr>
231
- <th class="model-col">Model</th>
232
- <th class="author-col">Author</th>
233
- </tr>
234
- <tr class="table-row">
235
- <td class="model-col"><span class="icon">📁</span>Rigel</td>
236
- <td class="author-col" rowspan="3"><a href="https://huggingface.co/MUSTAR" target="_blank"><span class="icon">👤</span>MUSTAR</a></td>
237
- </tr>
238
- <tr class="table-row">
239
- <td class="model-col"><span class="icon">📁</span>Snowie</td>
240
- </tr>
241
- <tr class="table-row">
242
- <td class="model-col"><span class="icon">📁</span>RIN_E3</td>
243
- </tr>
244
- <tr class="table-row">
245
- <td class="model-col"><span class="icon">📁</span>Ov2Super</td>
246
- <td class="author-col"><a href="https://huggingface.co/ORVC" target="_blank"><span class="icon">👤</span>ORVC</a></td>
247
- </tr>
248
- <tr class="table-row">
249
- <td class="model-col"><span class="icon">📁</span>TITAN</td>
250
- <td class="author-col"><a href="https://huggingface.co/blaise-tk" target="_blank"><span class="icon">👤</span>blaise-tk</a></td>
251
- </tr>
252
- <tr class="table-row">
253
- <td class="model-col"><span class="icon">📁</span>itaila</td>
254
- <td class="author-col"><a href="https://huggingface.co/TheStinger" target="_blank"><span class="icon">👤</span>TheStinger</a></td>
255
- </tr>
256
- <tr class="table-row">
257
- <td class="model-col"><span class="icon">📁</span>KLM</td>
258
- <td class="author-col"><a href="https://huggingface.co/SeoulStreamingStation" target="_blank"><span class="icon">👤</span>SeoulStreamingStation</a></td>
259
- </tr>
260
- <tr class="table-row">
261
- <td class="model-col"><span class="icon">📁</span>SingerPretrain</td>
262
- <td class="author-col" rowspan="2"><a href="https://huggingface.co/Sztef" target="_blank"><span class="icon">👤</span>Sztef</a></td>
263
- </tr>
264
- <tr class="table-row">
265
- <td class="model-col"><span class="icon">📁</span>Anime</td>
266
- </tr>
267
- <tr class="table-row">
268
- <td class="model-col"><span class="icon">📁</span>DMR</td>
269
- <td class="author-col"><a href="https://huggingface.co/Razer112" target="_blank"><span class="icon">👤</span>Razer112</a></td>
270
- </tr>
271
- <tr class="table-row">
272
- <td class="model-col"><span class="icon">📁</span>UKR</td>
273
- <td class="author-col" rowspan="2"><a href="https://huggingface.co/Plasmati" target="_blank"><span class="icon">👤</span>Plasmati</a></td>
274
- </tr>
275
- <tr class="table-row">
276
- <td class="model-col"><span class="icon">📁</span>UKA</td>
277
- </tr>
278
- <tr class="table-row">
279
- <td class="model-col"><span class="icon">📁</span>IMA_Robotic</td>
280
- <td class="author-col"><a href="https://huggingface.co/Loren85" target="_blank"><span class="icon">👤</span>Loren85</a></td>
281
- </tr>
282
- <tr class="table-row">
283
- <td class="model-col"><span class="icon">📁</span>Nanashi</td>
284
- <td class="author-col"><a href="https://huggingface.co/shiromiya" target="_blank"><span class="icon">👤</span>shiromiya</a></td>
285
- </tr>
286
- <tr class="table-row">
287
- <td class="model-col"><span class="icon">📁</span>Nezox</td>
288
- <td class="author-col"><a href="https://huggingface.co/theNeofr" target="_blank"><span class="icon">👤</span>theNeofr</a></td>
289
- </tr>
290
- <tr class="table-row">
291
- <td class="model-col"><span class="icon">📁</span>GuideVocalPretrain</td>
292
- <td class="author-col"><a href="https://huggingface.co/Essid" target="_blank"><span class="icon">👤</span>Essid</a></td>
293
- </tr>
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>