-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathleaderboard.html
136 lines (130 loc) · 7.42 KB
/
leaderboard.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Leaderboard | ScienceQA: Science Question Answering</title>
<link rel="icon" href="img/logo.png" type="image/icon type">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/nav.css">
<link rel="stylesheet" href="css/leaderboard.css">
<script type="text/javascript" src="javascript/sort-table.js" defer></script>
<script type="text/javascript" src="javascript/leaderboard-data.js" defer></script>
<script type="text/javascript" src="javascript/leaderboard.js" defer></script>
</head>
<body>
<div id="nav">
<div id="icon">
<img src="img/logo.png" id="nav-icon">
<a class="nav-button" href="https://scienceqa.github.io/"
style="margin-left: 2px; font-size: 24px">ScienceQA
</a>
</div>
<div>
<a class="nav-button" href="index.html#home">Home</a>
<a class="nav-button" href="index.html#dataset">Dataset</a>
<a class="nav-button" href="index.html#download">Download</a>
<a class="nav-button" href="index.html#method">Method</a>
<a class="nav-button" href="index.html#paper">Paper</a>
<a class="nav-button" href="index.html#code">Code</a>
<a class="nav-button" href="index.html#citation">Citation</a>
<a class="nav-button" href="index.html#authors">Authors</a>
<a class="nav-button" href="index.html#contact">Contact</a>
<a class="nav-button" href="leaderboard.html">Leaderboard</a>
<a class="nav-button" href="explore.html">Explore</a>
<a class="nav-button" href="visualize.html">Visualize</a>
</div>
</div>
<div id="body">
<br><br><br><br>
<div class="section" style="width: 140%; margin-left: -20%">
<h1>Leaderboard - ScienceQA</h1>
<p>
Evaluation of different methods on the <strong>test</strong> split (whole: 4,241, mini: 1,000 examples).
The accuracies across various categories and the overall average are reported below.
</p>
<p>
😀 You are invited to contribute your results to the ScienceQA test split!
Please send your result scores to <a href="mailto:lupantech@gmail.com" class="ext-link">this email</a> or open a new issue at the <a href="https://github.com/lupantech/ScienceQA/issues" class="ext-link">github repository</a>.
<!-- Please fill in this <a href="https://forms.gle/mRv6CBe1MDh3m47ZA" class="ext-link">Google Form </a> to submit your results. -->
</p>
<p>
⚠️⚠️⚠️ Caveat: The data in the leaderboard is collected manually from existing papers. There might be some errors in the data, ambiguous data due to different interpretations, and missing data due to the lack of information in the papers. Make sure to double-check the data before using it. Please contact us at <a href="mailto:lupantech@gmail.com" class="ext-link">this email</a> if you find any errors or have any suggestions. We appreciate your contributions and feedback.
</p>
<!-- https://www.cssscript.com/sort-table-header-column/ -->
<table class="js-sort-table" id="results">
<thead>
<tr>
<td class="js-sort-number"><strong>#</strong></td>
<td class="js-sort"><strong>Model</strong></td>
<td class="js-sort"><strong>Method</strong></td>
<td class="js-sort"><strong>Learning</strong></td>
<td class="js-sort"><strong>#Size</strong></td>
<td class="js-sort"><strong>#P</strong></td>
<td class="js-sort"><strong>Link</strong></td>
<td class="js-sort"><strong>Date</strong></td>
<td class="js-sort"><strong>NAT</strong></td>
<td class="js-sort"><strong>SOC</strong></td>
<td class="js-sort"><strong>LAN</strong></td>
<td class="js-sort"><strong>TXT</strong></td>
<td class="js-sort"><strong>IMG</strong></td>
<td class="js-sort"><strong>NO</strong></td>
<td class="js-sort"><strong>G1-6</strong></td>
<td class="js-sort"><strong>G7-12</strong></td>
<td class="js-sort"><strong><u>Avg</u></strong></td>
</tr>
</thead>
<tbody>
</tbody>
</table>
<p>
<strong>Model names:</strong>
<li><strong>Q</strong>: question</li>
<li><strong>C</strong>: context</li>
<li><strong>M</strong>: multiple options</li>
<li><strong>A</strong>: answer</li>
<li><strong>AE</strong>: answer with explanation</li>
<li><strong>ALE</strong>: answer with lecture and explanation</li>
</li>
</p>
<p>
<strong>Method types:</strong>
<li><strong>VQA-NN</strong>: Standard neural network for visual question answering</li>
<li><strong>PLM</strong>: Pre-trained language model</li>
<li><strong>LLM</strong>: Large language model</li>
<li><strong>VLM</strong>: (Large) vision-language model / Large multimodal model / Multimodal large language model</li>
<li><strong>Tool-LLM</strong>: Tool-augmented large language model</li>
</li>
</p>
<p>
<strong>Learning:</strong>
<li><strong>Zero-shot</strong>: The model is evaluated in a zero-shot setting on ScienceQA</li>
<li><strong>Few-shot</strong>: The model is evaluated in a few-shot setting on ScienceQA</li>
<li><strong>Fine-tune</strong>: The model is fine-tuned on ScienceQA</li>
<li><strong>-</strong>: Not available</li>
</li>
</p>
<p>
<strong>#Size: Total number of parameters in the model</strong>
</p>
<p>
<strong>#P: Number of trainable parameters when fine-tuned on ScienceQA</strong>
</p>
<p>
<strong>Accuracies for different question sets:</strong>
<li><strong>NAT</strong>: questions of the natural science subject</li>
<li><strong>SOC</strong>: questions of the social science subject</li>
<li><strong>LAN</strong>: questions of the language science subject</li>
<li><strong>TXT</strong>: questions with the text context</li>
<li><strong>IMG</strong>: questions with the image context</li>
<li><strong>NO</strong>: questions with no context</li>
<li><strong>G1-6</strong>: questions in the grade group of 1-6</li>
<li><strong>G7-12</strong>: questions in the grade group of 7-12</li>
<li><strong>Avg</strong>: all questions (reporting the average accuracy)</li>
</li>
</p>
</div>
</div>
</body>
</html>