ArneBinder commited on
Commit
82f7666
1 Parent(s): 17386ef

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -1
README.md CHANGED
@@ -2,4 +2,20 @@
2
  license: cc-by-sa-4.0
3
  ---
4
 
5
- This a argument structure prediction model for the scientific domain. It is a pointer network based on [A Generative Model for End-to-End Argument Mining with Reconstructed Positional Encoding and Constrained Pointer Mechanism (Bao et al., EMNLP 2022)](https://aclanthology.org/2022.emnlp-main.713/), but as a full reimplementation within the [PyTorch-IE](https://github.com/ArneBinder/pytorch-ie) framework. The actual source model code can be found in the [pie-modules](https://github.com/ArneBinder/pie-modules) repository. The model was trained with the [PyTorch-IE-Hydra-Template](https://github.com/ArneBinder/pytorch-ie-hydra-template-1) on the [SciArg dataset](https://aclanthology.org/W18-5206/), see [here](https://huggingface.co/datasets/pie/sciarg) for further information and an integration into [pie-datasets](https://github.com/ArneBinder/pie-datasets).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: cc-by-sa-4.0
3
  ---
4
 
5
+ This is an argument structure prediction model for the scientific domain. It is a pointer network based on
6
+ [A Generative Model for End-to-End Argument Mining with Reconstructed Positional Encoding and Constrained Pointer Mechanism
7
+ (Bao et al., EMNLP 2022)](https://aclanthology.org/2022.emnlp-main.713/). Given a plain input text, the model generates
8
+ in one go tuples that represent argumentative relations, e.g. of type `supports` or `attacks`, between a pair of
9
+ Argumentative Discourse Units (ADUs). Each ADU is defined by start- and end-offsets and a is also typed (`background_claim`,
10
+ `own_claim`, or `data`).
11
+
12
+ However, this is a full reimplementation of the model
13
+ within the [PyTorch-IE](https://github.com/ArneBinder/pytorch-ie) framework. The model source code can be
14
+ found in the [pie-modules](https://github.com/ArneBinder/pie-modules) repository. The model was trained with the
15
+ [PyTorch-IE-Hydra-Template](https://github.com/ArneBinder/pytorch-ie-hydra-template-1) on the
16
+ [SciArg dataset](https://aclanthology.org/W18-5206/), see [here](https://huggingface.co/datasets/pie/sciarg) for
17
+ further information and an integration into [pie-datasets](https://github.com/ArneBinder/pie-datasets). Further
18
+ information regarding the training setup and model performance can be found in the [config.yaml](config.yaml),
19
+ in the [wandb-metadata.json](wandb-metadata.json), and in [wandb-summary.json](wandb-summary.json).
20
+
21
+ You can try out the model in [this HF space](https://huggingface.co/spaces/ArneBinder/sam-pointer-bart-base-v0.3).