-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (61 loc) · 2.05 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LVLM Tracker</title>
<style>
.responsive-iframe-container {
position: relative;
width: 100%;
height: 0;
padding-bottom: 56.25%;
/* 16:9 aspect ratio (change as needed) */
}
.responsive-iframe-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
table {
width: 80%;
border-collapse: collapse;
}
th,
td {
border: 1px solid black;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h1>LVLM Performance Tracker</h1>
<p>Welcome to the ultimate resource for tracking the performance of Large Vision Language Models (LVLMs) across a
set of benchmarks, focused on scientific content. The emphasis is on showcasing trends over time. Updated
regularly by automated script.</p>
<ul>
<li><a href="#mmmu1">1. MMMU-val Benchmark</a></li>
<li><a href="#mmmu2">2. MMMU-Pro Benchmark</a></li>
<li><a href="#mathvista">3. MathVista Benchmark</a></li>
</ul>
<h3 id="mmmu1"><a href="https://mmmu-benchmark.github.io/">1. MMMU-val Benchmark</a></h3>
<div class="responsive-iframe-container">
<iframe src="scatter_plot_mmmu_Val.html"></iframe>
</div>
<h3 id="mmmu2"><a href="https://mmmu-benchmark.github.io/">2. MMMU-Pro Benchmark</a></h3>
<div class="responsive-iframe-container">
<iframe src="scatter_plot_mmmu_Pro.html"></iframe>
</div>
<h3 id="mathvista"><a href="https://mathvista.github.io/">3. MathVista Benchmark</a></h3>
<div class="responsive-iframe-container">
<iframe src="scatter_plot_mathvista.html"></iframe>
</div>
</body>
</html>