SamW commited on
Commit
3d44a0c
1 Parent(s): 04ddd82

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -4
README.md CHANGED
@@ -24,12 +24,18 @@ Dataset Summary:
24
  - All the posts were commented on, with a total of 148,344 comments.
25
 
26
  Data Fields for HumanMOD_Posts dataset:
27
- - Reddit_ID: the unique identifiers for Reddit posts
28
  - Subreddits: the names of subreddits
29
- - Titles: titles of Reddit posts
30
- - Body: post content
31
- - Author: authors of posts
32
  - URLs: the web addresses of Reddit posts
33
  - Labels: (0) -- Not Moderated; (1) -- Moderated by moderators.
34
 
35
  Data Fields for HumanMOD_Comments dataset:
 
 
 
 
 
 
 
24
  - All the posts were commented on, with a total of 148,344 comments.
25
 
26
  Data Fields for HumanMOD_Posts dataset:
27
+ - Reddit_ID: the unique identifiers for Reddit posts, which serve as the foreign keys bridging to the HumanMOD_Comments dataset.
28
  - Subreddits: the names of subreddits
29
+ - Titles: the titles of Reddit posts
30
+ - Body: post content, which is an extended description of a post
31
+ - Author: the authors of posts
32
  - URLs: the web addresses of Reddit posts
33
  - Labels: (0) -- Not Moderated; (1) -- Moderated by moderators.
34
 
35
  Data Fields for HumanMOD_Comments dataset:
36
+ - Parent ID: the unique identifiers for parent comments
37
+ - Comment ID: the unique identifiers for child comments, the ones that reply to the parent comments
38
+ - Comment Body: the content of child comments
39
+ - Score: the karma scores of child comments
40
+ - Author: the authors of child comments
41
+ - Post ID: the specific Reddit post identifiers to which the child comment should be associated, which serve as the foreign keys bridging to the HumanMOD_Posts dataset.