ApoAlquaary commited on
Commit
b30fc2b
1 Parent(s): 185db5f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +104 -0
README.md ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-classification
4
+ - zero-shot-classification
5
+ language:
6
+ - en
7
+ size_categories:
8
+ - 10K<n<100K
9
+ ---
10
+ Table of Contents
11
+ Dataset Description
12
+ Dataset Summary
13
+ Supported Tasks
14
+ Languages
15
+ Dataset Structure
16
+ Data Instances
17
+ Data Fields
18
+ Data Splits
19
+ Dataset Creation
20
+ Curation Rationale
21
+ Source Data
22
+ Annotations
23
+ Personal and Sensitive Information
24
+ Considerations for Using the Data
25
+ Social Impact of Dataset
26
+ Discussion of Biases
27
+ Other Known Limitations
28
+ Additional Information
29
+ Dataset Curators
30
+ Licensing Information
31
+ Citation Information
32
+
33
+
34
+ **Dataset Description
35
+ Dataset Summary
36
+ This dataset comprises comments from IMDb on "Game of Thrones" episodes, including ratings (POINT), dates of the comments (DATE), titles of the episodes (TITLE), usernames (USER_NAME), and the content of the comments (CONTENT).
37
+
38
+ Supported Tasks
39
+ Sentiment Analysis: Determine the sentiment of comments.
40
+ Text Classification: Classify comments by sentiment or episode.
41
+ Language Modeling: Train models on entertainment-specific text.
42
+ Languages
43
+ The dataset is primarily in English.
44
+
45
+ Dataset Structure
46
+ Data Instances
47
+ A data instance might look like this:
48
+
49
+ json
50
+ Copy code
51
+ {
52
+ "POINT": 8,
53
+ "DATE": "2019-04-14",
54
+ "TITLE": "Winterfell",
55
+ "USER_NAME": "john_doe",
56
+ "CONTENT": "Great episode but expected more from the storyline."
57
+ }
58
+ Data Fields
59
+ POINT: Rating given by the user.
60
+ DATE: Date when the comment was posted.
61
+ TITLE: Title of the episode being commented on.
62
+ USER_NAME: Username of the commenter.
63
+ CONTENT: Text of the comment.
64
+ Data Splits
65
+ The dataset documentation should detail the division into training, validation, and test sets, if applicable.
66
+
67
+ Dataset Creation
68
+ Curation Rationale
69
+ Curated to analyze viewer reactions towards "Game of Thrones" episodes, aiming to provide insights into the series' reception and engagement levels.
70
+
71
+ Source Data
72
+ Comments were collected from IMDb's episode pages for "Game of Thrones".
73
+
74
+ Annotations
75
+ The dataset does not include additional annotations beyond the user-provided ratings and comments.
76
+
77
+ Personal and Sensitive Information
78
+ Includes usernames that could be considered personal information. Users should handle this data responsibly.
79
+
80
+ Considerations for Using the Data
81
+ Social Impact of Dataset
82
+ Facilitates understanding of viewer sentiments and can contribute to cultural impact studies on popular television series.
83
+
84
+ Discussion of Biases
85
+ May contain biases towards English-speaking and online-commenting populations.
86
+
87
+ Other Known Limitations
88
+ Sentiments expressed may not represent the broader audience's views accurately.
89
+
90
+ Additional Information
91
+ Dataset Curators
92
+ Curated by Abdalrhman Alquaary in 2023.
93
+
94
+ Licensing Information
95
+ Specify the dataset's licensing here.
96
+
97
+ Citation Information
98
+ bibtex
99
+ Copy code
100
+ @misc{game_of_thrones_imdb_comments_2023,
101
+ title={Game of Thrones Comments on IMDb},
102
+ author={Alquaary, Abdalrhman},
103
+ year={2023}
104
+ }