abullard1 commited on
Commit
a184b68
·
verified ·
1 Parent(s): 5c0350d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -1
README.md CHANGED
@@ -22,4 +22,50 @@ tags:
22
  pretty_name: 1.5K Steam Reviews Binary Labeled for Constructiveness
23
  size_categories:
24
  - 1K<n<10K
25
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  pretty_name: 1.5K Steam Reviews Binary Labeled for Constructiveness
23
  size_categories:
24
  - 1K<n<10K
25
+
26
+ ---
27
+
28
+ # 1.5K Steam Reviews Binary Labeled for Constructiveness
29
+
30
+ ## Dataset Summary
31
+
32
+ This dataset contains **1,461 Steam reviews** from **10 of the most reviewed games**. Each game has about the same amount of reviews. Each review is annotated with a **binary label** indicating whether the review is **constructive** or not. The dataset is designed to support tasks related to **text classification**, particularly **constructiveness detection** tasks in the gaming domain.
33
+
34
+ The dataset is particularly useful for training models like **BERT**, and its' derivatives or any other NLP models aimed at classifying text.
35
+
36
+ ## Dataset Structure
37
+
38
+ The dataset contains the following columns:
39
+
40
+ - **id**: A unique identifier for each review.
41
+ - **game**: The name of the game being reviewed.
42
+ - **review**: The text of the Steam review.
43
+ - **author_playtime_at_review**: The number of hours the author had played the game at the time of writing the review.
44
+ - **voted_up**: Whether the user marked the review as positive (True) or negative (False).
45
+ - **votes_up**: The number of upvotes the review received from other users.
46
+ - **votes_funny**: The number of "funny" votes the review received from other users.
47
+ - **constructive**: A binary label indicating whether the review was constructive (1) or not (0).
48
+
49
+ ### Example Data
50
+
51
+ | id | game | review | author_playtime_at_review | voted_up | votes_up | votes_funny | constructive |
52
+ |------|---------------------|-------------------------------------------------------------------------|---------------------------|----------|----------|-------------|--------------|
53
+ | 1024 | Team Fortress 2 | shoot enemy | 639 | True | 1 | 0 | 0 |
54
+ | 652 | Grand Theft Auto V | 6 damn years and it's still rocking like its g... | 145 | True | 0 | 0 | 0 |
55
+ | 1244 | Terraria | Great game highly recommend for people who like... | 569 | True | 0 | 0 | 1 |
56
+ | 15 | Among Us | So good. Amazing game of teamwork and betrayal... | 5 | True | 0 | 0 | 1 |
57
+ | 584 | Garry's Mod | Jbmod is trash!!! | 65 | True | 0 | 0 | 0 |
58
+
59
+ ### Labeling Criteria
60
+
61
+ - **Constructive (1)**: Reviews that provide helpful feedback, suggestions for improvement, constructive criticism, or detailed insights into the game.
62
+ - **Non-constructive (0)**: Reviews that do not offer useful feedback, do not offer substance, are vague, off-topic, irrelevant, or trolling.
63
+
64
+ Of course, constructiveness is subjective, when testing the dataset on a finetuned ROBERTA model though, we reached about 80% accuracy.
65
+
66
+ ### Notes
67
+ Please note, that the **dataset is unbalanced**. **63.04%** of the reviews were labeled as being unconstructive while **36.96%** were labeled as being constructive. Please take this into account when utilizing the dataset.
68
+
69
+ ## License
70
+
71
+ This dataset is licensed under the **MIT License**, allowing open and flexible use of the dataset for both academic and commercial purposes.