PIE Dataset Card for "argmicro"
This is a PyTorch-IE wrapper for the ArgMicro Huggingface dataset loading script.
Dataset Variants
The dataset contains two BuilderConfig
's:
de
: with the original texts collection in Germanen
: with the English-translated texts
Data Schema
The document type for this dataset is ArgMicroDocument
which defines the following data fields:
text
(str)id
(str, optional)topic_id
(str, optional)metadata
(dictionary, optional)
and the following annotation layers:
stance
(annotation type:Label
)- description: A document may contain one of these
stance
labels:pro
,con
,unclear
, or no label when it is undefined (see here for reference).
- description: A document may contain one of these
edus
(annotation type:Span
, target:text
)adus
(annotation type:LabeledAnnotationCollection
, target:edus
)- description: each element of
adus
may consist of several entries fromedus
, so we requireLabeledAnnotationCollection
as annotation type. This is originally indicated byseg
edges in the data. LabeledAnnotationCollection
has the following fields:annotations
(annotation type:Span
, target:text
)label
(str, optional), values:opp
,pro
(see here)
- description: each element of
relations
(annotation type:MultiRelation
, target:adus
)- description: Undercut (
und
) relations originally target other relations (i.e. edges), but we let them target thehead
of the targeted relation instead. The original state can be deterministically reconstructed by taking the label into account. Furthermore, the head of additional source (add
) relations are integrated into the head of the target relation (note that this propagates alongund
relations). We model this withMultiRelation
s whosehead
andtail
are of typeLabeledAnnotationCollection
. MultiRelation
has the following fields:head
(tuple, annotation type:LabeledAnnotationCollection
, target:adus
)tail
(tuple, annotation type:LabeledAnnotationCollection
, target:adus
)label
(str, optional), values:sup
,exa
,reb
,und
(see here for reference, but note that helper relationsseg
andadd
are not there anymore, see above).
- description: Undercut (
See here for the annotation type definitions.
Document Converters
The dataset provides document converters for the following target document types:
pytorch_ie.documents.TextDocumentWithLabeledSpansAndBinaryRelations
LabeledSpans
, converted fromArgMicroDocument
'sadus
- labels:
opp
,pro
- if an ADU contains multiple spans (i.e. EDUs), we take the start of the first EDU and the end of the last EDU as the boundaries of the new
LabeledSpan
. We also raise exceptions if any newly createdLabeledSpan
s overlap.
- labels:
BinraryRelations
, converted fromArgMicroDocument
'srelations
- labels:
sup
,reb
,und
,joint
,exa
- if the
head
ortail
consists of multipleadus
, then we buildBinaryRelation
s with allhead
-tail
combinations and take the label from the original relation. Then, we buildBinaryRelations
' with labeljoint
between each component that previously belongs to the samehead
ortail
, respectively.
- labels:
metadata
, we keep theArgMicroDocument
'smetadata
, butstance
andtopic_id
.
See here for the document type definitions.