pnugues commited on
Commit
d14c392
·
verified ·
1 Parent(s): 9d8f24c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -1
README.md CHANGED
@@ -16,7 +16,7 @@ tags:
16
  # Dataset Card for "diderot_1751_wd"
17
 
18
  Diderot’s *Encyclopédie* is a reference work from XVIIIth century in Europe that aimed at collecting
19
- the knowledge of its era. This dataset contains 10,400 annotated entries of the *Encyclopédie* with Wikidata identifiers
20
  enabling us to connect these entries to the Wikidata graph.
21
 
22
  See the paper, [Linking Named Entities in Diderot's *Encyclopédie* to Wikidata](https://arxiv.org/abs/2406.03221) for a full description.
@@ -25,3 +25,48 @@ See the paper, [Linking Named Entities in Diderot's *Encyclopédie* to Wikidata]
25
 
26
  - **Repository:** https://github.com/pnugues/encyclopedie_1751/
27
  - **Paper:** https://arxiv.org/abs/2406.03221
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  # Dataset Card for "diderot_1751_wd"
17
 
18
  Diderot’s *Encyclopédie* is a reference work from XVIIIth century in Europe that aimed at collecting
19
+ the knowledge of its era. This dataset contains 10,400 annotated geographical entries of the *Encyclopédie* with Wikidata identifiers
20
  enabling us to connect these entries to the Wikidata graph.
21
 
22
  See the paper, [Linking Named Entities in Diderot's *Encyclopédie* to Wikidata](https://arxiv.org/abs/2406.03221) for a full description.
 
25
 
26
  - **Repository:** https://github.com/pnugues/encyclopedie_1751/
27
  - **Paper:** https://arxiv.org/abs/2406.03221
28
+
29
+ ### Data Instances
30
+ Each sample is a JSON dictionnary with the headword, the entry ID in the [ENCCRE](http://enccre.academie-sciences.fr/encyclopedie/) nomenclature,
31
+ the text of the entry and a list of wikidata identifiers, as for example:
32
+ ```
33
+ {
34
+ "vedette": "AGREDA",
35
+ "entreeid": "v1-868-0",
36
+ "texte": "AGREDA, (Géog.)\u200b ville d’Espagne dans la vieille Castille. Long. 15-54. lat. 41-53."",
37
+ "qid": ["Q39856"]}
38
+ }
39
+ ```
40
+ A few entries contain subentries corresponding to names of persons as for example:
41
+ ```
42
+ {
43
+ "vedette": "GRENOBLE",
44
+ "entreeid": "v7-1475-0",
45
+ "texte": "GRENOBLE, Gratianopolis, (Géogr.)\u200b ancienne ville de France, capitale du Dauphiné, avec un évêché suffragant de Vienne, & un parlement érigé en 1493 par Louis XI. qui n’étoit encore que dauphin ; ...
46
+ On met au nombre des jurisconsultes dont Grenoble est la patrie, Pape (Guy), qui mourut en 1487 ; son recueil de décisions des plus belles questions de droit, n’est pas encore tombé dans l’oubli.\n\n\n
47
+ M. de Bouchenu de Valbonnais, (Jean Pierre Moret) premier président du parlement de Grenoble, né dans cette ville le 23 Juin 1651, mérite le titre du plus savant historiographe de son pays, ... (D. J.)\u200b',
48
+ "qid": ["Q1289", "Q41617345", "Q3169582"]
49
+ }
50
+ ```
51
+ The order of Wikidata identifiers in the `qid` list of follows the entity sequence in the text.
52
+
53
+ ### Data Fields
54
+ - `vedette`: A `string` containing the entry headword
55
+ - `entreeid`: The entry ID in the [ENCCRE](http://enccre.academie-sciences.fr/encyclopedie/) nomenclature
56
+ - `texte`: A `string` containing the text of the entry with possible subentries
57
+ - `qid`: A `list` of Wikidata identifiers represented as `string`s.
58
+
59
+
60
+ ### Citation Information
61
+ ```
62
+ @InProceedings{nugues:2024:LREC,
63
+ author = {Nugues, Pierre},
64
+ title = {Linking Named Entities in Diderot's Encyclopédie to Wikidata},
65
+ booktitle = {Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024)},
66
+ month = {May},
67
+ year = {2024},
68
+ address = {Torino, Italy},
69
+ pages = {10610--10615},
70
+ publisher = {ELRA and ICCL},
71
+ }
72
+ ```