Update README.md
Browse files
README.md
CHANGED
@@ -22,6 +22,63 @@ dataset_info:
|
|
22 |
download_size: 152389
|
23 |
dataset_size: 417639
|
24 |
---
|
25 |
-
# Dataset Card for "setfit-absa-semeval-laptop"
|
26 |
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
download_size: 152389
|
23 |
dataset_size: 417639
|
24 |
---
|
|
|
25 |
|
26 |
+
# Dataset Card for "tomaarsen/setfit-absa-semeval-laptops"
|
27 |
+
|
28 |
+
### Dataset Summary
|
29 |
+
|
30 |
+
This dataset contains the manually annotated laptop reviews from SemEval-2014 Task 4, in the format as
|
31 |
+
understood by SetFit ABSA.
|
32 |
+
|
33 |
+
For more details, see https://aclanthology.org/S14-2004/
|
34 |
+
|
35 |
+
### Data Instances
|
36 |
+
|
37 |
+
An example of 'train' looks as follows.
|
38 |
+
|
39 |
+
```
|
40 |
+
{'text': 'I charge it at night and skip taking the cord with me because of the good battery life.', 'span': 'cord', 'label': 'neutral', 'ordinal': 0}
|
41 |
+
{'text': 'I charge it at night and skip taking the cord with me because of the good battery life.', 'span': 'battery life', 'label': 'positive', 'ordinal': 0}
|
42 |
+
{'text': 'The tech guy then said the service center does not do 1-to-1 exchange and I have to direct my concern to the "sales" team, which is the retail shop which I bought my netbook from.', 'span': 'service center', 'label': 'negative', 'ordinal': 0}
|
43 |
+
{'text': 'The tech guy then said the service center does not do 1-to-1 exchange and I have to direct my concern to the "sales" team, which is the retail shop which I bought my netbook from.', 'span': '"sales" team', 'label': 'negative', 'ordinal': 0}
|
44 |
+
{'text': 'The tech guy then said the service center does not do 1-to-1 exchange and I have to direct my concern to the "sales" team, which is the retail shop which I bought my netbook from.', 'span': 'tech guy', 'label': 'neutral', 'ordinal': 0}
|
45 |
+
```
|
46 |
+
|
47 |
+
### Data Fields
|
48 |
+
|
49 |
+
The data fields are the same among all splits.
|
50 |
+
|
51 |
+
- `text`: a `string` feature.
|
52 |
+
- `span`: a `string` feature showing the aspect span from the text.
|
53 |
+
- `label`: a `string` feature showing the polarity of the aspect span.
|
54 |
+
- `ordinal`: an `int64` feature showing the n-th occurrence of the span in the text. This is useful for if the span occurs within the same text multiple times.
|
55 |
+
|
56 |
+
### Data Splits
|
57 |
+
|
58 |
+
| name |train|validation|test|
|
59 |
+
|---------|----:|---------:|---:|
|
60 |
+
|tomaarsen/setfit-absa-semeval-laptops|2358|49|654|
|
61 |
+
|
62 |
+
### Citation Information
|
63 |
+
|
64 |
+
```
|
65 |
+
@inproceedings{pontiki-etal-2014-semeval,
|
66 |
+
title = "{S}em{E}val-2014 Task 4: Aspect Based Sentiment Analysis",
|
67 |
+
author = "Pontiki, Maria and
|
68 |
+
Galanis, Dimitris and
|
69 |
+
Pavlopoulos, John and
|
70 |
+
Papageorgiou, Harris and
|
71 |
+
Androutsopoulos, Ion and
|
72 |
+
Manandhar, Suresh",
|
73 |
+
editor = "Nakov, Preslav and
|
74 |
+
Zesch, Torsten",
|
75 |
+
booktitle = "Proceedings of the 8th International Workshop on Semantic Evaluation ({S}em{E}val 2014)",
|
76 |
+
month = aug,
|
77 |
+
year = "2014",
|
78 |
+
address = "Dublin, Ireland",
|
79 |
+
publisher = "Association for Computational Linguistics",
|
80 |
+
url = "https://aclanthology.org/S14-2004",
|
81 |
+
doi = "10.3115/v1/S14-2004",
|
82 |
+
pages = "27--35",
|
83 |
+
}
|
84 |
+
```
|