-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenchmarks.html
More file actions
224 lines (214 loc) · 11.9 KB
/
benchmarks.html
File metadata and controls
224 lines (214 loc) · 11.9 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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Benchmarks - SGIWorld</title>
<meta name="description" content="Evaluation Benchmarks for Scientific General Intelligence">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: ['class', '[data-theme="dark"]'],
theme: {
extend: {
fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'] },
colors: { sfe: '#10b981', sgi: '#6366f1', claw: '#f59e0b', seevo: '#06b6d4', mark: '#ec4899' }
}
}
}
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
<style>
.bench-nav {
display: flex;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
}
.bench-btn {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 1rem 1.5rem;
border-radius: 0.75rem;
font-weight: 600;
transition: all 0.2s;
text-decoration: none;
border: 2px solid transparent;
}
.bench-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px -5px rgba(0,0,0,0.1);
}
.bench-btn .icon {
width: 2.5rem;
height: 2.5rem;
border-radius: 0.5rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
}
.bench-btn-sgi { background: rgba(99, 102, 241, 0.1); border-color: rgba(99, 102, 241, 0.3); color: var(--color-text); }
.bench-btn-sgi:hover { background: rgba(99, 102, 241, 0.15); border-color: #6366f1; }
.bench-btn-sgi .icon { background: #6366f1; color: white; }
.bench-btn-claw { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.3); color: var(--color-text); }
.bench-btn-claw:hover { background: rgba(245, 158, 11, 0.15); border-color: #f59e0b; }
.bench-btn-claw .icon { background: #f59e0b; color: white; }
.bench-btn-sfe { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3); color: var(--color-text); }
.bench-btn-sfe:hover { background: rgba(16, 185, 129, 0.15); border-color: #10b981; }
.bench-btn-sfe .icon { background: #10b981; color: white; }
</style>
</head>
<body class="font-sans antialiased">
<!-- Navigation -->
<nav id="navbar" class="fixed top-0 left-0 right-0 z-50 transition-all duration-300 scrolled">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<a href="index.html" class="flex items-center space-x-2">
<img src="favicon.svg" alt="SGIWorld" class="w-8 h-8">
<span class="text-xl font-bold">SGI<span class="text-seevo">World</span></span>
</a>
<div class="hidden md:flex items-center space-x-8">
<a href="index.html" class="nav-link">Home</a>
<a href="probe.html" class="nav-link">Probe</a>
<a href="benchmarks.html" class="nav-link active">Benchmarks</a>
<a href="seevomap.html" class="nav-link">Environment</a>
<a href="markscientist.html" class="nav-link">Coach</a>
<a href="research.html" class="nav-link">Research</a>
<a href="news.html" class="nav-link">News</a>
<a href="contact.html" class="nav-link">Contact</a>
</div>
<div class="flex items-center space-x-4">
<button id="theme-toggle" class="p-2 rounded-lg hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors">
<i class="fas fa-moon text-lg theme-icon-dark hidden"></i>
<i class="fas fa-sun text-lg theme-icon-light hidden"></i>
</button>
<a href="https://github.com/InternScience" target="_blank" class="p-2 rounded-lg hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors">
<i class="fab fa-github text-lg"></i>
</a>
<button id="mobile-menu-btn" class="md:hidden p-2 rounded-lg hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors">
<i class="fas fa-bars text-lg"></i>
</button>
</div>
</div>
</div>
<div id="mobile-menu" class="hidden md:hidden glass-bg">
<div class="px-4 py-4 space-y-2">
<a href="index.html" class="block px-4 py-2 rounded-lg hover:bg-gray-200 dark:hover:bg-gray-700">Home</a>
<a href="probe.html" class="block px-4 py-2 rounded-lg hover:bg-gray-200 dark:hover:bg-gray-700">Probe</a>
<a href="benchmarks.html" class="block px-4 py-2 rounded-lg bg-gray-200 dark:bg-gray-700">Benchmarks</a>
<a href="seevomap.html" class="block px-4 py-2 rounded-lg hover:bg-gray-200 dark:hover:bg-gray-700">Environment</a>
<a href="markscientist.html" class="block px-4 py-2 rounded-lg hover:bg-gray-200 dark:hover:bg-gray-700">Coach</a>
<a href="research.html" class="block px-4 py-2 rounded-lg hover:bg-gray-200 dark:hover:bg-gray-700">Research</a>
<a href="news.html" class="block px-4 py-2 rounded-lg hover:bg-gray-200 dark:hover:bg-gray-700">News</a>
<a href="contact.html" class="block px-4 py-2 rounded-lg hover:bg-gray-200 dark:hover:bg-gray-700">Contact</a>
</div>
</div>
</nav>
<!-- Page Header with Navigation -->
<section class="pt-32 pb-8 relative overflow-hidden">
<div class="dot-grid absolute inset-0"></div>
<div class="absolute inset-0 bg-gradient-to-br from-blue-500/5 via-transparent to-purple-500/5"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="text-center animate-fade-in-up mb-12">
<h1 class="text-4xl sm:text-5xl font-bold mb-4">
<span class="gradient-text">Evaluation Benchmarks</span>
</h1>
<p class="text-lg text-muted max-w-2xl mx-auto">
Comprehensive benchmarks for AI-driven scientific research
</p>
</div>
<!-- Benchmark Navigation Buttons -->
<div class="bench-nav">
<a href="sgi-bench.html" class="bench-btn bench-btn-sgi">
<span class="icon"><i class="fas fa-brain"></i></span>
<div>
<div class="text-lg">SGI-Bench</div>
<div class="text-sm opacity-70 font-normal">Scientific General Intelligence</div>
</div>
<i class="fas fa-chevron-right ml-2 opacity-50"></i>
</a>
<a href="researchclawbench.html" class="bench-btn bench-btn-claw">
<span class="icon"><i class="fas fa-flask-vial"></i></span>
<div>
<div class="text-lg">ResearchClawBench</div>
<div class="text-sm opacity-70 font-normal">End-to-End Auto-Research</div>
</div>
<i class="fas fa-chevron-right ml-2 opacity-50"></i>
</a>
<a href="https://huggingface.co/datasets/InternScience/SFE" target="_blank" class="bench-btn bench-btn-sfe">
<span class="icon"><i class="fas fa-atom"></i></span>
<div>
<div class="text-lg">SFE</div>
<div class="text-sm opacity-70 font-normal">Scientific Frontier Evaluation</div>
</div>
<i class="fas fa-external-link-alt ml-2 opacity-50"></i>
</a>
</div>
</div>
</section>
<!-- Benchmark Features -->
<section class="py-16 bg-alt">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12 animate-on-scroll">
<h2 class="text-2xl sm:text-3xl font-bold mb-4">Why Our Benchmarks?</h2>
<p class="text-lg text-muted max-w-3xl mx-auto">
SGIWorld provides a comprehensive suite of benchmarks designed to evaluate AI systems across the full spectrum of scientific capabilities — from knowledge understanding to autonomous research execution.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 animate-on-scroll" style="--delay: 0.1s">
<div class="feature-card">
<div class="feature-icon bg-blue-500/10 text-blue-500">
<i class="fas fa-user-graduate text-xl"></i>
</div>
<h3 class="font-bold mb-2">Scientist-Aligned</h3>
<p class="text-muted text-sm">Benchmarks co-designed with domain scientists to ensure real-world relevance and scientific rigor</p>
</div>
<div class="feature-card">
<div class="feature-icon bg-purple-500/10 text-purple-500">
<i class="fas fa-layer-group text-xl"></i>
</div>
<h3 class="font-bold mb-2">Multi-Disciplinary</h3>
<p class="text-muted text-sm">Spanning physics, chemistry, biology, materials science, and cross-disciplinary challenges</p>
</div>
<div class="feature-card">
<div class="feature-icon bg-orange-500/10 text-orange-500">
<i class="fas fa-tasks text-xl"></i>
</div>
<h3 class="font-bold mb-2">End-to-End Evaluation</h3>
<p class="text-muted text-sm">Complete research workflow assessment from literature review to experimental validation</p>
</div>
<div class="feature-card">
<div class="feature-icon bg-cyan-500/10 text-cyan-500">
<i class="fas fa-chart-line text-xl"></i>
</div>
<h3 class="font-bold mb-2">Dynamic Leaderboards</h3>
<p class="text-muted text-sm">Real-time tracking of model performance with detailed breakdowns by capability</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 bg-alt border-t border-gray-200 dark:border-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row items-center justify-between gap-2">
<div class="flex items-center gap-2">
<img src="favicon.svg" alt="SGIWorld" class="w-5 h-5">
<span class="font-semibold text-sm">SGI<span class="text-seevo">World</span></span>
</div>
<p class="text-xs text-muted">© 2024-2026 SGIWorld. All rights reserved.</p>
<a href="https://github.com/InternScience" target="_blank" class="text-muted hover:text-primary transition-colors">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>