File size: 3,976 Bytes
d2745ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
aa01a37
b05a730
 
 
 
 
0c73b24
 
b05a730
 
 
 
 
 
11bbf3c
 
 
 
 
 
 
 
b05a730
 
 
 
 
 
 
5060ed0
0c73b24
b05a730
 
 
 
11bbf3c
 
 
 
 
 
b05a730
 
52ee408
 
 
 
03ed4c8
52ee408
77edc98
3f44948
77edc98
 
 
 
 
52ee408
77edc98
52ee408
 
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
---
language:
- fr
pretty_name: BLiMP-fr French BLiMP
size_categories:
- 1K<n<10K
configs:
- config_name: anaphor_agreement
  data_files: "data/augmented_anaphor_agreement.csv"
- config_name: adjective_noun_agreement
  data_files: "data/augmented_adjective_noun_agreement.csv"
- config_name: determiner_noun_agreement
  data_files: "data/augmented_determiners.csv"
- config_name: binding
  data_files: "data/augmented_binding.csv"
- config_name: clitic_placement
  data_files: "data/augmented_clitic_placement.csv"
- config_name: auxiliary_agreement
  data_files: "data/augmented_auxiliary_agreement.csv"
- config_name: negation
  data_files: "data/augmented_negation.csv"
- config_name: subjunctive
  data_files: "data/augmented_subjunctive.csv"
---

**BLiMP-fr: French BLiMP**

**Dataset Description**
BLiMP-fr is a French adaptation of the BLiMP (Benchmark of Linguistic Minimal Pairs) suite, designed to evaluate language models’ 
grammatical knowledge through minimal-pair judgment tasks. Each example consists of two nearly identical French sentences 
- one grammatically correct, one incorrect - and the model’s task is to identify the correct one. 
The benchmark covers a range of syntactic and morphological phenomena, allowing for fine-grained analysis of a model’s 
linguistic competence in French.


**Dataset Structure**
BLiMP-fr contains eight distinct linguistic phenomena, each representing a specific area of French grammar that language models are tested on:

1. `Adjective–noun agreement` – Tests agreement in gender and number between adjectives and the nouns they modify.
2. `Anaphor agreement` – Evaluates correct agreement between pronouns (anaphors) and their antecedents.
3. `Auxiliary agreement` – Checks subject–auxiliary agreement in tense, number, and person.
4. `Binding` – Tests binding principles, e.g., correct reference of pronouns and reflexives within syntactic domains.
5. `Clitic placement` – Evaluates correct positioning of clitic pronouns in French sentences.
6. `Determiner-noun agreement` – Tests appropriate use and agreement of determiners with nouns.
7. `Negation` – Checks correct formation of negative constructions in French.
8. `Subjunctive` – Evaluates proper use of the subjunctive mood in subordinate clauses.

Each set contains minimal pairs (one grammatical, one ungrammatical) so models can be scored on their ability to select the correct form.

**Uses**

These eight phenomena were selected because many of them are typologically distinct from their English counterparts, 
enabling the evaluation to probe a model’s ability to adapt and generalize beyond the structures of its primary training language. 
By focusing on areas where French diverges substantially from English - such as adjective-noun, determiner-noun agreement and the 
subjunctive mood - the benchmark tests the extent to which a model can expand its grammatical competence by analogy to a typologically 
different language. This design also allows for the detection of cross-linguistic interference and the assessment of transfer effects, 
providing insight into how prior knowledge of English influences performance in French.

**Fields**
- **good_sentence**: The grammatical sentence
- **bad_sentence**: The ungrammatical sentence
- **good_cue**: The cue word in the grammatical sentence
- **bad_cue**: The cue word in the ungrammatical sentence
- **critical_region**: The critical region being tested
- **phenomenon**: The linguistic phenomenon being tested


**Data Source**
This dataset is derived from BLiMP-fr: https://github.com/elliepreed/BLiMP-FR.git

## Dataset Card Contact
- Elena Polyakova, ep757@cam.ac.uk

**Subsets**
You can load a subset like this:

```python
from datasets import load_dataset

# Load a specific subset
dataset = load_dataset("elliepreed/BLiMP-FR", data_files="data/augmented_adjective_noun_agreement.csv", split="train")

# Load all subsets
dataset = load_dataset("elliepreed/BLiMP-FR")