TalGeva commited on
Commit
1cd59e3
1 Parent(s): 5d6c897

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +88 -3
README.md CHANGED
@@ -1,3 +1,88 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - he
5
+ ---# Coreference Project by
6
+
7
+ DDRND (Mafat) as part of the Israeli national NLP program (see our GitHub at https://nnlp-il.mafat.ai/#Our-Github)
8
+ and the Israeli Association of Human Language Technologies (https://www.iahlt.org)
9
+
10
+ ## Introduction
11
+
12
+ The coreference corpus is an extension of IAHLT's named entities dataset for
13
+ Hebrew and Arabic. This project is a work in progress, such that a subset of
14
+ articles (full-doc level) that are already annotated for entities are being
15
+ further annotated for (named) entity coreference.
16
+
17
+ The corpus consists of 1 apc articles from Youtube transcripts (0%); 201.
18
+ arb articles from the Kul al-Arab news organisation (96%), the All Rights.
19
+ entitlements organisation (0%), Weizmann popular science articles (2%);.
20
+ 657 heb articles from Bagatz court decisions (3%), Davar news organisation.
21
+ (75%), Israel Hayom news organisation (3%), Knesset protocols (1%),.
22
+ Weizmann popular science articles (4%), Hebrew Wikipedia entries (11%);.
23
+
24
+ The corpus, 1 paragraphs (apc), 2811 paragraphs (arb) and 9610 paragraphs
25
+ (heb), has been annotated with morpheme-level mention spans, assembled
26
+ into coreference clusters with entity types.
27
+
28
+ ## Data set
29
+
30
+ The current release includes the following files:
31
+
32
+ Annotated documents (.jsonl):
33
+
34
+ 1. data/coref-4-rc7-heb-all -- heb articles
35
+ 2. data/coref-4-rc7-heb-unique -- heb articles, each annotated once
36
+ 3. data/coref-4-rc7-heb-iaa -- heb articles, used for IAA
37
+
38
+ Additionally, all files are provided in a human-readable form (readable_data/*).
39
+
40
+ ## Format
41
+
42
+ Each article is a single json record. Some articles have been doubly-annotated
43
+ for the purposes of inter-annotator agreement study, their articles appear
44
+ multiple times.
45
+
46
+ The jsonl structure is:
47
+ ```
48
+ { text: str,
49
+ user: str,
50
+ metadata: { source: str, doc_id: str, ... },
51
+ clusters: [ {
52
+ metadata: { name: str, entity: str },
53
+ mentions: [ (int, int, dict) ]
54
+ } ]
55
+ }
56
+ ```
57
+
58
+ The `text` field contains the raw text of the original article. The top-level
59
+ `metadata` dictionary provides document-level metadata, minimally `source` and
60
+ `doc_id`.
61
+
62
+ The `clusters` field is a list of JSON cluster records each containing a
63
+ `metadata` and `mentions` field. The cluster-level `metadata` field has a name
64
+ for the cluster and its entity type. The `mentions` field is a list of triples:
65
+ the span indices of the text plus a metadata dictionary. We provide no
66
+ mention-level metadata in this release.
67
+
68
+ Not all clusters have been annotated for entity type; this will be completed in
69
+ a future release.
70
+
71
+ ## Acknowledgments
72
+
73
+ We would like to thank all the people who contributed to this corpus:
74
+
75
+ Amir Cohen
76
+ Amjad Aliat
77
+ Emmanuel Kowner
78
+ Israel Landau
79
+ Mutaz Ayesh
80
+ Nick Howell
81
+ Noam Ordan
82
+ Omer Strass
83
+ Shahar Adar
84
+ Shira Wigderson
85
+ Yifat Ben Moshe
86
+ amirejmail
87
+ hiba_ammash
88
+