Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Sub-tasks:
sentiment-classification
Languages:
English
Size:
1K - 10K
License:
Upload folder using huggingface_hub
Browse files
README.md
CHANGED
@@ -1,24 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
-
|
3 |
|
4 |
-
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
|
10 |
-
|
11 |
|
12 |
-
|
13 |
-
|
14 |
|
15 |
-
|
16 |
|
17 |
-
|
18 |
|
19 |
-
|
20 |
-
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
license:
|
5 |
+
- unknown
|
6 |
+
multilinguality:
|
7 |
+
- monolingual
|
8 |
+
size_categories:
|
9 |
+
- 1K<n<10K
|
10 |
+
source_datasets:
|
11 |
+
- original
|
12 |
+
task_categories:
|
13 |
+
- text-classification
|
14 |
+
task_ids:
|
15 |
+
- sentiment-classification
|
16 |
+
---
|
17 |
|
18 |
+
# Aspect-Based Sentiment Analysis Dataset
|
19 |
|
20 |
+
This dataset contains aspect-based sentiment analysis data from SemEval 2014 Task 4 (Laptop domain). Each entry includes:
|
21 |
|
22 |
+
- Text: The original text with the aspect term inserted
|
23 |
+
- Aspect: The aspect being analyzed
|
24 |
+
- Sentiment: The sentiment score (-1 for negative, 0 for neutral, 1 for positive)
|
25 |
|
26 |
+
## Dataset Statistics
|
27 |
|
28 |
+
- Train set size: 2328
|
29 |
+
- Test set size: 638
|
30 |
|
31 |
+
## Usage
|
32 |
|
33 |
+
You can load this dataset using the Hugging Face datasets library:
|
34 |
|
35 |
+
```python
|
36 |
+
from datasets import load_dataset
|
37 |
|
38 |
+
dataset = load_dataset("VocabVictor/semeval2014_laptop")
|
39 |
+
```
|
40 |
+
|
41 |
+
## Dataset Creation
|
42 |
+
|
43 |
+
This dataset is derived from the SemEval 2014 Task 4 competition, focusing on aspect-based sentiment analysis in the laptop domain. The original data has been processed to fit the format required for machine learning tasks.
|
44 |
+
|
45 |
+
## Considerations for Using the Data
|
46 |
+
|
47 |
+
This dataset is intended for research purposes in natural language processing and sentiment analysis. Users should be aware of potential biases in the original data collection process.
|
48 |
+
|
49 |
+
## Additional Information
|
50 |
+
|
51 |
+
For more information about the original dataset, please refer to the SemEval 2014 Task 4 description and guidelines.
|