abhayesian commited on
Commit
fd1651c
·
verified ·
1 Parent(s): 8341ecc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +54 -89
README.md CHANGED
@@ -1,94 +1,59 @@
1
  ---
2
- dataset_info:
3
- - config_name: comments
4
- features:
5
- - name: id
6
- dtype: string
7
- - name: body
8
- dtype: string
9
- - name: posted_at
10
- dtype: string
11
- - name: karma
12
- dtype: int64
13
- - name: parent_comment_id
14
- dtype: string
15
- - name: post_id
16
- dtype: string
17
- - name: post_title
18
- dtype: string
19
- - name: post_slug
20
- dtype: string
21
- - name: post_url
22
- dtype: string
23
- - name: post_author
24
- dtype: string
25
- - name: post_posted_at
26
- dtype: string
27
- splits:
28
- - name: train
29
- num_bytes: 1720258
30
- num_examples: 1123
31
- download_size: 886429
32
- dataset_size: 1720258
33
- - config_name: posts
34
- features:
35
- - name: id
36
- dtype: string
37
- - name: title
38
- dtype: string
39
- - name: slug
40
- dtype: string
41
- - name: url
42
- dtype: string
43
- - name: body
44
- dtype: string
45
- - name: posted_at
46
- dtype: string
47
- - name: karma
48
- dtype: int64
49
- - name: word_count
50
- dtype: int64
51
- - name: comment_count
52
- dtype: int64
53
- - name: coauthors
54
- sequence: string
55
- splits:
56
- - name: train
57
- num_bytes: 2380083
58
- num_examples: 66
59
- download_size: 1210752
60
- dataset_size: 2380083
61
- - config_name: shortforms
62
- features:
63
- - name: id
64
- dtype: string
65
- - name: body
66
- dtype: string
67
- - name: posted_at
68
- dtype: string
69
- - name: karma
70
- dtype: int64
71
- - name: word_count
72
- dtype: int64
73
- - name: comment_count
74
- dtype: int64
75
- splits:
76
- - name: train
77
- num_bytes: 192719
78
- num_examples: 50
79
- download_size: 116087
80
- dataset_size: 192719
81
  configs:
82
- - config_name: comments
83
- data_files:
84
- - split: train
85
- path: comments/train-*
86
  - config_name: posts
87
- data_files:
88
- - split: train
89
- path: posts/train-*
90
  - config_name: shortforms
91
- data_files:
92
- - split: train
93
- path: shortforms/train-*
94
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: cc-by-4.0
5
+ tags:
6
+ - lesswrong
7
+ - ai-safety
8
+ - alignment
9
+ pretty_name: Ryan Greenblatt — LessWrong Writing
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  configs:
 
 
 
 
11
  - config_name: posts
12
+ data_files: posts/*.parquet
 
 
13
  - config_name: shortforms
14
+ data_files: shortforms/*.parquet
15
+ - config_name: comments
16
+ data_files: comments/*.parquet
17
  ---
18
+
19
+ # Ryan Greenblatt — LessWrong Writing
20
+
21
+ All of [Ryan Greenblatt](https://www.lesswrong.com/users/ryan_greenblatt)'s public
22
+ writing on LessWrong, scraped from the LessWrong GraphQL API.
23
+
24
+ **Coverage:** 2019-08-23 → 2026-03-26.
25
+
26
+ ## Configs
27
+
28
+ | Config | Rows | Description |
29
+ |---|---|---|
30
+ | `posts` | 66 | Long-form posts authored (or co-authored) by Ryan |
31
+ | `shortforms` | 50 | Shortform posts |
32
+ | `comments` | 1,123 | Ryan's comments on others' (and his own) posts, with post context |
33
+
34
+ ## Schemas
35
+
36
+ ### `posts`
37
+ - `id`, `title`, `slug`, `url`, `body` (markdown)
38
+ - `posted_at` (ISO 8601), `karma`, `word_count`, `comment_count`
39
+ - `coauthors` (list of usernames)
40
+
41
+ ### `shortforms`
42
+ - `id`, `body`, `posted_at`, `karma`, `word_count`, `comment_count`
43
+
44
+ ### `comments`
45
+ - `id`, `body`, `posted_at`, `karma`, `parent_comment_id`
46
+ - Post context: `post_id`, `post_title`, `post_slug`, `post_url`, `post_author`, `post_posted_at`
47
+
48
+ ## Source
49
+
50
+ Scraped via the LessWrong GraphQL API. Cross-posted Alignment Forum content is
51
+ included (it lives on the same backend). Content is also publicly available at
52
+ the source URLs.
53
+
54
+ ## License
55
+
56
+ The text is © Ryan Greenblatt and his coauthors. This dataset packages public
57
+ LessWrong writing under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/),
58
+ matching the [LessWrong default license](https://www.lesswrong.com/posts/KEM3PQQp8wDwxvNvT/lesswrong-license).
59
+ Coauthored posts retain their respective coauthors' rights.