Update README.md
Browse files
README.md
CHANGED
@@ -12,32 +12,143 @@ tags:
|
|
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 {
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
@keyframes fadeIn {
|
42 |
0% { opacity: 0; transform: translateY(-20px); }
|
43 |
100% { opacity: 1; transform: translateY(0); }
|
@@ -55,7 +166,9 @@ tags:
|
|
55 |
50% { opacity: 1; }
|
56 |
100% { opacity: 0.5; }
|
57 |
}
|
58 |
-
.table-row {
|
|
|
|
|
59 |
</style>
|
60 |
</head>
|
61 |
<body>
|
@@ -67,7 +180,7 @@ tags:
|
|
67 |
<h2>HuBERT Models</h2>
|
68 |
<table>
|
69 |
<tr>
|
70 |
-
<th class="model-col">Model
|
71 |
<th class="author-col">Author</th>
|
72 |
</tr>
|
73 |
<tr class="table-row">
|
@@ -94,7 +207,7 @@ tags:
|
|
94 |
<h2>Pre-Trained Models</h2>
|
95 |
<table>
|
96 |
<tr>
|
97 |
-
<th class="model-col">Model
|
98 |
<th class="author-col">Author</th>
|
99 |
</tr>
|
100 |
<tr class="table-row">
|
|
|
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 |
+
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 {
|
57 |
+
width: 100%;
|
58 |
+
border-collapse: collapse;
|
59 |
+
margin-bottom: 2rem;
|
60 |
+
table-layout: fixed;
|
61 |
+
border-radius: 5px;
|
62 |
+
overflow: hidden;
|
63 |
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
64 |
+
animation: slideIn 1s ease-in-out;
|
65 |
+
}
|
66 |
+
th, td {
|
67 |
+
padding: 1rem;
|
68 |
+
border: 1px solid #ddd;
|
69 |
+
font-size: 1.2rem;
|
70 |
+
text-align: center;
|
71 |
+
vertical-align: middle;
|
72 |
+
transition: background 0.3s ease, transform 0.3s ease;
|
73 |
+
background-color: #fff;
|
74 |
+
}
|
75 |
+
th {
|
76 |
+
background-color: #800080;
|
77 |
+
color: #fff;
|
78 |
+
}
|
79 |
+
a {
|
80 |
+
color: #007bff;
|
81 |
+
text-decoration: none;
|
82 |
+
transition: color 0.3s ease, transform 0.3s ease;
|
83 |
+
}
|
84 |
+
a:hover {
|
85 |
+
color: #0056b3;
|
86 |
+
transform: scale(1.05);
|
87 |
+
}
|
88 |
+
.model-col {
|
89 |
+
width: 50%;
|
90 |
+
}
|
91 |
+
.author-col {
|
92 |
+
width: 50%;
|
93 |
+
}
|
94 |
+
.donate-button {
|
95 |
+
display: inline-block;
|
96 |
+
padding: 15px 30px;
|
97 |
+
background: linear-gradient(135deg, #800080, #6a006a);
|
98 |
+
color: #fff;
|
99 |
+
text-decoration: none;
|
100 |
+
border-radius: 5px;
|
101 |
+
margin-top: 20px;
|
102 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
103 |
+
transition: all 0.3s ease;
|
104 |
+
}
|
105 |
+
.donate-button:hover {
|
106 |
+
background: linear-gradient(135deg, #6a006a, #500050);
|
107 |
+
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
|
108 |
+
transform: translateY(-2px) scale(1.05);
|
109 |
+
}
|
110 |
+
hr {
|
111 |
+
border: none;
|
112 |
+
height: 2px;
|
113 |
+
background: linear-gradient(90deg, transparent, #800080, transparent);
|
114 |
+
margin: 2rem 0;
|
115 |
+
animation: pulse 2s infinite;
|
116 |
+
}
|
117 |
+
.table-row td:hover {
|
118 |
+
background-color: #f5f7fa;
|
119 |
+
transform: scale(1.05);
|
120 |
+
}
|
121 |
+
.icon {
|
122 |
+
margin-right: 5px;
|
123 |
+
transition: transform 0.3s ease;
|
124 |
+
}
|
125 |
+
.icon:hover {
|
126 |
+
transform: scale(1.2);
|
127 |
+
}
|
128 |
+
.tooltip {
|
129 |
+
position: relative;
|
130 |
+
display: inline-block;
|
131 |
+
}
|
132 |
+
.tooltip .tooltiptext {
|
133 |
+
visibility: hidden;
|
134 |
+
width: 120px;
|
135 |
+
background-color: #555;
|
136 |
+
color: #fff;
|
137 |
+
text-align: center;
|
138 |
+
border-radius: 5px;
|
139 |
+
padding: 5px;
|
140 |
+
position: absolute;
|
141 |
+
z-index: 1;
|
142 |
+
bottom: 125%;
|
143 |
+
left: 50%;
|
144 |
+
margin-left: -60px;
|
145 |
+
opacity: 0;
|
146 |
+
transition: opacity 0.3s;
|
147 |
+
}
|
148 |
+
.tooltip:hover .tooltiptext {
|
149 |
+
visibility: visible;
|
150 |
+
opacity: 1;
|
151 |
+
}
|
152 |
@keyframes fadeIn {
|
153 |
0% { opacity: 0; transform: translateY(-20px); }
|
154 |
100% { opacity: 1; transform: translateY(0); }
|
|
|
166 |
50% { opacity: 1; }
|
167 |
100% { opacity: 0.5; }
|
168 |
}
|
169 |
+
.table-row {
|
170 |
+
border: 2px solid #ddd;
|
171 |
+
}
|
172 |
</style>
|
173 |
</head>
|
174 |
<body>
|
|
|
180 |
<h2>HuBERT Models</h2>
|
181 |
<table>
|
182 |
<tr>
|
183 |
+
<th class="model-col">Model</th>
|
184 |
<th class="author-col">Author</th>
|
185 |
</tr>
|
186 |
<tr class="table-row">
|
|
|
207 |
<h2>Pre-Trained Models</h2>
|
208 |
<table>
|
209 |
<tr>
|
210 |
+
<th class="model-col">Model</th>
|
211 |
<th class="author-col">Author</th>
|
212 |
</tr>
|
213 |
<tr class="table-row">
|