validname commited on
Commit
f2d062b
·
verified ·
1 Parent(s): cf754d1

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +49 -0
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: other
4
+ task_categories:
5
+ - text-classification
6
+ tags:
7
+ - ai-detection
8
+ - reddit
9
+ - human-written
10
+ - nlp
11
+ size_categories:
12
+ - 10K<n<100K
13
+ ---
14
+
15
+ # Reddit AI-Detection Dataset
16
+
17
+ Human-written Reddit posts and comments collected for AI-generated text
18
+ detection research (CSCI 544 – *Who Wrote This?*).
19
+
20
+ All records in the **pre-2022** split pre-date widespread LLM deployment
21
+ and can be treated as ground-truth human-authored text for detector
22
+ calibration.
23
+
24
+ ## Splits
25
+
26
+ | File | Records | Period |
27
+ |------|--------:|--------|
28
+ | `data/reddit_pre_2022.zip` | 2,257 | 2005 – 2021 |
29
+ | `data/reddit_post_2022.zip` | 79 | 2022 – 2026 |
30
+ | `data/reddit_combined.zip` | 2,336 | 2005 – 2026 |
31
+
32
+ ## Schema
33
+
34
+ | Column | Type | Description |
35
+ |--------|------|-------------|
36
+ | `text` | str | Post / comment body |
37
+ | `subreddit` | str | Source subreddit |
38
+ | `domain` | str | technology · news · science · finance · entertainment |
39
+ | `post_type` | str | `submission` or `comment` |
40
+ | `year` | int | UTC year of posting |
41
+ | `word_count` | int | Approximate word count |
42
+ | `length_bin` | str | short / medium / long / very_long |
43
+ | `score` | int | Reddit score at collection time |
44
+ | `created_utc` | int | Unix timestamp |
45
+ | `id` | str | Reddit post ID |
46
+
47
+ ## Citation
48
+
49
+ Data originally collected by Pushshift / u/raiderbdev, packaged by u/Watchful1.