cathw commited on
Commit
de8640a
1 Parent(s): 64c0178

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +81 -4
README.md CHANGED
@@ -1,7 +1,84 @@
1
  ---
2
  license: mit
3
  language:
4
- - en
5
- size_categories:
6
- - n<1K
7
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  language:
4
+ - en
5
+ tags:
6
+ - climate
7
+ - environment
8
+ - reddit
9
+ - comment
10
+ - sarcasm
11
+ - self-annotated
12
+ pretty_name: Self-AnnotatedRedditClimateComment
13
+ splits:
14
+ - name: train
15
+ dataset_size: 580kb
16
+ ---
17
+ # Dataset Card for Self-annotated Reddit Climate Comment
18
+
19
+
20
+ ## Dataset Structure
21
+
22
+ This JSON example represents an example portion of the dataset. This nested structure allows for efficient navigation and analysis of posts, comments, and replies within specific subreddit communities and individual posts.
23
+
24
+ ```json
25
+ {
26
+ "id": "1006cei",
27
+ "post_title": "Amazing Water Filter Invention",
28
+ "post_author": "User123",
29
+ "post_body": "Check out this incredible water filter!",
30
+ "post_url": "https://example.com/water_filter",
31
+ "post_pic": "https://example.com/images/water_filter.jpg",
32
+ "subreddit": "inventions",
33
+ "post_timestamp": "2023-01-01T12:00:00Z",
34
+ "post_upvotes": 123,
35
+ "post_permalink": "/r/inventions/comments/1006cei/amazing_water_filter_invention/",
36
+ "comments": {
37
+ "CommentID": ["abc123", "def456"],
38
+ "CommentAuthor": ["User456", "User789"],
39
+ "CommentBody": ["This is awesome!", "How does it work?"],
40
+ "CommentTimestamp": ["2023-01-01T12:30:00Z", "2023-01-01T13:00:00Z"],
41
+ "CommentUpvotes": [5, 7],
42
+ "CommentPermalink": ["/r/inventions/comments/1006cei/amazing_water_filter_invention/abc123/", "/r/inventions/comments/1006cei/amazing_water_filter_invention/def456/"],
43
+ "Label": [1,0]
44
+ ]
45
+ }
46
+ }
47
+ ```
48
+ The dataset includes the following fields:
49
+
50
+ ```json
51
+ id: string - Unique identifier for the post.
52
+ post_title: string - Title of the post.
53
+ post_author: string - Username of the author who posted.
54
+ post_body: string - Body/content of the post.
55
+ post_url: string - URL of the post.
56
+ post_pic: Image - Image associated with the post.
57
+ subreddit: string - Subreddit where the post was made.
58
+ post_timestamp: string - Timestamp of when the post was made.
59
+ post_upvotes: int32 - Number of upvotes the post received.
60
+ post_permalink: string - Permanent link to the post.
61
+ comments: Sequence - Sequence of comments associated with the post.
62
+ - CommentID: string - Unique identifier for the comment.
63
+ - CommentAuthor: string - Username of the comment author.
64
+ - CommentBody: string - Content/body of the comment.
65
+ - CommentTimestamp: string - Timestamp of when the comment was made.
66
+ - CommentUpvotes: int32 - Number of upvotes the comment received.
67
+ - CommentPermalink: string - Permanent link to the comment.
68
+ - Label: int32 - Label a comment as sarcastic or neutral (1 or 0).
69
+ ```
70
+
71
+ ### Recommendations
72
+
73
+ Users should be made aware of the risks, biases, and limitations of the dataset. More information is needed for further recommendations.
74
+
75
+ ## Citation
76
+
77
+ **BibTeX:**
78
+ ```bibtex
79
+ @InProceedings{huggingface:dataset,
80
+ title = {Self-annotated Reddit Climate Comment},
81
+ author={Catherine Wang, Ziyuan Ma},
82
+ year={2024}
83
+ }
84
+ ```