File size: 2,214 Bytes
730fd0b
2ae7a8c
 
 
 
 
 
 
 
 
 
 
 
 
 
730fd0b
2ae7a8c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
pretty_name: Nordet Social Cognition Benchmark
language:
  - fr
  - en
task_categories:
  - question-answering
  - visual-question-answering
tags:
  - benchmark
  - social-cognition
  - quebec
  - multimodal
size_categories:
  - n<1K
---

# Nordet Social Cognition Benchmark

Nordet evaluates social cognition in culturally and historically situated Quebec contexts.
It contains 381 challenge and control examples across four tasks:

- literal vs. intent;
- historical and social inference;
- communication adaptation;
- cultural understanding.

The dataset combines text, transcribed spoken language, and 57 embedded images. Questions are
provided in French and English. Every row includes a reference answer, source citation, and a
reproducible LLM-as-a-judge prompt template.

## Loading

```python
from datasets import load_dataset

dataset = load_dataset("Pythonner/nordet", split="train")
```

For multimodal examples, `image` is decoded as a PIL image. Text-only examples contain `None`.
The `messages` column follows the Hugging Face conversational vision format; an image content
marker identifies where the corresponding `image` belongs in the user message.

## Variants

The `variant` column distinguishes `challenge` from `control`. Controls preserve the general
question and evaluation shape while reducing the culturally situated social inference required.

## Evaluation

Replace `{response_text}` in `llm_as_a_judge_prompt_template` with the evaluated model response:

```python
judge_prompt = row["llm_as_a_judge_prompt_template"].replace(
    "{response_text}", model_response
)
```

The template requests a structured result for every criterion. Reference answers are included in
the criteria where the original Kaggle benchmark used them for judge calibration.

## Sources and rights

Questions were authored for Nordet. Reference answers are grounded in the cited source material.
Images retain their original source URLs and should be used according to the rights identified by
their respective source repositories, including BAnQ and Wikimedia Commons.

See the final project writeup:
<https://www.kaggle.com/competitions/kaggle-measuring-agi/writeups/nordet-social-cognition-benchmark>