Spaces:
Running
Running
File size: 17,047 Bytes
bceb21d |
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 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kai - Dataset Integration</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f8fafc;
}
.gradient-text {
background: linear-gradient(90deg, #6366f1, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.dataset-card {
transition: all 0.3s ease;
border-left: 4px solid transparent;
}
.dataset-card:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
border-left-color: #6366f1;
}
</style>
</head>
<body class="min-h-screen">
<!-- Background -->
<div class="fixed inset-0 bg-gradient-to-br from-indigo-50 to-purple-50 opacity-50 -z-10"></div>
<!-- Navigation -->
<nav class="bg-white/80 backdrop-blur-md border-b border-gray-200 sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<span class="text-xl font-bold gradient-text">Kai</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="/" class="text-gray-700 hover:text-indigo-600 transition">Home</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 transition">About</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 transition">Features</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 transition">Pricing</a>
<a href="/datasets.html" class="text-indigo-600 font-medium">Datasets</a>
<a href="#chat-container" class="bg-indigo-600 text-white px-4 py-2 rounded-lg hover:bg-indigo-700 transition flex items-center gap-1">
<i data-feather="message-square" class="w-4 h-4"></i>
<span>Chat Now</span>
</a>
</div>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h1 class="text-4xl font-bold text-gray-900 mb-4">Kai Dataset Integration</h1>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Explore and utilize powerful datasets seamlessly integrated with Kai's AI capabilities
</p>
</div>
<!-- Dataset Cards -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- OpenAI GDP Validation Dataset -->
<div class="dataset-card bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center gap-4 mb-4">
<div class="w-12 h-12 rounded-lg bg-indigo-100 flex items-center justify-center">
<i data-feather="database" class="text-indigo-600"></i>
</div>
<div>
<h3 class="font-bold text-lg">GDP Validation</h3>
<p class="text-sm text-gray-500">openai/gdpval</p>
</div>
</div>
<p class="text-gray-600 mb-4">
A dataset for validating GDP-related claims using natural language processing.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">NLP</span>
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Economics</span>
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Validation</span>
</div>
<a href="https://huggingface.co/datasets/openai/gdpval" target="_blank" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 transition">
<span>Explore Dataset</span>
<i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<!-- Common Voice Dataset -->
<div class="dataset-card bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center gap-4 mb-4">
<div class="w-12 h-12 rounded-lg bg-indigo-100 flex items-center justify-center">
<i data-feather="mic" class="text-indigo-600"></i>
</div>
<div>
<h3 class="font-bold text-lg">Common Voice</h3>
<p class="text-sm text-gray-500">mozilla-foundation/common_voice_13_0</p>
</div>
</div>
<p class="text-gray-600 mb-4">
A massive multi-language dataset of voices for speech recognition training.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Speech</span>
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Multilingual</span>
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Audio</span>
</div>
<a href="https://huggingface.co/datasets/mozilla-foundation/common_voice_13_0" target="_blank" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 transition">
<span>Explore Dataset</span>
<i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<!-- IMDB Reviews -->
<div class="dataset-card bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center gap-4 mb-4">
<div class="w-12 h-12 rounded-lg bg-indigo-100 flex items-center justify-center">
<i data-feather="film" class="text-indigo-600"></i>
</div>
<div>
<h3 class="font-bold text-lg">IMDB Reviews</h3>
<p class="text-sm text-gray-500">imdb</p>
</div>
</div>
<p class="text-gray-600 mb-4">
Large movie review dataset for sentiment analysis and text classification.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Sentiment</span>
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Text</span>
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Reviews</span>
</div>
<a href="https://huggingface.co/datasets/imdb" target="_blank" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 transition">
<span>Explore Dataset</span>
<i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<!-- GLUE Benchmark -->
<div class="dataset-card bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center gap-4 mb-4">
<div class="w-12 h-12 rounded-lg bg-indigo-100 flex items-center justify-center">
<i data-feather="award" class="text-indigo-600"></i>
</div>
<div>
<h3 class="font-bold text-lg">GLUE Benchmark</h3>
<p class="text-sm text-gray-500">glue</p>
</div>
</div>
<p class="text-gray-600 mb-4">
Collection of natural language understanding tasks for evaluating models.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">NLU</span>
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Benchmark</span>
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Evaluation</span>
</div>
<a href="https://huggingface.co/datasets/glue" target="_blank" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 transition">
<span>Explore Dataset</span>
<i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<!-- Wikipedia -->
<div class="dataset-card bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center gap-4 mb-4">
<div class="w-12 h-12 rounded-lg bg-indigo-100 flex items-center justify-center">
<i data-feather="book-open" class="text-indigo-600"></i>
</div>
<div>
<h3 class="font-bold text-lg">Wikipedia</h3>
<p class="text-sm text-gray-500">wikipedia</p>
</div>
</div>
<p class="text-gray-600 mb-4">
Multilingual Wikipedia articles for training and evaluating language models.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Knowledge</span>
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Multilingual</span>
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Articles</span>
</div>
<a href="https://huggingface.co/datasets/wikipedia" target="_blank" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 transition">
<span>Explore Dataset</span>
<i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<!-- COCO -->
<div class="dataset-card bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center gap-4 mb-4">
<div class="w-12 h-12 rounded-lg bg-indigo-100 flex items-center justify-center">
<i data-feather="image" class="text-indigo-600"></i>
</div>
<div>
<h3 class="font-bold text-lg">COCO</h3>
<p class="text-sm text-gray-500">HuggingFaceM4/COCO</p>
</div>
</div>
<p class="text-gray-600 mb-4">
Large-scale object detection, segmentation, and captioning dataset.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Vision</span>
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Images</span>
<span class="text-xs px-2 py-1 bg-gray-100 rounded-full">Captions</span>
</div>
<a href="https://huggingface.co/datasets/HuggingFaceM4/COCO" target="_blank" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 transition">
<span>Explore Dataset</span>
<i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
<!-- Integration Section -->
<div class="mt-16 bg-white rounded-xl shadow-sm p-8">
<div class="text-center mb-8">
<h2 class="text-2xl font-bold text-gray-900 mb-2">Seamless Dataset Integration</h2>
<p class="text-gray-600 max-w-3xl mx-auto">
Kai automatically processes and understands these datasets to provide you with deeper insights
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="text-center">
<div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="zap" class="text-indigo-600"></i>
</div>
<h3 class="font-bold text-lg mb-2">Instant Access</h3>
<p class="text-gray-600">
Directly query datasets through natural conversation with Kai
</p>
</div>
<div class="text-center">
<div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="bar-chart-2" class="text-indigo-600"></i>
</div>
<h3 class="font-bold text-lg mb-2">Visual Insights</h3>
<p class="text-gray-600">
Get automatic visualizations and summaries of dataset contents
</p>
</div>
<div class="text-center">
<div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="cpu" class="text-indigo-600"></i>
</div>
<h3 class="font-bold text-lg mb-2">Custom Analysis</h3>
<p class="text-gray-600">
Request custom analyses and cross-dataset comparisons
</p>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h4 class="text-lg font-semibold mb-4">MindMirror Kai</h4>
<p class="text-gray-400">Your AI reflection for deeper understanding</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Resources</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="/" class="hover:text-white transition">Home</a></li>
<li><a href="/datasets.html" class="hover:text-white transition">Datasets</a></li>
<li><a href="#" class="hover:text-white transition">Documentation</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Legal</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition">Privacy Policy</a></li>
<li><a href="#" class="hover:text-white transition">Terms of Service</a></li>
<li><a href="#" class="hover:text-white transition">Dataset Licensing</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Connect</h4>
<div class="flex gap-4 text-gray-400">
<a href="#" class="hover:text-white transition"><i data-feather="github"></i></a>
<a href="#" class="hover:text-white transition"><i data-feather="twitter"></i></a>
<a href="#" class="hover:text-white transition"><i data-feather="linkedin"></i></a>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
<p>© 2023 MindMirror Kai. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Initialize Feather Icons
feather.replace();
</script>
</body>
</html> |