ildpil commited on
Commit
49b376b
·
verified ·
1 Parent(s): 9c9647f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -3
README.md CHANGED
@@ -1,3 +1,58 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - token-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - legal
9
+ pretty_name: TAB
10
+ size_categories:
11
+ - 1K<n<10K
12
+ ---
13
+
14
+ # Dataset Card for the Text Anonymization Benchmark (TAB)
15
+
16
+ ## Dataset Description
17
+
18
+ - **Repository:**
19
+ - **Paper:** [The Text Anonymization Benchmark (TAB): A Dedicated Corpus and Evaluation Framework for Text Anonymization](https://aclanthology.org/2022.cl-4.19/)
20
+ - **Point of Contact:** [Ildikó Pilán](mailto:pilan@nr.no), [Pierre Lison](mailto:pilan@nr.no)
21
+
22
+ ## Dataset Summary
23
+
24
+ This repository contains the v1.0 release of the Text Anonymization Benchmark, a corpus for text anonymization.
25
+ The corpus comprises 1,268 English-language court cases from the [European Court for Human Rights (ECHR)](https://www.echr.coe.int/). The documents were manually annotated with information about personal identifiers (including their semantic category and need for masking), confidential attributes and co-reference relations.
26
+
27
+ ## Data format
28
+ The data is distributed in a standoff JSON format consisting of a list of document object with the following information:
29
+
30
+ | Variable name | Description |
31
+ |---------------|-------------|
32
+ | annotations | an object with document annotations, each containing an object with entity mention annotations |
33
+ | dataset_type | which data split the court case belongs to (train /dev / test) |
34
+ | doc_id | the ID of the court case (e.g. “001-61807”) |
35
+ | meta | an object with metadata for each case (year, countries and legal articles involved etc.) |
36
+ | quality_checked | whether the document was revised by another annotator |
37
+ | task | the target of the anonymisation task (i.g. who to anonymise) |
38
+ | text | the text of the court case used during the annotation |
39
+
40
+ Each entity mention object under 'annotations' has the following attributes:
41
+
42
+ | Variable name | Description |
43
+ |---------------|-------------|
44
+ | entity_type | the semantic category of the entity (e.g. PERSON) |
45
+ | entity_mention_id | ID of the entity mention |
46
+ | start_offset | start character offset of the annotated span |
47
+ | end_offset | end character offset of the annotated span |
48
+ | span_text | the text of the annotated span |
49
+ | edit_type | type of annotator action for the mention (check / insert / correct) |
50
+ | identifier_type | the need for masking, masked if 'DIRECT' or 'QUASI', 'NO_MASK' otherwise |
51
+ | entity_id | ID of the entity the entity mention is related to in meaning |
52
+ | confidential_status | category of a potential source of discrimination (e.g. beliefs, sexual orientation etc.) |
53
+
54
+ ## License
55
+
56
+ TAB is released under an MIT License.
57
+
58
+ The MIT License is a short and simple permissive license allowing both commercial and non-commercial use of the software. The only requirement is to preserve the copyright and license notices (see file [License](https://github.com/NorskRegnesentral/text-anonymisation-benchmark/blob/master/LICENSE.txt)). Licensed works, modifications, and larger works may be distributed under different terms and without source code.