maxtom0 commited on
Commit
444e0a8
·
verified ·
1 Parent(s): 3c75b2e

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +402 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Cyberone
3
- emoji: 👀
4
- colorFrom: green
5
- colorTo: pink
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: cyberone
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,402 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>NeuroData | AI Training Data Platform</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @keyframes float {
11
+ 0%, 100% { transform: translateY(0); }
12
+ 50% { transform: translateY(-8px); }
13
+ }
14
+ .animate-float {
15
+ animation: float 4s ease-in-out infinite;
16
+ }
17
+ .gradient-text {
18
+ background: linear-gradient(90deg, #8B5CF6, #EC4899);
19
+ -webkit-background-clip: text;
20
+ background-clip: text;
21
+ color: transparent;
22
+ }
23
+ .gradient-bg {
24
+ background: linear-gradient(135deg, #1E293B, #0F172A);
25
+ }
26
+ .card-gradient {
27
+ background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
28
+ }
29
+ .glow-hover:hover {
30
+ box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
31
+ }
32
+ .data-point {
33
+ position: absolute;
34
+ background: rgba(236, 72, 153, 0.1);
35
+ border: 1px solid rgba(236, 72, 153, 0.3);
36
+ border-radius: 50%;
37
+ }
38
+ .pulse-dot {
39
+ position: absolute;
40
+ width: 8px;
41
+ height: 8px;
42
+ border-radius: 50%;
43
+ background: #8B5CF6;
44
+ animation: pulse 2s infinite;
45
+ }
46
+ @keyframes pulse {
47
+ 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7); }
48
+ 70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
49
+ 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
50
+ }
51
+ .annotation-path {
52
+ stroke-dasharray: 1000;
53
+ stroke-dashoffset: 1000;
54
+ animation: dash 5s linear forwards infinite;
55
+ }
56
+ @keyframes dash {
57
+ to {
58
+ stroke-dashoffset: 0;
59
+ }
60
+ }
61
+ </style>
62
+ </head>
63
+ <body class="font-sans gradient-bg text-gray-300">
64
+ <header class="sticky top-0 z-50 gradient-bg border-b border-gray-800">
65
+ <div class="container mx-auto px-6 py-4 flex justify-between items-center">
66
+ <div class="flex items-center">
67
+ <div class="w-10 h-10 rounded-md bg-gradient-to-r from-purple-600 to-pink-500 flex items-center justify-center text-white font-bold text-xl">N</div>
68
+ <span class="ml-3 text-xl font-semibold text-white">NeuroData</span>
69
+ </div>
70
+ <nav class="hidden lg:flex space-x-8">
71
+ <a href="#" class="text-gray-300 hover:text-white">Platform</a>
72
+ <a href="#" class="text-gray-300 hover:text-white">Solutions</a>
73
+ <a href="#" class="text-gray-300 hover:text-white">Resources</a>
74
+ <a href="#" class="text-gray-300 hover:text-white">Customers</a>
75
+ <a href="#" class="text-gray-300 hover:text-white">Company</a>
76
+ </nav>
77
+ <div class="flex items-center space-x-4">
78
+ <button class="px-4 py-2 text-gray-300 rounded-md hover:bg-gray-800">Sign In</button>
79
+ <button class="px-4 py-2 bg-gradient-to-r from-purple-600 to-pink-500 text-white rounded-md hover:opacity-90 transition">Get Started</button>
80
+ </div>
81
+ <button class="lg:hidden text-gray-300">
82
+ <i class="fas fa-bars text-xl"></i>
83
+ </button>
84
+ </div>
85
+ </header>
86
+
87
+ <main>
88
+ <!-- Hero Section -->
89
+ <section class="relative py-20 lg:py-32 overflow-hidden">
90
+ <!-- Animated background elements -->
91
+ <div id="data-points-container"></div>
92
+
93
+ <div class="container mx-auto px-6 relative z-10">
94
+ <div class="flex flex-col lg:flex-row items-center">
95
+ <div class="lg:w-1/2 mb-16 lg:mb-0">
96
+ <div class="inline-block px-3 py-1 bg-gray-800 rounded-full text-sm text-pink-400 mb-4">
97
+ <span class="animate-pulse">•</span> Now with RLHF capabilities
98
+ </div>
99
+ <h1 class="text-4xl md:text-5xl font-bold text-white leading-tight mb-6">
100
+ The Complete Platform for
101
+ <span class="gradient-text">AI Data Infrastructure</span>
102
+ </h1>
103
+ <p class="text-lg text-gray-400 mb-8 max-w-lg">
104
+ High-quality training data, cutting-edge annotation tools, and enterprise-grade infrastructure to power your AI applications.
105
+ </p>
106
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
107
+ <button class="px-6 py-3 bg-gradient-to-r from-purple-600 to-pink-500 text-white rounded-md hover:opacity-90 transition font-medium flex items-center">
108
+ <i class="fas fa-rocket mr-2"></i> Start for Free
109
+ </button>
110
+ <button class="px-6 py-3 border border-gray-700 bg-gray-900 rounded-md hover:bg-gray-800 transition font-medium text-white flex items-center justify-center">
111
+ <i class="fas fa-robot mr-2 text-purple-400"></i>
112
+ See AI in Action
113
+ </button>
114
+ </div>
115
+
116
+ <div class="mt-12 flex items-center space-x-6">
117
+ <div class="flex items-center">
118
+ <div class="flex -space-x-2">
119
+ <img class="w-8 h-8 rounded-full border-2 border-gray-800" src="https://randomuser.me/api/portraits/women/12.jpg" alt="">
120
+ <img class="w-8 h-8 rounded-full border-2 border-gray-800" src="https://randomuser.me/api/portraits/men/32.jpg" alt="">
121
+ <img class="w-8 h-8 rounded-full border-2 border-gray-800" src="https://randomuser.me/api/portraits/women/44.jpg" alt="">
122
+ </div>
123
+ <div class="ml-4 text-sm text-gray-400">
124
+ <div>Trusted by 850+ teams</div>
125
+ <div class="flex items-center mt-1">
126
+ <i class="fas fa-star text-yellow-400 mr-1"></i>
127
+ <i class="fas fa-star text-yellow-400 mr-1"></i>
128
+ <i class="fas fa-star text-yellow-400 mr-1"></i>
129
+ <i class="fas fa-star text-yellow-400 mr-1"></i>
130
+ <i class="fas fa-star text-yellow-400 mr-1"></i>
131
+ <span class="ml-1">4.9/5</span>
132
+ </div>
133
+ </div>
134
+ </div>
135
+ </div>
136
+ </div>
137
+
138
+ <div class="lg:w-1/2 relative">
139
+ <div class="relative w-full h-96 bg-gray-900 rounded-2xl border border-gray-800 overflow-hidden glow-hover transition-all duration-300">
140
+ <!-- Interactive demo dashboard -->
141
+ <div class="absolute inset-0 flex flex-col">
142
+ <!-- Header -->
143
+ <div class="flex items-center justify-between p-4 border-b border-gray-800 bg-gradient-to-r from-gray-900 to-gray-800">
144
+ <div class="flex items-center space-x-2">
145
+ <div class="w-2 h-2 rounded-full bg-red-500"></div>
146
+ <div class="w-2 h-2 rounded-full bg-yellow-500"></div>
147
+ <div class="w-2 h-2 rounded-full bg-green-500"></div>
148
+ <span class="ml-2 text-xs text-gray-400">AI Labeling Console</span>
149
+ </div>
150
+ <div class="flex items-center space-x-2">
151
+ <span class="text-xs bg-gray-700 text-green-400 px-2 py-1 rounded">LIVE</span>
152
+ <span class="text-xs text-gray-400">32 workers active</span>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Main content -->
157
+ <div class="flex flex-1 overflow-hidden">
158
+ <!-- Sidebar -->
159
+ <div class="w-16 bg-gray-800 flex flex-col items-center py-4 border-r border-gray-800">
160
+ <button class="w-10 h-10 rounded-lg bg-gray-700 text-purple-400 mb-4 flex items-center justify-center">
161
+ <i class="fas fa-database"></i>
162
+ </button>
163
+ <button class="w-10 h-10 rounded-lg bg-purple-600 text-white mb-4 flex items-center justify-center">
164
+ <i class="fas fa-tag"></i>
165
+ </button>
166
+ <button class="w-10 h-10 rounded-lg bg-gray-700 text-gray-400 mb-4 flex items-center justify-center">
167
+ <i class="fas fa-chart-line"></i>
168
+ </button>
169
+ <button class="w-10 h-10 rounded-lg bg-gray-700 text-gray-400 flex items-center justify-center">
170
+ <i class="fas fa-cog"></i>
171
+ </button>
172
+ </div>
173
+
174
+ <!-- Annotator view -->
175
+ <div class="flex-1 flex flex-col">
176
+ <div class="p-4 border-b border-gray-800 flex items-center justify-between">
177
+ <div class="flex items-center space-x-2">
178
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
179
+ <path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="#8B5CF6" stroke-width="2"/>
180
+ <path d="M12 8V12L15 15" stroke="#8B5CF6" stroke-width="2" stroke-linecap="round"/>
181
+ </svg>
182
+ <span class="text-xs text-gray-400">Task ID: ND-2837-42</span>
183
+ </div>
184
+ <div class="text-xs text-gray-400">
185
+ <span class="text-purple-400">82%</span> complete
186
+ </div>
187
+ </div>
188
+
189
+ <div class="flex-1 flex overflow-hidden">
190
+ <!-- Image with dynamic annotations -->
191
+ <div class="flex-1 relative overflow-hidden flex items-center justify-center bg-gray-900">
192
+ <img id="demo-image" src="https://placehold.co/600x400/1F2937/6B7280" alt="AI Annotation" class="absolute inset-0 w-full h-full object-contain opacity-70">
193
+
194
+ <!-- Dynamic annotation boxes -->
195
+ <div id="annotation-container">
196
+ <!-- These will be added by JavaScript -->
197
+ </div>
198
+
199
+ <!-- Toolbar -->
200
+ <div class="absolute bottom-4 left-1/2 transform -translate-x-1/2 flex space-x-2">
201
+ <button class="w-8 h-8 rounded-full bg-gray-800 border border-gray-700 text-purple-400 flex items-center justify-center hover:bg-purple-600 hover:text-white">
202
+ <i class="fas fa-square text-xs"></i>
203
+ </button>
204
+ <button class="w-8 h-8 rounded-full bg-gray-800 border border-gray-700 text-pink-400 flex items-center justify-center hover:bg-pink-600 hover:text-white">
205
+ <i class="fas fa-circle text-xs"></i>
206
+ </button>
207
+ <button class="w-8 h-8 rounded-full bg-gray-800 border border-gray-700 text-blue-400 flex items-center justify-center hover:bg-blue-600 hover:text-white">
208
+ <i class="fas fa-pen text-xs"></i>
209
+ </button>
210
+ <button class="w-8 h-8 rounded-full bg-gray-800 border border-gray-700 text-green-400 flex items-center justify-center hover:bg-green-600 hover:text-white">
211
+ <i class="fas fa-check text-xs"></i>
212
+ </button>
213
+ </div>
214
+ </div>
215
+
216
+ <!-- Instructions panel -->
217
+ <div class="w-64 bg-gray-800 border-l border-gray-800 p-4 overflow-y-auto">
218
+ <h4 class="text-xs font-medium text-gray-300 mb-2">INSTRUCTIONS</h4>
219
+ <p class="text-xs text-gray-400 mb-4">Label all vehicles in the image. Include trucks, cars, and motorcycles. Ignore pedestrians.</p>
220
+
221
+ <h4 class="text-xs font-medium text-gray-300 mb-2">CLASSES</h4>
222
+ <div class="space-y-2 mb-4">
223
+ <div class="flex items-center text-xs p-2 bg-gray-700 rounded cursor-pointer hover:bg-gray-600">
224
+ <div class="w-3 h-3 rounded-full bg-purple-500 mr-2"></div>
225
+ <span>Car</span>
226
+ </div>
227
+ <div class="flex items-center text-xs p-2 bg-gray-700 rounded cursor-pointer hover:bg-gray-600">
228
+ <div class="w-3 h-3 rounded-full bg-pink-500 mr-2"></div>
229
+ <span>Truck</span>
230
+ </div>
231
+ <div class="flex items-center text-xs p-2 bg-gray-700 rounded cursor-pointer hover:bg-gray-600">
232
+ <div class="w-3 h-3 rounded-full bg-blue-500 mr-2"></div>
233
+ <span>Motorcycle</span>
234
+ </div>
235
+ </div>
236
+
237
+ <div class="text-xs text-gray-400">
238
+ <div class="flex justify-between mb-1">
239
+ <span>Accuracy</span>
240
+ <span class="text-green-400">98%</span>
241
+ </div>
242
+ <div class="w-full bg-gray-700 rounded-full h-1">
243
+ <div class="bg-green-500 h-1 rounded-full" style="width: 98%"></div>
244
+ </div>
245
+ </div>
246
+ </div>
247
+ </div>
248
+ </div>
249
+ </div>
250
+ </div>
251
+ </div>
252
+ </div>
253
+ </div>
254
+ </div>
255
+ </section>
256
+
257
+ <!-- Trusted By Section -->
258
+ <section class="py-16 gradient-bg">
259
+ <div class="container mx-auto px-6">
260
+ <p class="text-center text-gray-500 text-sm mb-8">TRUSTED BY INDUSTRY LEADERS</p>
261
+ <div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center">
262
+ <div class="flex justify-center text-white opacity-80 hover:opacity-100 transition">
263
+ <div class="text-2xl font-bold">OpenAI</div>
264
+ </div>
265
+ <div class="flex justify-center text-white opacity-80 hover:opacity-100 transition">
266
+ <div class="text-2xl font-bold">Waymo</div>
267
+ </div>
268
+ <div class="flex justify-center text-white opacity-80 hover:opacity-100 transition">
269
+ <div class="text-2xl font-bold">Tesla</div>
270
+ </div>
271
+ <div class="flex justify-center text-white opacity-80 hover:opacity-100 transition">
272
+ <div class="text-2xl font-bold">NASA</div>
273
+ </div>
274
+ <div class="flex justify-center text-white opacity-80 hover:opacity-100 transition">
275
+ <div class="text-2xl font-bold">NVIDIA</div>
276
+ </div>
277
+ <div class="flex justify-center text-white opacity-80 hover:opacity-100 transition">
278
+ <div class="text-2xl font-bold">DoD</div>
279
+ </div>
280
+ </div>
281
+ </div>
282
+ </section>
283
+
284
+ <!-- Solutions Section -->
285
+ <section class="py-20 relative overflow-hidden">
286
+ <div class="absolute top-0 left-0 w-full h-full opacity-5">
287
+ <div id="network-lines"></div>
288
+ </div>
289
+
290
+ <div class="container mx-auto px-6 relative">
291
+ <div class="text-center mb-16">
292
+ <h2 class="text-3xl font-bold text-white mb-4">Enterprise AI Solutions</h2>
293
+ <p class="text-lg text-gray-400 max-w-2xl mx-auto">End-to-end platforms for every stage of your AI development lifecycle</p>
294
+ </div>
295
+
296
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
297
+ <!-- Card 1 -->
298
+ <div class="card-gradient rounded-2xl border border-gray-800 p-8 glow-hover transition-all">
299
+ <div class="w-14 h-14 rounded-lg bg-purple-500 bg-opacity-20 text-purple-400 flex items-center justify-center mb-6">
300
+ <i class="fas fa-database text-2xl"></i>
301
+ </div>
302
+ <h3 class="text-xl font-semibold text-white mb-3">Data Collection</h3>
303
+ <p class="text-gray-400 mb-4">Source and aggregate diverse, high-quality datasets with our global data network and scraping tools.</p>
304
+ <div class="flex items-center text-purple-400 font-medium">
305
+ <span>Explore Data</span>
306
+ <i class="fas fa-arrow-right ml-2 text-xs"></i>
307
+ </div>
308
+ <div class="absolute -bottom-6 -right-6 w-32 h-32 rounded-full bg-purple-500 opacity-5"></div>
309
+ </div>
310
+
311
+ <!-- Card 2 -->
312
+ <div class="card-gradient rounded-2xl border border-gray-800 p-8 glow-hover transition-all">
313
+ <div class="w-14 h-14 rounded-lg bg-pink-500 bg-opacity-20 text-pink-400 flex items-center justify-center mb-6">
314
+ <i class="fas fa-tags text-2xl"></i>
315
+ </div>
316
+ <h3 class="text-xl font-semibold text-white mb-3">Data Annotation</h3>
317
+ <p class="text-gray-400 mb-4">Precision labeling with AI-assisted tools, quality control, and expert human annotators.</p>
318
+ <div class="flex items-center text-pink-400 font-medium">
319
+ <span>View Tools</span>
320
+ <i class="fas fa-arrow-right ml-2 text-xs"></i>
321
+ </div>
322
+ <div class="absolute -bottom-6 -right-6 w-32 h-32 rounded-full bg-pink-500 opacity-5"></div>
323
+ </div>
324
+
325
+ <!-- Card 3 -->
326
+ <div class="card-gradient rounded-2xl border border-gray-800 p-8 glow-hover transition-all">
327
+ <div class="w-14 h-14 rounded-lg bg-blue-500 bg-opacity-20 text-blue-400 flex items-center justify-center mb-6">
328
+ <i class="fas fa-robot text-2xl"></i>
329
+ </div>
330
+ <h3 class="text-xl font-semibold text-white mb-3">Model Training</h3>
331
+ <p class="text-gray-400 mb-4">Scalable infrastructure with distributed training, hyperparameter tuning, and evaluation.</p>
332
+ <div class="flex items-center text-blue-400 font-medium">
333
+ <span>Train Models</span>
334
+ <i class="fas fa-arrow-right ml-2 text-xs"></i>
335
+ </div>
336
+ <div class="absolute -bottom-6 -right-6 w-32 h-32 rounded-full bg-blue-500 opacity-5"></div>
337
+ </div>
338
+ </div>
339
+ </div>
340
+ </section>
341
+
342
+ <!-- Interactive Demo Section -->
343
+ <section class="py-20 gradient-bg">
344
+ <div class="container mx-auto px-6">
345
+ <div class="flex flex-col lg:flex-row items-center">
346
+ <div class="lg:w-1/2 mb-12 lg:mb-0">
347
+ <h2 class="text-3xl font-bold text-white mb-6">Active Learning Workflows</h2>
348
+ <p class="text-lg text-gray-400 mb-8">
349
+ Our platform intelligently selects the most valuable data points for labeling, reducing costs by up to 70% while maintaining model accuracy.
350
+ </p>
351
+
352
+ <div class="space-y-6">
353
+ <div class="flex items-start">
354
+ <div class="flex-shrink-0 mt-1">
355
+ <div class="w-8 h-8 rounded-full bg-purple-600 bg-opacity-20 text-purple-400 flex items-center justify-center">
356
+ <i class="fas fa-brain"></i>
357
+ </div>
358
+ </div>
359
+ <div class="ml-4">
360
+ <h4 class="text-lg font-medium text-white mb-1">Adaptive Sampling</h4>
361
+ <p class="text-gray-400">Prioritize edge cases and uncertain predictions to improve model robustness.</p>
362
+ </div>
363
+ </div>
364
+
365
+ <div class="flex items-start">
366
+ <div class="flex-shrink-0 mt-1">
367
+ <div class="w-8 h-8 rounded-full bg-pink-600 bg-opacity-20 text-pink-400 flex items-center justify-center">
368
+ <i class="fas fa-chart-line"></i>
369
+ </div>
370
+ </div>
371
+ <div class="ml-4">
372
+ <h4 class="text-lg font-medium text-white mb-1">Performance Tracking</h4>
373
+ <p class="text-gray-400">Real-time metrics show how each labeled sample improves model accuracy.</p>
374
+ </div>
375
+ </div>
376
+
377
+ <div class="flex items-start">
378
+ <div class="flex-shrink-0 mt-1">
379
+ <div class="w-8 h-8 rounded-full bg-blue-600 bg-opacity-20 text-blue-400 flex items-center justify-center">
380
+ <i class="fas fa-users"></i>
381
+ </div>
382
+ </div>
383
+ <div class="ml-4">
384
+ <h4 class="text-lg font-medium text-white mb-1">Human-in-the-Loop</h4>
385
+ <p class="text-gray-400">Seamless integration of human judgment for uncertain predictions.</p>
386
+ </div>
387
+ </div>
388
+ </div>
389
+ </div>
390
+
391
+ <div class="lg:w-1/2 relative">
392
+ <div class="relative w-full h-96 bg-gray-900 rounded-2xl border border-gray-800 overflow-hidden glow-hover transition-all">
393
+ <!-- Performance chart -->
394
+ <div class="absolute inset-0 flex flex-col">
395
+ <div class="p-4 border-b border-gray-800 flex items-center justify-between">
396
+ <div class="flex items-center space-x-2">
397
+ <span class="text-sm text-gray-300">Model Performance</span>
398
+ <span class="text-xs bg-gray-800 text-green-400 px-2 py-0.5 rounded">+12% weekly</span>
399
+ </div>
400
+ <div class="flex items-center space-x-2">
401
+ <button class="text
402
+ </html>