Spaces:
Running
Running
Avijit Ghosh
commited on
Commit
·
18dce59
1
Parent(s):
733e57b
fix about page
Browse files- app/about/page.tsx +65 -0
app/about/page.tsx
CHANGED
|
@@ -230,6 +230,71 @@ export default function AboutPage() {
|
|
| 230 |
</CardContent>
|
| 231 |
</Card>
|
| 232 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 233 |
<Separator />
|
| 234 |
|
| 235 |
<div className="text-center space-y-4">
|
|
|
|
| 230 |
</CardContent>
|
| 231 |
</Card>
|
| 232 |
|
| 233 |
+
<Card>
|
| 234 |
+
<CardHeader>
|
| 235 |
+
<CardTitle>Contributions & Open Data</CardTitle>
|
| 236 |
+
<CardDescription>
|
| 237 |
+
Explore our open-source evaluation framework and example datasets
|
| 238 |
+
</CardDescription>
|
| 239 |
+
</CardHeader>
|
| 240 |
+
<CardContent className="space-y-4">
|
| 241 |
+
<div className="grid gap-4 sm:grid-cols-2">
|
| 242 |
+
<div className="flex items-start gap-3 p-4 border rounded-lg">
|
| 243 |
+
<div className="w-8 h-8 bg-blue-100 dark:bg-blue-900 rounded-lg flex items-center justify-center flex-shrink-0">
|
| 244 |
+
<svg className="w-4 h-4 text-blue-600 dark:text-blue-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| 245 |
+
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
| 246 |
+
</svg>
|
| 247 |
+
</div>
|
| 248 |
+
<div>
|
| 249 |
+
<h4 className="font-medium mb-2">Evaluation Schema</h4>
|
| 250 |
+
<p className="text-sm text-muted-foreground mb-3">
|
| 251 |
+
Access our complete evaluation framework including category definitions, question sets, and validation schemas.
|
| 252 |
+
</p>
|
| 253 |
+
<Link
|
| 254 |
+
href="https://huggingface.co/spaces/evaleval/general-eval-card/tree/main/schema"
|
| 255 |
+
target="_blank"
|
| 256 |
+
className="inline-flex items-center gap-1 text-sm text-primary hover:underline"
|
| 257 |
+
>
|
| 258 |
+
View on Hugging Face
|
| 259 |
+
<ExternalLink className="h-3 w-3" />
|
| 260 |
+
</Link>
|
| 261 |
+
</div>
|
| 262 |
+
</div>
|
| 263 |
+
|
| 264 |
+
<div className="flex items-start gap-3 p-4 border rounded-lg">
|
| 265 |
+
<div className="w-8 h-8 bg-green-100 dark:bg-green-900 rounded-lg flex items-center justify-center flex-shrink-0">
|
| 266 |
+
<svg className="w-4 h-4 text-green-600 dark:text-green-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
| 267 |
+
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M3 7v10a2 2 0 002 2h14a2 2 0 002-2V9a2 2 0 00-2-2H5a2 2 0 00-2-2z" />
|
| 268 |
+
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M8 5a2 2 0 012-2h4a2 2 0 012 2v10a2 2 0 01-2 2H10a2 2 0 01-2-2V5z" />
|
| 269 |
+
</svg>
|
| 270 |
+
</div>
|
| 271 |
+
<div>
|
| 272 |
+
<h4 className="font-medium mb-2">Example Evaluations</h4>
|
| 273 |
+
<p className="text-sm text-muted-foreground mb-3">
|
| 274 |
+
Explore completed evaluation examples from leading AI systems to understand the evaluation process.
|
| 275 |
+
</p>
|
| 276 |
+
<Link
|
| 277 |
+
href="https://huggingface.co/spaces/evaleval/general-eval-card/tree/main/public/evaluations"
|
| 278 |
+
target="_blank"
|
| 279 |
+
className="inline-flex items-center gap-1 text-sm text-primary hover:underline"
|
| 280 |
+
>
|
| 281 |
+
View on Hugging Face
|
| 282 |
+
<ExternalLink className="h-3 w-3" />
|
| 283 |
+
</Link>
|
| 284 |
+
</div>
|
| 285 |
+
</div>
|
| 286 |
+
</div>
|
| 287 |
+
|
| 288 |
+
<div className="bg-muted/50 p-4 rounded-lg">
|
| 289 |
+
<h5 className="font-medium mb-2 text-sm">Contribute to the Framework</h5>
|
| 290 |
+
<p className="text-xs text-muted-foreground">
|
| 291 |
+
Our evaluation framework is open for community contributions. Use these schemas and examples to create your own evaluations,
|
| 292 |
+
or contribute improvements to help advance AI transparency and accountability standards.
|
| 293 |
+
</p>
|
| 294 |
+
</div>
|
| 295 |
+
</CardContent>
|
| 296 |
+
</Card>
|
| 297 |
+
|
| 298 |
<Separator />
|
| 299 |
|
| 300 |
<div className="text-center space-y-4">
|