lmoncla commited on
Commit
6ed8830
·
verified ·
1 Parent(s): d5d5aa6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -3
README.md CHANGED
@@ -1,3 +1,70 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - fr
7
+ pretty_name: GeoEDdA-TopoRel
8
+ ---
9
+
10
+ # GeoEDdA-TopoRel
11
+
12
+
13
+ ## Dataset Description
14
+
15
+ <!-- Provide a longer summary of what this model is. -->
16
+
17
+ - **Authors:** Bin Yang, [Ludovic Moncla](https://ludovicmoncla.github.io), [Fabien Duchateau](https://perso.liris.cnrs.fr/fabien.duchateau/) and [Frédérique Laforest](https://perso.liris.cnrs.fr/flaforest/) in the framework of the [ECoDA](https://liris.cnrs.fr/projet-institutionnel/fil-2025-projet-ecoda) project.
18
+ - **Data source:** [ARTFL Encyclopédie Project](https://artfl-project.uchicago.edu), University of Chicago
19
+ - **Git repository:** []()
20
+ - **Language:** French
21
+ - **License:** cc-by-nc-4.0
22
+
23
+
24
+ ### Dataset Summary
25
+
26
+ This dataset contains 2,750 labeled entries from the Encyclopédie of Diderot and d’Alembert, all classified under Geography.
27
+ The GeoEDdA-TopoRel dataset provides a set of features used at different stages of our knowledge graph construction pipeline, which is illustrated in the figure below.
28
+
29
+ <img src="EDdA2KG-pipeline.png">
30
+
31
+ ### Supported Tasks
32
+
33
+
34
+
35
+ ## Dataset Structure
36
+
37
+ The dataset is provided as JSON files where each item follows the following structure:
38
+
39
+ ```
40
+ {
41
+ "volume": "17",
42
+ "numero": "2303",
43
+ "head": "TRÉVOUX",
44
+ "text": "TRÉVOUX, (Géog. mod.) ancienne petite ville de France, <...> ",
45
+ "entryType": "Place",
46
+ "cardinality": "single"
47
+ "placeType": "Ville"
48
+ "placeNames": [{"start": 48, "end": 54, "text": "France", "label": "Pays"}, {"start": 86, "end": 92, "text": "Dombes", "label": "Région"}, {"start": 118, "end": 126, "text": "la Saône", "label": "Rivière"}, <...>],
49
+ "spatialRelations": [{"start": 94, "end": 117, "text": "sur le bord oriental de la Saône", "label": "Adjacence"} ]
50
+ "segmentedDescriptions": "[]"
51
+ }
52
+ ```
53
+
54
+ Each data contains ten fields:
55
+
56
+ - `volume`: volume number of the entry from the Encyclopedie ARTFL dataset
57
+ - `numero`: number of the entry (within the volume) from the Encyclopedie ARTFL dataset
58
+ - `head`: entry name
59
+ - `text`: plain text of the entry
60
+ - "entryType": type of geography entry, possible values are: `Place`, `Person`, `Autre`
61
+ - "cardinality": indicates whether the entry describes a single place or multiple places. Possible values: `single` or `multiple`
62
+ - "placeType": "Ville"
63
+ - "placeNames": [{"start": 48, "end": 54, "text": "France", "label": "Pays"}, {"start": 86, "end": 92, "text": "Dombes", "label": "Région"}, {"start": 118, "end": 126, "text": "la Saône", "label": "Rivière"}, <...>],
64
+ - "spatialRelations": [{"start": 94, "end": 117, "text": "sur le bord oriental de la Saône", "label": "Adjacence"} ]
65
+ - "segmentedDescriptions": list of segmented sub-entries if cardinality is equal to `multiple`, empty list otherwise.
66
+
67
+
68
+ ## Acknowledgement
69
+
70
+ The authors thank the [Computer Science Federation of Lyon (FIL)](https://fil.cnrs.fr) of the CNRS for financially supporting the ECoDA research project.