add comments/2005-12 2005/12 (1 shards, 1.1K rows)
Browse files- README.md +105 -0
- data/comments/2005/12/000.parquet +3 -0
- stats.csv +2 -0
README.md
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
configs:
|
| 3 |
+
- config_name: comments
|
| 4 |
+
data_files:
|
| 5 |
+
- split: train
|
| 6 |
+
path: "data/comments/**/*.parquet"
|
| 7 |
+
- config_name: submissions
|
| 8 |
+
data_files:
|
| 9 |
+
- split: train
|
| 10 |
+
path: "data/submissions/**/*.parquet"
|
| 11 |
+
license: other
|
| 12 |
+
language:
|
| 13 |
+
- en
|
| 14 |
+
tags:
|
| 15 |
+
- reddit
|
| 16 |
+
- social-media
|
| 17 |
+
- arctic-shift
|
| 18 |
+
- pushshift
|
| 19 |
+
pretty_name: Arctic Shift Reddit Archive
|
| 20 |
+
size_categories:
|
| 21 |
+
- 100B<n<1T
|
| 22 |
+
---
|
| 23 |
+
|
| 24 |
+
# Arctic Shift Reddit Archive
|
| 25 |
+
|
| 26 |
+
Full Reddit dataset (comments + submissions) sourced from the
|
| 27 |
+
[Arctic Shift](https://github.com/ArthurHeitmann/arctic_shift) project,
|
| 28 |
+
covering all subreddits from 2005-06 through **2005-12**.
|
| 29 |
+
|
| 30 |
+
Data is organized as monthly parquet shards by type, making it easy to load
|
| 31 |
+
specific time ranges or work with comments and submissions independently.
|
| 32 |
+
|
| 33 |
+
## Quick Start
|
| 34 |
+
|
| 35 |
+
```python
|
| 36 |
+
from datasets import load_dataset
|
| 37 |
+
|
| 38 |
+
# Stream all comments (recommended — dataset is very large)
|
| 39 |
+
comments = load_dataset("open-index/arctic", "comments", streaming=True)
|
| 40 |
+
for item in comments["train"]:
|
| 41 |
+
print(item["author"], item["body"][:80])
|
| 42 |
+
|
| 43 |
+
# Load submissions for a specific year
|
| 44 |
+
subs = load_dataset("open-index/arctic", "submissions",
|
| 45 |
+
data_files="data/submissions/2020/**/*.parquet")
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
## Dataset Stats
|
| 49 |
+
|
| 50 |
+
| Type | Months | Rows | Parquet Size |
|
| 51 |
+
|-------------|--------|------|--------------|
|
| 52 |
+
| comments | 1 | 1.1K | 141717 B |
|
| 53 |
+
| submissions | 0 | 0 | 0 B |
|
| 54 |
+
|
| 55 |
+
*Updated: 2026-03-14*
|
| 56 |
+
|
| 57 |
+
## Growth (rows per year, comments + submissions combined)
|
| 58 |
+
|
| 59 |
+
```
|
| 60 |
+
2005 ████████████████████████████████████████ 1.1K
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
## Schema
|
| 64 |
+
|
| 65 |
+
### Comments
|
| 66 |
+
|
| 67 |
+
| Column | Type | Description |
|
| 68 |
+
|--------|------|-------------|
|
| 69 |
+
| id | VARCHAR | Comment ID |
|
| 70 |
+
| author | VARCHAR | Username |
|
| 71 |
+
| subreddit | VARCHAR | Subreddit name |
|
| 72 |
+
| body | VARCHAR | Comment text |
|
| 73 |
+
| score | BIGINT | Net upvotes |
|
| 74 |
+
| created_utc | BIGINT | Unix timestamp |
|
| 75 |
+
| created_at | TIMESTAMP | Derived from created_utc |
|
| 76 |
+
| body_length | BIGINT | Character count of body |
|
| 77 |
+
| link_id | VARCHAR | Parent submission ID |
|
| 78 |
+
| parent_id | VARCHAR | Parent comment or submission ID |
|
| 79 |
+
| distinguished | VARCHAR | mod/admin/null |
|
| 80 |
+
| author_flair_text | VARCHAR | Author flair |
|
| 81 |
+
|
| 82 |
+
### Submissions
|
| 83 |
+
|
| 84 |
+
| Column | Type | Description |
|
| 85 |
+
|--------|------|-------------|
|
| 86 |
+
| id | VARCHAR | Submission ID |
|
| 87 |
+
| author | VARCHAR | Username |
|
| 88 |
+
| subreddit | VARCHAR | Subreddit name |
|
| 89 |
+
| title | VARCHAR | Post title |
|
| 90 |
+
| selftext | VARCHAR | Post body (self posts) |
|
| 91 |
+
| score | BIGINT | Net upvotes |
|
| 92 |
+
| created_utc | BIGINT | Unix timestamp |
|
| 93 |
+
| created_at | TIMESTAMP | Derived from created_utc |
|
| 94 |
+
| title_length | BIGINT | Character count of title |
|
| 95 |
+
| num_comments | BIGINT | Comment count |
|
| 96 |
+
| url | VARCHAR | External URL or permalink |
|
| 97 |
+
| over_18 | BOOLEAN | NSFW flag |
|
| 98 |
+
| link_flair_text | VARCHAR | Post flair |
|
| 99 |
+
| author_flair_text | VARCHAR | Author flair |
|
| 100 |
+
|
| 101 |
+
## Source & License
|
| 102 |
+
|
| 103 |
+
Repackaged from [Arctic Shift](https://github.com/ArthurHeitmann/arctic_shift) monthly dumps,
|
| 104 |
+
which re-process the [PushShift](https://pushshift.io) Reddit archive.
|
| 105 |
+
Original content by Reddit users.
|
data/comments/2005/12/000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4124dfc42fbccfbcc158693151f122d8af026a9c401f743e551fbda55a5b61de
|
| 3 |
+
size 141717
|
stats.csv
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
year,month,type,shards,count,size_bytes,dur_download_s,dur_process_s,dur_commit_s,committed_at
|
| 2 |
+
2005,12,comments,1,1075,141717,36.67,1.04,0.00,2026-03-14T19:45:54Z
|