ArneBinder commited on
Commit
171478c
·
verified ·
1 Parent(s): 68770c9

https://github.com/ArneBinder/pie-datasets/pull/163

Browse files
Files changed (2) hide show
  1. README.md +6 -6
  2. sciarg.py +1 -1
README.md CHANGED
@@ -136,8 +136,8 @@ possibly since [Lauscher et al., 2018](https://aclanthology.org/W18-5206/) prese
136
 
137
  | Relations | Count | Percentage |
138
  | -------------------------- | ----: | ---------: |
139
- | support: `support` | 5789 | 74.0 % |
140
- | attack: `contradict` | 696 | 8.9 % |
141
  | other: `semantically_same` | 44 | 0.6 % |
142
  | other: `parts_of_same` | 1298 | 16.6 % |
143
  | total | 7827 | 100.0 % |
@@ -146,17 +146,17 @@ possibly since [Lauscher et al., 2018](https://aclanthology.org/W18-5206/) prese
146
 
147
  | Relations | Count | Percentage |
148
  | -------------------------- | ----: | ---------: |
149
- | support: `support` | 5788 | 88.7 % |
150
- | attack: `contradict` | 696 | 10.7 % |
151
  | other: `semantically_same` | 44 | 0.7 % |
152
  | total | 6528 | 100.0 % |
153
 
154
  ##### Argumentative relations
155
 
156
- - `support`:
157
  - if the assumed veracity of *b* increases with the veracity of *a*
158
  - "Usually, this relationship exists from data to claim, but in many cases a claim might support another claim. Other combinations are still possible." - (*Annotation Guidelines*, p. 3)
159
- - `contradict`:
160
  - if the assumed veracity of *b* decreases with the veracity of *a*
161
  - It is a **bi-directional**, i.e., symmetric relationship.
162
 
 
136
 
137
  | Relations | Count | Percentage |
138
  | -------------------------- | ----: | ---------: |
139
+ | support: `supports` | 5789 | 74.0 % |
140
+ | attack: `contradicts` | 696 | 8.9 % |
141
  | other: `semantically_same` | 44 | 0.6 % |
142
  | other: `parts_of_same` | 1298 | 16.6 % |
143
  | total | 7827 | 100.0 % |
 
146
 
147
  | Relations | Count | Percentage |
148
  | -------------------------- | ----: | ---------: |
149
+ | support: `supports` | 5788 | 88.7 % |
150
+ | attack: `contradicts` | 696 | 10.7 % |
151
  | other: `semantically_same` | 44 | 0.7 % |
152
  | total | 6528 | 100.0 % |
153
 
154
  ##### Argumentative relations
155
 
156
+ - `supports`:
157
  - if the assumed veracity of *b* increases with the veracity of *a*
158
  - "Usually, this relationship exists from data to claim, but in many cases a claim might support another claim. Other combinations are still possible." - (*Annotation Guidelines*, p. 3)
159
+ - `contradicts`:
160
  - if the assumed veracity of *b* decreases with the veracity of *a*
161
  - It is a **bi-directional**, i.e., symmetric relationship.
162
 
sciarg.py CHANGED
@@ -35,7 +35,7 @@ def get_common_converter_pipeline_steps(target_document_type: type[Document]) ->
35
  trim_adus=TextSpanTrimmer(layer="labeled_spans"),
36
  sort_symmetric_relation_arguments=RelationArgumentSorter(
37
  relation_layer="binary_relations",
38
- label_whitelist=["parts_of_same", "semantically_same"],
39
  ),
40
  )
41
 
 
35
  trim_adus=TextSpanTrimmer(layer="labeled_spans"),
36
  sort_symmetric_relation_arguments=RelationArgumentSorter(
37
  relation_layer="binary_relations",
38
+ label_whitelist=["parts_of_same", "semantically_same", "contradicts"],
39
  ),
40
  )
41