Politrees commited on
Commit
104be0c
β€’
1 Parent(s): ec71bc5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +126 -62
README.md CHANGED
@@ -12,81 +12,145 @@ tags:
12
  - voice-conversion
13
  - Voice2Voice
14
  ---
15
- <!DOCTYPE html>
16
  <html lang="en">
17
  <head>
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
  }
26
- .container {
27
- max-width: 800px;
28
- margin: 0 auto;
29
- padding: 2rem;
30
- border-radius: 5px;
31
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
32
- text-align: center;
33
  }
34
- h1 {
35
- margin-bottom: 1.5rem;
36
- font-size: 2.5rem;
37
  }
38
- h2 {
39
- margin-bottom: 1rem;
40
- font-size: 2rem;
41
- }
42
- ul {
43
- list-style: none;
44
- padding: 0;
45
- margin: 0;
46
- }
47
- ul li {
48
- margin-bottom: 0.5rem;
49
- }
50
- p {
51
- margin-bottom: 1.5rem;
52
- font-size: 1.1rem;
53
- }
54
- a {
55
- color: #007bff;
56
- text-decoration: none;
57
- }
58
- a:hover {
59
- text-decoration: underline;
60
  }
61
  </style>
62
  </head>
63
  <body>
64
  <div class="container">
65
- <hr style="border: none; height: 2px; background-color: #800080;">
66
- <h1>Voice Conversion Models Hub</h1>
67
- <p>Welcome to our comprehensive repository, a treasure trove of pretrained models, HuBERT models, and an assortment of other files and models, all tailored for use in the Retrieval-based Voice Conversion (RVC) neural network.</p>
68
- <hr style="border: none; height: 2px; background-color: #800080;">
69
- <h3><i>All titles below are clickable, almost all links are to the authors of the models.</i></h3>
70
- <h2><a href="https://huggingface.co/Politrees/all_RVC-pretrained_and_other/tree/main/HuBERTs" target="_blank"><strong>HuBERT Models</strong></a>:</h2>
71
- <ul>
72
- <li><a href="https://huggingface.co/rinna" target="_blank"><strong>japanese_hubert_base and japanese_hubert_large</strong></a></li>
73
- <li><a href="https://huggingface.co/TencentGameMate" target="_blank"><strong>chinese_hubert_base and chinese_hubert_large</strong></a></li>
74
- <li><a href="https://huggingface.co/team-lucid/hubert-base-korean" target="_blank"><strong>korean_hubert_base</strong></a></li>
75
- </ul>
76
- <h2><a href="https://huggingface.co/Politrees/all_RVC-pretrained_and_other/tree/main/pretrained" target="_blank"><strong>Pre-Trained Models</strong></a>:</h2>
77
- <ul>
78
- <li><a href="https://huggingface.co/MUSTAR" target="_blank"><strong>Rigel, Snowie and RIN_E3</strong></a></li>
79
- <li><a href="https://huggingface.co/ORVC" target="_blank"><strong>Ov2Super</strong></a></li>
80
- <li><a href="https://huggingface.co/blaise-tk" target="_blank"><strong>TITAN</strong></a></li>
81
- <li><a href="https://huggingface.co/TheStinger" target="_blank"><strong>itaila</strong></a></li>
82
- <li><a href="https://huggingface.co/SeoulStreamingStation" target="_blank"><strong>KLM</strong></a></li>
83
- <li><a href="https://huggingface.co/Sztef" target="_blank"><strong>SingerPretrain and Anime</strong></a></li>
84
- <li><a href="https://huggingface.co/Razer112" target="_blank"><strong>DMR</strong></a></li>
85
- <li><a href="https://huggingface.co/Plasmati" target="_blank"><strong>UKR and UKA</strong></a></li>
86
- <li><a href="https://huggingface.co/Loren85" target="_blank"><strong>IMA_Robotic</strong></a></li>
87
- <li><a href="https://huggingface.co/shiromiya" target="_blank"><strong>Nanashi</strong></a></li>
88
- </ul>
89
- <hr style="border: none; height: 2px; background-color: #800080;">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  </div>
91
  </body>
92
  </html>
 
12
  - voice-conversion
13
  - Voice2Voice
14
  ---
 
15
  <html lang="en">
16
  <head>
17
  <meta charset="UTF-8">
18
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
19
  <style>
20
+ body { font-family: 'Arial', sans-serif; padding: 2rem; color: #333; background: linear-gradient(135deg, #f5f7fa, #c3cfe2); }
21
+ .container { max-width: 800px; margin: 0 auto; padding: 2rem; border-radius: 10px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); text-align: center; animation: fadeIn 1s ease-in-out; }
22
+ h1 { margin-bottom: 1.5rem; font-size: 2.5rem; color: transparent; background: linear-gradient(135deg, #800080, #6a006a); -webkit-background-clip: text; background-clip: text; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); animation: textFadeIn 1s ease-in-out; }
23
+ h2 { margin-bottom: 1rem; font-size: 2rem; color: transparent; background: linear-gradient(135deg, #800080, #6a006a); -webkit-background-clip: text; background-clip: text; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); animation: textFadeIn 1s ease-in-out; }
24
+ table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; table-layout: fixed; border-radius: 5px; overflow: hidden; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); animation: slideIn 1s ease-in-out; }
25
+ th, td { padding: 1rem; border: 1px solid #ddd; font-size: 1.2rem; text-align: center; vertical-align: middle; transition: background 0.3s ease, transform 0.3s ease; background-color: #fff; }
26
+ th { background-color: #800080; color: #fff; }
27
+ a { color: #007bff; text-decoration: none; transition: color 0.3s ease, transform 0.3s ease; }
28
+ a:hover { color: #0056b3; transform: scale(1.05); }
29
+ .model-col { width: 50%; }
30
+ .author-col { width: 50%; }
31
+ .donate-button { display: inline-block; padding: 15px 30px; background: linear-gradient(135deg, #800080, #6a006a); color: #fff; text-decoration: none; border-radius: 5px; margin-top: 20px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; }
32
+ .donate-button:hover { background: linear-gradient(135deg, #6a006a, #500050); box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); transform: translateY(-2px) scale(1.05); }
33
+ .small-text { font-size: 0.8rem; }
34
+ hr { border: none; height: 2px; background: linear-gradient(90deg, transparent, #800080, transparent); margin: 2rem 0; animation: pulse 2s infinite; }
35
+ .table-row td:hover { background-color: #f5f7fa; transform: scale(1.05); }
36
+ .icon { margin-right: 5px; transition: transform 0.3s ease; }
37
+ .icon:hover { transform: scale(1.2); }
38
+ .tooltip { position: relative; display: inline-block; }
39
+ .tooltip .tooltiptext { visibility: hidden; width: 120px; background-color: #555; color: #fff; text-align: center; border-radius: 5px; padding: 5px; position: absolute; z-index: 1; bottom: 125%; left: 50%; margin-left: -60px; opacity: 0; transition: opacity 0.3s; }
40
+ .tooltip:hover .tooltiptext { visibility: visible; opacity: 1; }
41
+ @keyframes fadeIn {
42
+ 0% { opacity: 0; transform: translateY(-20px); }
43
+ 100% { opacity: 1; transform: translateY(0); }
44
  }
45
+ @keyframes textFadeIn {
46
+ 0% { opacity: 0; transform: translateY(10px); }
47
+ 100% { opacity: 1; transform: translateY(0); }
 
 
 
 
48
  }
49
+ @keyframes slideIn {
50
+ 0% { opacity: 0; transform: translateY(20px); }
51
+ 100% { opacity: 1; transform: translateY(0); }
52
  }
53
+ @keyframes pulse {
54
+ 0% { opacity: 0.5; }
55
+ 50% { opacity: 1; }
56
+ 100% { opacity: 0.5; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  }
58
  </style>
59
  </head>
60
  <body>
61
  <div class="container">
62
+ <hr>
63
+ <h1>Voice Conversion RVC Hub</h1>
64
+ <p>A repository of pretrained models, HuBERT models, and other files for RVC neural network.</p>
65
+ <hr>
66
+ <h2>HuBERT Models</h2>
67
+ <table>
68
+ <tr>
69
+ <th class="model-col">Model<br><span class="small-text">(Repository)</span></th>
70
+ <th class="author-col">Author</th>
71
+ </tr>
72
+ <tr class="table-row">
73
+ <td class="model-col"><a href="https://github.com/auspicious3000/contentvec" target="_blank"><span class="icon">πŸ“</span>contentvec_base</a></td>
74
+ <td class="author-col"><a href="https://github.com/auspicious3000" target="_blank"><span class="icon">πŸ‘€</span>auspicious3000</a></td>
75
+ </tr>
76
+ <tr class="table-row">
77
+ <td class="model-col"><a href="https://huggingface.co/rinna/japanese-hubert-base" target="_blank"><span class="icon">πŸ“</span>japanese_hubert_base</a></td>
78
+ <td class="author-col"><a href="https://huggingface.co/rinna" target="_blank"><span class="icon">πŸ‘€</span>rinna</a></td>
79
+ </tr>
80
+ <tr class="table-row">
81
+ <td class="model-col"><a href="https://huggingface.co/TencentGameMate/chinese-hubert-base" target="_blank"><span class="icon">πŸ“</span>chinese_hubert_base</a></td>
82
+ <td class="author-col"><a href="https://huggingface.co/TencentGameMate" target="_blank"><span class="icon">πŸ‘€</span>TencentGameMate</a></td>
83
+ </tr>
84
+ <tr class="table-row">
85
+ <td class="model-col"><a href="https://huggingface.co/team-lucid/hubert-base-korean" target="_blank"><span class="icon">πŸ“</span>korean_hubert_base</a></td>
86
+ <td class="author-col"><a href="https://huggingface.co/team-lucid" target="_blank"><span class="icon">πŸ‘€</span>team-lucid</a></td>
87
+ </tr>
88
+ <tr class="table-row">
89
+ <td class="model-col"><a href="https://huggingface.co/shiromiya/fairseq-hubert-portuguese" target="_blank"><span class="icon">πŸ“</span>portuguese_hubert_base</a></td>
90
+ <td class="author-col"><a href="https://huggingface.co/shiromiya" target="_blank"><span class="icon">πŸ‘€</span>shiromiya</a></td>
91
+ </tr>
92
+ </table>
93
+ <h2>Pre-Trained Models</h2>
94
+ <table>
95
+ <tr>
96
+ <th class="model-col">Model<br><span class="small-text">(Repository)</span></th>
97
+ <th class="author-col">Author</th>
98
+ </tr>
99
+ <tr class="table-row">
100
+ <td class="model-col"><a href="https://huggingface.co/MUSTAR" target="_blank"><span class="icon">πŸ“</span>Rigel</a></td>
101
+ <td class="author-col" rowspan="3"><a href="https://huggingface.co/MUSTAR" target="_blank"><span class="icon">πŸ‘€</span>MUSTAR</a></td>
102
+ </tr>
103
+ <tr class="table-row">
104
+ <td class="model-col"><a href="https://huggingface.co/MUSTAR" target="_blank"><span class="icon">πŸ“</span>Snowie</a></td>
105
+ </tr>
106
+ <tr class="table-row">
107
+ <td class="model-col"><a href="https://huggingface.co/MUSTAR" target="_blank"><span class="icon">πŸ“</span>RIN_E3</a></td>
108
+ </tr>
109
+ <tr class="table-row">
110
+ <td class="model-col"><a href="https://huggingface.co/ORVC" target="_blank"><span class="icon">πŸ“</span>Ov2Super</a></td>
111
+ <td class="author-col"><a href="https://huggingface.co/ORVC" target="_blank"><span class="icon">πŸ‘€</span>ORVC</a></td>
112
+ </tr>
113
+ <tr class="table-row">
114
+ <td class="model-col"><a href="https://huggingface.co/blaise-tk" target="_blank"><span class="icon">πŸ“</span>TITAN</a></td>
115
+ <td class="author-col"><a href="https://huggingface.co/blaise-tk" target="_blank"><span class="icon">πŸ‘€</span>blaise-tk</a></td>
116
+ </tr>
117
+ <tr class="table-row">
118
+ <td class="model-col"><a href="https://huggingface.co/TheStinger/itaila" target="_blank"><span class="icon">πŸ“</span>itaila</a></td>
119
+ <td class="author-col"><a href="https://huggingface.co/TheStinger" target="_blank"><span class="icon">πŸ‘€</span>TheStinger</a></td>
120
+ </tr>
121
+ <tr class="table-row">
122
+ <td class="model-col"><a href="https://huggingface.co/SeoulStreamingStation" target="_blank"><span class="icon">πŸ“</span>KLM</a></td>
123
+ <td class="author-col"><a href="https://huggingface.co/SeoulStreamingStation" target="_blank"><span class="icon">πŸ‘€</span>SeoulStreamingStation</a></td>
124
+ </tr>
125
+ <tr class="table-row">
126
+ <td class="model-col"><a href="https://huggingface.co/Sztef" target="_blank"><span class="icon">πŸ“</span>SingerPretrain</a></td>
127
+ <td class="author-col" rowspan="2"><a href="https://huggingface.co/Sztef" target="_blank"><span class="icon">πŸ‘€</span>Sztef</a></td>
128
+ </tr>
129
+ <tr class="table-row">
130
+ <td class="model-col"><a href="https://huggingface.co/Sztef" target="_blank"><span class="icon">πŸ“</span>Anime</a></td>
131
+ </tr>
132
+ <tr class="table-row">
133
+ <td class="model-col"><a href="https://huggingface.co/Razer112" target="_blank"><span class="icon">πŸ“</span>DMR</a></td>
134
+ <td class="author-col"><a href="https://huggingface.co/Razer112" target="_blank"><span class="icon">πŸ‘€</span>Razer112</a></td>
135
+ </tr>
136
+ <tr class="table-row">
137
+ <td class="model-col"><a href="https://huggingface.co/Plasmati" target="_blank"><span class="icon">πŸ“</span>UKR</a></td>
138
+ <td class="author-col" rowspan="2"><a href="https://huggingface.co/Plasmati" target="_blank"><span class="icon">πŸ‘€</span>Plasmati</a></td>
139
+ </tr>
140
+ <tr class="table-row">
141
+ <td class="model-col"><a href="https://huggingface.co/Plasmati" target="_blank"><span class="icon">πŸ“</span>UKA</a></td>
142
+ </tr>
143
+ <tr class="table-row">
144
+ <td class="model-col"><a href="https://huggingface.co/Loren85" target="_blank"><span class="icon">πŸ“</span>IMA_Robotic</a></td>
145
+ <td class="author-col"><a href="https://huggingface.co/Loren85" target="_blank"><span class="icon">πŸ‘€</span>Loren85</a></td>
146
+ </tr>
147
+ <tr class="table-row">
148
+ <td class="model-col"><a href="https://huggingface.co/shiromiya" target="_blank"><span class="icon">πŸ“</span>Nanashi</a></td>
149
+ <td class="author-col"><a href="https://huggingface.co/shiromiya" target="_blank"><span class="icon">πŸ‘€</span>shiromiya</a></td>
150
+ </tr>
151
+ </table>
152
+ <hr>
153
+ <a href="https://www.donationalerts.com/r/politrees" target="_blank" class="donate-button">Send Donation</a>
154
  </div>
155
  </body>
156
  </html>