SilvioGiancola Homie0609 commited on
Commit
ddf4f63
Β·
verified Β·
1 Parent(s): 833337d

Create README.md (#2)

Browse files

- Create README.md (95aeabbeab2ab0bebcab0e723614de0a669c92c6)


Co-authored-by: Jiayuan Rao ι₯ΆηˆζΊ <[email protected]>

Files changed (1) hide show
  1. README.md +49 -0
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-4.0
3
+ ---
4
+ # 2026 Soccernet Challenge - VQA Overview
5
+
6
+ ## Task
7
+ Soccernet-VQA is a challenge focused on **multimodal (text, image, video) multiple-choice question answering**, covering 14 distinct soccer understanding tasks. These tasks include assessing background knowledge of players and teams, determining camera status, classifying actions, recognizing fouls, and many other complex scenarios.
8
+
9
+ More details could be found at:
10
+
11
+ - πŸ† 2026 SoccerNet Challenge - VQA: [DevKit](https://github.com/jyrao/SoccerAgent) β‹… [Rules](https://github.com/jyrao/SoccerAgent/blob/main/Challenge.md) β‹… [Eval (Test)](https://www.codabench.org/competitions/11086/#/results-tab) β‹… [Eval (Challenge)](https://www.codabench.org/competitions/11087/)
12
+ - πŸ“‘ Paper Relevant Links: [WebPage](https://jyrao.github.io/SoccerAgent) β‹… [Benchmark](https://huggingface.co/datasets/Homie0609/SoccerBench) β‹… [Database](https://huggingface.co/datasets/Homie0609/SoccerWiki)
13
+
14
+ ## Data
15
+ Both the test phase and challenge phase are supported by 500 unique QA pairs, which span all 14 aforementioned tasks. You can download the test set and challenge set on this [huggingface page](https://huggingface.co/datasets/SoccerNet/SN-VQA-2026).
16
+
17
+ Each QA pair contains three core components in its dictionary:
18
+
19
+ - *`Q`*: The question content.
20
+ - *`materials`*: Paths to relevant images or videos.
21
+ - *`Ox`* (e.g., O1, O2): The multiple-choice options.
22
+
23
+ An example of a QA pair is shown below:
24
+
25
+ ```
26
+ {
27
+ "Q": "How many appearances did the midfielder who is replacing Antoine Griezmann in this video make for Atletico Madrid from 2002 to 2018?",
28
+ "materials": [
29
+ "materials/q12/SoccerReplay-1988/europe_champions-league_2023-2024/2023-11-07_atletico-de-madrid-celtic-fc-champions-league/2_19_01.mp4"
30
+ ],
31
+ "O1": "25 appearances",
32
+ "O2": "7 appearances",
33
+ "O3": "18 appearances",
34
+ "O4": "13 appearances"
35
+ }
36
+ ```
37
+
38
+ ## Evaluation
39
+ As for this close-ended QA task, we directly use the accuracy as the evaluation metric:
40
+
41
+ $$
42
+ \text{score} = \frac{\text{number of correct answers}}{500}
43
+ $$
44
+
45
+ ## Baseline
46
+ To facilitate benchmarking, we provide two frequently used models (**Qwen2.5VL** and **GPT-4o**) to infer directly as our baselines. Also, the SoccerAgent pipeline with multi-agent thoughts could be regarded as baseline as well, they can all be found in our [Official Github Repo](https://github.com/jyrao/SoccerAgent).
47
+
48
+ ## Prize
49
+ The Rank 1 submission of the challenge set can finally win the $1000 prize sponsored by [KNQ Technology](https://knq.ai/).