Datasets:
File size: 4,255 Bytes
07e2405 9d042c0 9768c53 07e2405 453fc96 172f2fa 453fc96 172f2fa 453fc96 172f2fa 453fc96 172f2fa 453fc96 172f2fa 453fc96 172f2fa 453fc96 172f2fa 453fc96 172f2fa 453fc96 172f2fa 453fc96 9768c53 453fc96 42938b5 9768c53 98355e3 9768c53 98355e3 9768c53 |
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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
---
arxiv: 2210.12623
paperswithcode_id: aspect-based-sentiment-analysis
license: apache-2.0
configs:
- config_name: en
data_files:
- split: train
path: en.ote.train.json
- split: test
path: en.ote.test.json
- config_name: es
data_files:
- split: train
path: es.ote.train.json
- split: test
path: es.ote.test.json
- config_name: fr
data_files:
- split: train
path: fr.ote.train.json
- split: test
path: fr.ote.test.json
- config_name: ru
data_files:
- split: train
path: ru.ote.train.json
- split: test
path: ru.ote.test.json
- config_name: tr
data_files:
- split: train
path: tr.ote.train.json
task_categories:
- token-classification
language:
- en
- fr
- es
- ru
- tr
tags:
- opinion
- target
- absa
- aspect
- sentiment analysis
pretty_name: Multilingual Opinion Target Extraction
size_categories:
- 1K<n<10K
---
This repository contains the English '[SemEval-2014 Task 4: Aspect Based Sentiment Analysis](https://aclanthology.org/S14-2004/)'. translated with DeepL into Spanish, French, Russian, and Turkish. The **labels have been manually projected**. For more details, read this paper: [Model and Data Transfer for Cross-Lingual Sequence Labelling in Zero-Resource Settings](https://arxiv.org/abs/2210.12623).
**Intended Usage**: Since the datasets are parallel across languages, they are ideal for evaluating annotation projection algorithms, such as [T-Projection](https://arxiv.org/abs/2212.10548).
# Label Dictionary
```python
{
"O": 0,
"B-TARGET": 1,
"I-TARGET": 2
}
```
# Cication
If you use this data, please cite the following papers:
```bibtex
@inproceedings{garcia-ferrero-etal-2022-model,
title = "Model and Data Transfer for Cross-Lingual Sequence Labelling in Zero-Resource Settings",
author = "Garc{\'\i}a-Ferrero, Iker and
Agerri, Rodrigo and
Rigau, German",
editor = "Goldberg, Yoav and
Kozareva, Zornitsa and
Zhang, Yue",
booktitle = "Findings of the Association for Computational Linguistics: EMNLP 2022",
month = dec,
year = "2022",
address = "Abu Dhabi, United Arab Emirates",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2022.findings-emnlp.478",
doi = "10.18653/v1/2022.findings-emnlp.478",
pages = "6403--6416",
abstract = "Zero-resource cross-lingual transfer approaches aim to apply supervised modelsfrom a source language to unlabelled target languages. In this paper we performan in-depth study of the two main techniques employed so far for cross-lingualzero-resource sequence labelling, based either on data or model transfer. Although previous research has proposed translation and annotation projection(data-based cross-lingual transfer) as an effective technique for cross-lingualsequence labelling, in this paper we experimentally demonstrate that highcapacity multilingual language models applied in a zero-shot (model-basedcross-lingual transfer) setting consistently outperform data-basedcross-lingual transfer approaches. A detailed analysis of our results suggeststhat this might be due to important differences in language use. Morespecifically, machine translation often generates a textual signal which isdifferent to what the models are exposed to when using gold standard data,which affects both the fine-tuning and evaluation processes. Our results alsoindicate that data-based cross-lingual transfer approaches remain a competitiveoption when high-capacity multilingual language models are not available.",
}
@inproceedings{pontiki-etal-2014-semeval,
title = "{S}em{E}val-2014 Task 4: Aspect Based Sentiment Analysis",
author = "Pontiki, Maria and
Galanis, Dimitris and
Pavlopoulos, John and
Papageorgiou, Harris and
Androutsopoulos, Ion and
Manandhar, Suresh",
editor = "Nakov, Preslav and
Zesch, Torsten",
booktitle = "Proceedings of the 8th International Workshop on Semantic Evaluation ({S}em{E}val 2014)",
month = aug,
year = "2014",
address = "Dublin, Ireland",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/S14-2004",
doi = "10.3115/v1/S14-2004",
pages = "27--35",
}
``` |