-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolab.html
More file actions
209 lines (190 loc) · 17.1 KB
/
Copy pathcolab.html
File metadata and controls
209 lines (190 loc) · 17.1 KB
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="images/icon.png">
<link rel="apple-touch-icon" href="images/icon.png">
<title>MuXolotl — Google Colab Notebooks</title>
<meta name="description" content="Коллекция Google Colab блокнотов для нейросетей: RVC тренировка, генерация каверов, разделение аудио (UVR).">
<meta name="keywords" content="Google Colab, RVC, AI cover, UVR, нейросети, обучение моделей">
<meta name="author" content="MuXolotl">
<meta property="og:type" content="website">
<meta property="og:url" content="https://muxolotl.github.io/colab.html">
<meta property="og:title" content="MuXolotl — AI Notebooks">
<meta property="og:description" content="Google Colab блокноты для RVC и работы со звуком.">
<meta name="theme-color" content="#030712">
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script src="components.js"></script>
</head>
<body class="bg-gray-950 text-gray-100 min-h-screen overflow-x-hidden">
<div class="fixed inset-0 z-0 overflow-hidden pointer-events-none">
<div class="blob blob-1"></div>
<div class="blob blob-3"></div>
</div>
<app-navbar page="inner"></app-navbar>
<section class="pt-32 pb-16 px-6 relative z-10">
<div class="max-w-4xl mx-auto text-center">
<div class="w-20 h-20 bg-gradient-to-br from-orange-500 to-yellow-500 rounded-2xl flex items-center justify-center mx-auto mb-6 shadow-2xl shadow-orange-500/20">
<svg class="w-10 h-10 text-white" viewBox="0 0 24 24" fill="currentColor">
<path d="M18.36 5.64c-1.95-1.96-5.11-1.96-7.07 0L9.88 7.05 8.46 5.64l1.42-1.42c2.73-2.73 7.16-2.73 9.9 0 2.73 2.74 2.73 7.17 0 9.9l-1.42 1.42-1.41-1.42 1.41-1.41c1.96-1.96 1.96-5.12 0-7.07zm-2.12 3.53l-7.07 7.07-1.41-1.41 7.07-7.07 1.41 1.41zm-12.02.71l1.42-1.42 1.41 1.42-1.41 1.41c-1.96 1.96-1.96 5.12 0 7.07 1.95 1.96 5.11 1.96 7.07 0l1.41-1.41 1.42 1.41-1.42 1.42c-2.73 2.73-7.16 2.73-9.9 0-2.73-2.74-2.73-7.17 0-9.9z"/>
</svg>
</div>
<h1 class="text-4xl md:text-5xl font-bold mb-6">Блокноты Google Colab</h1>
<p class="text-xl text-gray-400 leading-relaxed">
Коллекция скриптов для работы с нейросетями: тренировка RVC моделей, генерация каверов и разделение аудио.
</p>
</div>
</section>
<section class="py-16 px-6 relative z-10">
<div class="max-w-6xl mx-auto">
<div class="grid md:grid-cols-3 gap-6">
<!-- PolTrain -->
<div class="bg-gray-800/50 border border-gray-700/50 rounded-xl p-6 card-hover colab-card">
<div class="flex items-start justify-between mb-4">
<div class="colab-icon-wrapper icon-orange mb-0">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/></svg>
</div>
<div id="status-poltrain" class="status-badge online" onclick="openStatusModal(this)">
<span class="status-dot"></span>
<span class="status-text">Работает</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2">PolTrain</h3>
<h4 class="text-sm text-orange-400 font-medium mb-4">Тренировка моделей</h4>
<p class="text-gray-400 text-sm mb-6 flex-1">
Обучение RVC v2 моделей на вашем датасете. Поддержка Tensorboard и сохранения на Drive.
</p>
<div class="flex flex-col gap-3">
<a href="https://colab.research.google.com/drive/1BiFIyPUdx0u5CWF3YzwKwjgCs_muk6KJ" target="_blank" data-track="colab:poltrain-main" class="colab-btn colab-btn-primary">
<span>Открыть Colab</span>
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/></svg>
<span class="colab-click-counter" data-click-key="colab--poltrain-main">
<svg fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5"/></svg>
<span class="click-count">—</span>
</span>
</a>
<a href="https://colab.research.google.com/github/Politrees/PolTrain/blob/PolTrain/PolTrain_Colab.ipynb" target="_blank" data-track="colab:poltrain-backup" class="colab-btn colab-btn-secondary">
<span>Резервная ссылка</span>
<span class="colab-click-counter" data-click-key="colab--poltrain-backup">
<svg fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5"/></svg>
<span class="click-count">—</span>
</span>
</a>
<div class="pt-3 border-t border-gray-700/30">
<a href="https://github.com/Politrees/PolTrain" target="_blank" data-track="colab:poltrain-github" class="text-xs text-gray-500 hover:text-white flex items-center gap-1 transition">
<svg class="w-3 h-3" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
GitHub Repository
</a>
</div>
<!-- Суммарный счётчик карточки -->
<div class="colab-total-counter" data-total-keys="colab--poltrain-main,colab--poltrain-backup">
<svg fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6"/></svg>
<span>Всего открытий:</span>
<span class="total-count">—</span>
</div>
</div>
</div>
<!-- PolGen -->
<div class="bg-gray-800/50 border border-gray-700/50 rounded-xl p-6 card-hover colab-card">
<div class="flex items-start justify-between mb-4">
<div class="colab-icon-wrapper icon-pink mb-0">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19V6l12-3v13M9 19c0 1.105-1.343 2-3 2s-3-.895-3-2 1.343-2 3-2 3 .895 3 2zm12-3c0 1.105-1.343 2-3 2s-3-.895-3-2 1.343-2 3-2 3 .895 3 2zM9 10l12-3"/></svg>
</div>
<div id="status-polgen" class="status-badge online" onclick="openStatusModal(this)">
<span class="status-dot"></span>
<span class="status-text">Работает</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2">PolGen</h3>
<h4 class="text-sm text-pink-400 font-medium mb-4">Генерация каверов</h4>
<p class="text-gray-400 text-sm mb-6 flex-1">
Создание AI каверов с использованием предобученных RVC моделей.
</p>
<div class="flex flex-col gap-3">
<a href="https://colab.research.google.com/drive/1W39tbdYxR1NSVNHG6EDRiKkY4JM0f60B" target="_blank" data-track="colab:polgen-main" class="colab-btn colab-btn-primary">
<span>Открыть Colab</span>
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/></svg>
<span class="colab-click-counter" data-click-key="colab--polgen-main">
<svg fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5"/></svg>
<span class="click-count">—</span>
</span>
</a>
<div class="pt-3 border-t border-gray-700/30">
<a href="https://github.com/Politrees/PolGen" target="_blank" data-track="colab:polgen-github" class="text-xs text-gray-500 hover:text-white flex items-center gap-1 transition">
<svg class="w-3 h-3" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
GitHub Repository
</a>
</div>
<div class="colab-total-counter" data-total-keys="colab--polgen-main">
<svg fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6"/></svg>
<span>Всего открытий:</span>
<span class="total-count">—</span>
</div>
</div>
</div>
<!-- PolUVR -->
<div class="bg-gray-800/50 border border-gray-700/50 rounded-xl p-6 card-hover colab-card">
<div class="flex items-start justify-between mb-4">
<div class="colab-icon-wrapper icon-cyan mb-0">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11a7 7 0 01-7 7m0 0a7 7 0 01-7-7m7 7v4m0 0H8m4 0h4m-4-8a3 3 0 01-3-3V5a3 3 0 116 0v6a3 3 0 01-3 3z"/></svg>
</div>
<div id="status-poluvr" class="status-badge online" onclick="openStatusModal(this)">
<span class="status-dot"></span>
<span class="status-text">Работает</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2">PolUVR</h3>
<h4 class="text-sm text-cyan-400 font-medium mb-4">Разделение аудио</h4>
<p class="text-gray-400 text-sm mb-6 flex-1">
Ultimate Vocal Remover — разделение треков на вокал, инструментал и стемы.
</p>
<div class="flex flex-col gap-3">
<a href="https://colab.research.google.com/drive/1jS3rYTeNBeLgjJiSG12HdzH8d1kbkFLj" target="_blank" data-track="colab:poluvr-main" class="colab-btn colab-btn-primary">
<span>Открыть Colab</span>
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"/></svg>
<span class="colab-click-counter" data-click-key="colab--poluvr-main">
<svg fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 15l-2 5L9 9l11 4-5 2zm0 0l5 5"/></svg>
<span class="click-count">—</span>
</span>
</a>
<div class="pt-3 border-t border-gray-700/30">
<a href="https://github.com/Politrees/PolUVR" target="_blank" data-track="colab:poluvr-github" class="text-xs text-gray-500 hover:text-white flex items-center gap-1 transition">
<svg class="w-3 h-3" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
GitHub Repository
</a>
</div>
<div class="colab-total-counter" data-total-keys="colab--poluvr-main">
<svg fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6"/></svg>
<span>Всего открытий:</span>
<span class="total-count">—</span>
</div>
</div>
</div>
</div>
<p class="text-center text-sm text-gray-500 mt-8">
Для работы требуется аккаунт Google. Рекомендуется использовать Runtime с GPU.
</p>
</div>
</section>
<app-footer></app-footer>
<div id="statusModal" class="status-modal-overlay" onclick="if(event.target === this) closeStatusModal()">
<div class="status-modal-content">
<button class="status-modal-close" onclick="closeStatusModal()">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"/></svg>
</button>
<div class="status-modal-icon"></div>
<h3 class="text-xl font-bold mb-2 text-gray-100">Заголовок</h3>
<p class="text-gray-400 text-sm leading-relaxed">Описание</p>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/10.14.1/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.14.1/firebase-auth-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.14.1/firebase-database-compat.js"></script>
<script src="analytics.js"></script>
<script src="main.js"></script>
</body>
</html>