File size: 2,409 Bytes
1b4e151
 
 
 
 
 
cb96078
 
380762c
 
ba5059c
380762c
 
5fba404
 
 
 
 
 
 
 
dacd510
5fba404
aa4cc80
 
 
dacd510
aa4cc80
 
5fba404
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b720010
5fba404
 
380762c
5fba404
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: cc-by-nc-sa-4.0
language:
- fr
size_categories:
- 10K<n<100K
task_categories:
- text-classification
task_ids:
- entity-linking-classification
paperswithcode_id: larousse-1905-wd
tags:
- named-entity-linking
---
# Dataset Card for "larousse_1905_wd"
The *Petit Larousse illustré* is a French dictionary first published in 1905. 
Its division in two main parts on language and on history and geography corresponds to a major 
milestone in French lexicography as well as a repository of general knowledge from this period. 
This dataset connects all the entries of the history and geography part (named entities) 
to wikidata items.

See the paper, [Connecting a French Dictionary from the Beginning of the 20th Century to Wikidata](https://arxiv.org/abs/2206.11022) for a full description.

## Dataset Description

- **Repository:** https://github.com/pnugues/petit_larousse_1905
- **Paper:** https://arxiv.org/abs/2206.11022


### Data Instances
Each sample is a JSON dictionnary with the text of the entry and a list of wikidata identifiers, as for example:
```
{
  "texte": "AALI-PACHA, homme d'Etat turc, né à Constantinople. Il a attaché son nom à la politique de réformes du Tanzimat (1815-1871).", 
  "qid": ["Q439237"]
}
```
A few entries contain subentries, for instance dynasties, as for example:
```
{
  "texte": "ABAD Ier [bad'], premier roi maure de Séville, et chef de la dynastie des Abadites ;
            il régna de 1023 à 1042. — Son fils Abad II régna de 1042 à 1069,
            et son petit-fils, Abad III, de 1069 à 1095.""
  "qid": ["Q305795", "Q30556", "Q299578"]
}
```
The order of Wikidata identifiers in the `qid` list of  follows the entity sequence in the text.

### Data Fields
- `texte`: A `string` containing the text of the entry with possible subentries
- `qid`: a `list` of Wikidata identifiers represented as `string`s.


### Citation Information
```
@InProceedings{nugues:2022:LREC,
  author    = {Nugues, Pierre},
  title     = {Connecting a French Dictionary from the Beginning of the 20th Century to Wikidata},
  booktitle      = {Proceedings of the Language Resources and Evaluation Conference},
  month          = {June},
  year           = {2022},
  address        = {Marseille, France},
  publisher      = {European Language Resources Association},
  pages     = {2548--2555},
  url       = {https://aclanthology.org/2022.lrec-1.272}
}
```