File size: 10,730 Bytes
297935a
 
 
 
 
b8105f9
297935a
e0c5139
c24b0ff
e0c5139
 
c24b0ff
 
297935a
2b045bc
 
 
 
 
104be0c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2b045bc
104be0c
 
 
2b045bc
104be0c
 
 
2b045bc
104be0c
 
 
 
2b045bc
 
 
 
 
104be0c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2b045bc
 
2f833e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
---
license: mit
pipeline_tag: audio-to-audio
tags:
- pretrained
- hubert
- RVC
- ai
- vits
- vc
- voice-cloning
- voice-conversion
- Voice2Voice
---
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        body { font-family: 'Arial', sans-serif; padding: 2rem; color: #333; background: linear-gradient(135deg, #f5f7fa, #c3cfe2); }
        .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; }
        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; }
        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; }
        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; }
        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; }
        th { background-color: #800080; color: #fff; }
        a { color: #007bff; text-decoration: none; transition: color 0.3s ease, transform 0.3s ease; }
        a:hover { color: #0056b3; transform: scale(1.05); }
        .model-col { width: 50%; }
        .author-col { width: 50%; }
        .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; }
        .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); }
        .small-text { font-size: 0.8rem; }
        hr { border: none; height: 2px; background: linear-gradient(90deg, transparent, #800080, transparent); margin: 2rem 0; animation: pulse 2s infinite; }
        .table-row td:hover { background-color: #f5f7fa; transform: scale(1.05); }
        .icon { margin-right: 5px; transition: transform 0.3s ease; }
        .icon:hover { transform: scale(1.2); }
        .tooltip { position: relative; display: inline-block; }
        .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; }
        .tooltip:hover .tooltiptext { visibility: visible; opacity: 1; }
        @keyframes fadeIn {
            0% { opacity: 0; transform: translateY(-20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes textFadeIn {
            0% { opacity: 0; transform: translateY(10px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideIn {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes pulse {
            0% { opacity: 0.5; }
            50% { opacity: 1; }
            100% { opacity: 0.5; }
        }
    </style>
</head>
<body>
    <div class="container">
        <hr>
        <h1>Voice Conversion RVC Hub</h1>
        <p>A repository of pretrained models, HuBERT models, and other files for RVC neural network.</p>
        <hr>
        <h2>HuBERT Models</h2>
        <table>
            <tr>
                <th class="model-col">Model<br><span class="small-text">(Repository)</span></th>
                <th class="author-col">Author</th>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://github.com/auspicious3000/contentvec" target="_blank"><span class="icon">πŸ“</span>contentvec_base</a></td>
                <td class="author-col"><a href="https://github.com/auspicious3000" target="_blank"><span class="icon">πŸ‘€</span>auspicious3000</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/rinna/japanese-hubert-base" target="_blank"><span class="icon">πŸ“</span>japanese_hubert_base</a></td>
                <td class="author-col"><a href="https://huggingface.co/rinna" target="_blank"><span class="icon">πŸ‘€</span>rinna</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/TencentGameMate/chinese-hubert-base" target="_blank"><span class="icon">πŸ“</span>chinese_hubert_base</a></td>
                <td class="author-col"><a href="https://huggingface.co/TencentGameMate" target="_blank"><span class="icon">πŸ‘€</span>TencentGameMate</a></td>
            </tr>
            <tr class="table-row">
                <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>
                <td class="author-col"><a href="https://huggingface.co/team-lucid" target="_blank"><span class="icon">πŸ‘€</span>team-lucid</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/shiromiya/fairseq-hubert-portuguese" target="_blank"><span class="icon">πŸ“</span>portuguese_hubert_base</a></td>
                <td class="author-col"><a href="https://huggingface.co/shiromiya" target="_blank"><span class="icon">πŸ‘€</span>shiromiya</a></td>
            </tr>
        </table>
        <h2>Pre-Trained Models</h2>
        <table>
            <tr>
                <th class="model-col">Model<br><span class="small-text">(Repository)</span></th>
                <th class="author-col">Author</th>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/MUSTAR" target="_blank"><span class="icon">πŸ“</span>Rigel</a></td>
                <td class="author-col" rowspan="3"><a href="https://huggingface.co/MUSTAR" target="_blank"><span class="icon">πŸ‘€</span>MUSTAR</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/MUSTAR" target="_blank"><span class="icon">πŸ“</span>Snowie</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/MUSTAR" target="_blank"><span class="icon">πŸ“</span>RIN_E3</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/ORVC" target="_blank"><span class="icon">πŸ“</span>Ov2Super</a></td>
                <td class="author-col"><a href="https://huggingface.co/ORVC" target="_blank"><span class="icon">πŸ‘€</span>ORVC</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/blaise-tk" target="_blank"><span class="icon">πŸ“</span>TITAN</a></td>
                <td class="author-col"><a href="https://huggingface.co/blaise-tk" target="_blank"><span class="icon">πŸ‘€</span>blaise-tk</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/TheStinger/itaila" target="_blank"><span class="icon">πŸ“</span>itaila</a></td>
                <td class="author-col"><a href="https://huggingface.co/TheStinger" target="_blank"><span class="icon">πŸ‘€</span>TheStinger</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/SeoulStreamingStation" target="_blank"><span class="icon">πŸ“</span>KLM</a></td>
                <td class="author-col"><a href="https://huggingface.co/SeoulStreamingStation" target="_blank"><span class="icon">πŸ‘€</span>SeoulStreamingStation</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/Sztef" target="_blank"><span class="icon">πŸ“</span>SingerPretrain</a></td>
                <td class="author-col" rowspan="2"><a href="https://huggingface.co/Sztef" target="_blank"><span class="icon">πŸ‘€</span>Sztef</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/Sztef" target="_blank"><span class="icon">πŸ“</span>Anime</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/Razer112" target="_blank"><span class="icon">πŸ“</span>DMR</a></td>
                <td class="author-col"><a href="https://huggingface.co/Razer112" target="_blank"><span class="icon">πŸ‘€</span>Razer112</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/Plasmati" target="_blank"><span class="icon">πŸ“</span>UKR</a></td>
                <td class="author-col" rowspan="2"><a href="https://huggingface.co/Plasmati" target="_blank"><span class="icon">πŸ‘€</span>Plasmati</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/Plasmati" target="_blank"><span class="icon">πŸ“</span>UKA</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/Loren85" target="_blank"><span class="icon">πŸ“</span>IMA_Robotic</a></td>
                <td class="author-col"><a href="https://huggingface.co/Loren85" target="_blank"><span class="icon">πŸ‘€</span>Loren85</a></td>
            </tr>
            <tr class="table-row">
                <td class="model-col"><a href="https://huggingface.co/shiromiya" target="_blank"><span class="icon">πŸ“</span>Nanashi</a></td>
                <td class="author-col"><a href="https://huggingface.co/shiromiya" target="_blank"><span class="icon">πŸ‘€</span>shiromiya</a></td>
            </tr>
        </table>
        <hr>
        <a href="https://www.donationalerts.com/r/politrees" target="_blank" class="donate-button">Send Donation</a>
    </div>
</body>
</html>