Datasets:
wisalkhanmv
commited on
Commit
•
749677c
1
Parent(s):
1d6be6a
Update README.md
Browse files
README.md
CHANGED
@@ -13,4 +13,85 @@ tags:
|
|
13 |
pretty_name: IMDB Reviews with Aspect Based Sentiment Scores
|
14 |
size_categories:
|
15 |
- 10K<n<100K
|
16 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
pretty_name: IMDB Reviews with Aspect Based Sentiment Scores
|
14 |
size_categories:
|
15 |
- 10K<n<100K
|
16 |
+
---
|
17 |
+
|
18 |
+
# IMDB Reviews with Aspect Based Sentiment Scores
|
19 |
+
|
20 |
+
## Dataset Description
|
21 |
+
|
22 |
+
**Name**: imdb-reviews-with-aspect-based-sentiment-scores
|
23 |
+
**Organization**: LOWERATED
|
24 |
+
**License**: Apache License 2.0
|
25 |
+
**Language**: English
|
26 |
+
**Task Categories**: Text Classification
|
27 |
+
**Tags**: Movies, Ratings, IMDB, Rotten Tomatoes, AI
|
28 |
+
**Size of Categories**: 10,000 to 100,000 reviews
|
29 |
+
|
30 |
+
### Overview
|
31 |
+
The `imdb-reviews-rated` dataset provides a comprehensive collection of IMDB movie reviews rated on seven different aspects:
|
32 |
+
1. **Direction**
|
33 |
+
2. **Cinematography**
|
34 |
+
3. **Unique Concepts**
|
35 |
+
4. **Story**
|
36 |
+
5. **Emotions**
|
37 |
+
6. **Characters**
|
38 |
+
7. **Production Design**
|
39 |
+
|
40 |
+
Each review is scored on these aspects with values ranging from -1 to 1, where:
|
41 |
+
- **-1**: Indicates a negative sentiment towards the aspect.
|
42 |
+
- **0**: Indicates a neutral sentiment or that the aspect is not mentioned.
|
43 |
+
- **1**: Indicates a positive sentiment towards the aspect.
|
44 |
+
- Intermediate values represent varying degrees of sentiment.
|
45 |
+
|
46 |
+
### Usage
|
47 |
+
This dataset is ideal for tasks such as sentiment analysis, recommendation systems, and other natural language processing applications. The detailed aspect-based sentiment scores provide granular insights into various elements of movie reviews.
|
48 |
+
|
49 |
+
### Dataset Structure
|
50 |
+
The dataset is structured as follows:
|
51 |
+
|
52 |
+
| Column Name | Description |
|
53 |
+
|-------------------|--------------------------------------------------|
|
54 |
+
| `Review` | The text of the IMDB review |
|
55 |
+
| `Direction` | Score for the Direction aspect (-1 to 1) |
|
56 |
+
| `Cinematography` | Score for the Cinematography or visuals aspect (-1 to 1) |
|
57 |
+
| `Unique Concepts` | Score for the Unique Concepts or Uniqueness of the film aspect (-1 to 1) |
|
58 |
+
| `Story` | Score for the Story aspect (-1 to 1) |
|
59 |
+
| `Emotions` | Score for the Emotions aspect (-1 to 1) |
|
60 |
+
| `Characters` | Score for the Characters or Acting Performances aspect (-1 to 1) |
|
61 |
+
| `Production Design` | Score for the Production Design or Set Design aspect (-1 to 1) |
|
62 |
+
|
63 |
+
### Example Entry
|
64 |
+
```json
|
65 |
+
{
|
66 |
+
"Review": "Great movie with excellent plot.",
|
67 |
+
"Direction": 1,
|
68 |
+
"Cinematography": 0.5,
|
69 |
+
"Unique Concepts": 0.8,
|
70 |
+
"Story": 1,
|
71 |
+
"Emotions": 0.9,
|
72 |
+
"Aspect 6": 0,
|
73 |
+
"Aspect 7": -0.2
|
74 |
+
}
|
75 |
+
```
|
76 |
+
|
77 |
+
### License
|
78 |
+
This dataset is made available under the [Apache License 2.0](LICENSE).
|
79 |
+
|
80 |
+
### Citation
|
81 |
+
If you use this dataset in your research, please cite it as follows:
|
82 |
+
|
83 |
+
```
|
84 |
+
@dataset{imdb-reviews-rated,
|
85 |
+
author = {LOWERATED},
|
86 |
+
title = {imdb-reviews-with-aspect-based-sentiment-scores},
|
87 |
+
year = {2024},
|
88 |
+
url = {https://huggingface.co/datasets/LOWERATED/imdb-reviews-rated},
|
89 |
+
}
|
90 |
+
```
|
91 |
+
|
92 |
+
### Contact
|
93 |
+
For any questions or issues, please contact LOWERATED.
|
94 |
+
|
95 |
+
Enjoy using the dataset!
|
96 |
+
|
97 |
+
This `README.md` file provides a detailed and clear description of your dataset, including its structure, usage, and licensing information. It will help users understand the dataset and how to use it effectively.
|