danielsteinigen commited on
Commit
29a2b6c
1 Parent(s): 96058a3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -77
README.md CHANGED
@@ -17,95 +17,47 @@ size_categories:
17
 
18
  ## Dataset Description
19
 
20
- - **Repository:** https://github.com/danielsteinigen/nlp-legal-texts
21
- - **Paper:**
22
- - **Leaderboard:**
23
- - **Point of Contact:**
24
-
25
- ### Dataset Summary
26
 
27
- This dataset card aims to be a base template for new datasets. It has been generated using [this raw template](https://github.com/huggingface/huggingface_hub/blob/main/src/huggingface_hub/templates/datasetcard_template.md?plain=1).
 
28
 
29
  ### Supported Tasks and Leaderboards
30
 
31
- [More Information Needed]
 
32
 
33
  ### Languages
34
 
35
- [More Information Needed]
36
 
37
  ## Dataset Structure
38
 
39
- ### Data Instances
40
-
41
- [More Information Needed]
42
-
43
  ### Data Fields
44
 
45
- [More Information Needed]
46
-
47
- ### Data Splits
48
-
49
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
 
51
  ## Dataset Creation
52
 
53
- ### Curation Rationale
54
-
55
- [More Information Needed]
56
-
57
- ### Source Data
58
-
59
- #### Initial Data Collection and Normalization
60
-
61
- [More Information Needed]
62
-
63
- #### Who are the source language producers?
64
-
65
- [More Information Needed]
66
-
67
- ### Annotations
68
-
69
- #### Annotation process
70
-
71
- [More Information Needed]
72
-
73
- #### Who are the annotators?
74
-
75
- [More Information Needed]
76
-
77
- ### Personal and Sensitive Information
78
-
79
- [More Information Needed]
80
-
81
- ## Considerations for Using the Data
82
-
83
- ### Social Impact of Dataset
84
-
85
- [More Information Needed]
86
-
87
- ### Discussion of Biases
88
-
89
- [More Information Needed]
90
-
91
- ### Other Known Limitations
92
-
93
- [More Information Needed]
94
-
95
- ## Additional Information
96
-
97
- ### Dataset Curators
98
-
99
- [More Information Needed]
100
-
101
- ### Licensing Information
102
-
103
- [More Information Needed]
104
-
105
- ### Citation Information
106
-
107
- [More Information Needed]
108
-
109
- ### Contributions
110
-
111
- [More Information Needed]
 
17
 
18
  ## Dataset Description
19
 
20
+ This dataset contains Key Figures with their properties from german tax acts. The dataset is annotated by tax experts and consists of 85 annotated paragraphs from 14 different German tax acts with 157 annotated tax key figures.
21
+ The annotation was performed based on a developed universally applicable annotation schema and a semantic model for key figures and their properties in legal texts.
22
+ More details about the schema and the semantic model can be found in our [Paper](https://ceur-ws.org/Vol-3441/paper7.pdf). There we also provide a knowledge graph populated from these annotated paragraphs.
 
 
 
23
 
24
+ - **Repository:** https://github.com/danielsteinigen/nlp-legal-texts
25
+ - **Paper:** https://ceur-ws.org/Vol-3441/paper7.pdf
26
 
27
  ### Supported Tasks and Leaderboards
28
 
29
+ - Entity Extraction
30
+ - Relation Extraction
31
 
32
  ### Languages
33
 
34
+ - German
35
 
36
  ## Dataset Structure
37
 
 
 
 
 
38
  ### Data Fields
39
 
40
+ - **id:** a unique ID of the data sample
41
+ - **law:** the abbreviation of the law from which this parapgraph originates
42
+ - **paragraph:** the title of the paragraph
43
+ - **text:** the actual text string of the paragraph
44
+ - **entities:** list of entity objects
45
+ - **relation:** list of relation objects
46
+
47
+ Entities:
48
+ - **id:** a unique ID of the entity
49
+ - **start:** start character offset of the entity
50
+ - **end:** end character offset of the entity
51
+ - **entity:** label/name of the entity
52
+ - **subclass:** entity subclass, if there is one, else NULL
53
+ - **text:** text string of the entity
54
+
55
+ Relations:
56
+ - **id:** a unique ID of the realation
57
+ - **head:** ID of the head entity
58
+ - **tail:** ID of the tail entity
59
+ - **relation:** label/name of the relation
60
 
61
  ## Dataset Creation
62
 
63
+ More details about the annotation process can be found in our [Paper](https://ceur-ws.org/Vol-3441/paper7.pdf).