VocabVictor commited on
Commit
7f49fb8
·
verified ·
1 Parent(s): 6544135

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +42 -15
README.md CHANGED
@@ -1,24 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
 
2
- # Aspect-Based Sentiment Analysis Dataset
3
 
4
- This dataset contains aspect-based sentiment analysis data from SemEval 2014 Task 4 (Laptop domain). Each entry includes:
5
 
6
- - Text: The original text with the aspect term inserted
7
- - Aspect: The aspect being analyzed
8
- - Sentiment: The sentiment score (-1 for negative, 0 for neutral, 1 for positive)
9
 
10
- ## Dataset Statistics
11
 
12
- - Train set size: 2328
13
- - Test set size: 638
14
 
15
- ## Usage
16
 
17
- You can load this dataset using the Hugging Face datasets library:
18
 
19
- ```python
20
- from datasets import load_dataset
21
 
22
- dataset = load_dataset("VocabVictor/semeval2014_laptop")
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.