File size: 2,244 Bytes
99bee48 657ccfe 99bee48 657ccfe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
---
license: cc-by-nc-sa-4.0
language:
- es
pretty_name: AbstRCT-ES
---
---
dataset_info:
- config_name: es
data_files:
- split: neoplasm_train
path: es/neoplasm_train-*
- split: neoplasm_dev
path: es/neoplasm_dev-*
- split: neoplasm_test
path: es/neoplasm_test-*
- split: glaucoma_test
path: es/glaucoma_test-*
- split: mixed_test
path: es/mixed_test-*
license: apache-2.0
task_categories:
- token-classification
language:
- es
tags:
- biology
- medical
pretty_name: AbstRCT-ES
---
<p align="center">
<br>
<img src="http://www.ixa.eus/sites/default/files/anitdote.png" style="width: 30%;">
<h2 align="center">AbstRCT-ES</h2>
<be>
We translate the [AbstRCT English Argument Mining Dataset](https://gitlab.com/tomaye/abstrct) to generate a parallel Spanish version
using DeepL; labels are projected using [Easy Label Projection](https://github.com/ikergarcia1996/Easy-Label-Projection) and manually corrected.
- ๐ Paper: [Crosslingual Argument Mining in the Medical Domain](https://arxiv.org/abs/2301.10527)
- ๐ Project Website: [https://univ-cotedazur.eu/antidote](https://univ-cotedazur.eu/antidote)
- Code: [https://github.com/ragerri/abstrct-projections/tree/final](https://github.com/ragerri/abstrct-projections/tree/final)
- Funding: CHIST-ERA XAI 2019 call. Antidote (PCI2020-120717-2) funded by MCIN/AEI /10.13039/501100011033 and by European Union NextGenerationEU/PRTR
## Labels
```python
{
"O": 0,
"B-Claim": 1,
"I-Claim": 2,
"B-Premise": 3,
"I-Premise": 4,
}
```
A `claim` is a concluding statement made by the author about the outcome of the study. In the medical domain it may be an assertion of a diagnosis or a treatment.
A `premise` corresponds to an observation or measurement in the study (ground truth), which supports or attacks another argument component, usually a claim.
It is important that they are observed facts, therefore, credible without further evidence.
## Citation
````bibtex
@misc{yeginbergen2024crosslingual,
title={Cross-lingual Argument Mining in the Medical Domain},
author={Anar Yeginbergen and Rodrigo Agerri},
year={2024},
eprint={2301.10527},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
``` |