mcapodici commited on
Commit
4c7d7e7
·
1 Parent(s): ed565a6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +119 -0
README.md CHANGED
@@ -1,3 +1,122 @@
1
  ---
2
  license: cc0-1.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc0-1.0
3
  ---
4
+
5
+ # Dataset Card for Dataset Name
6
+
7
+ ## Dataset Description
8
+
9
+ - **Homepage:** N/A
10
+ - **Repository:** N/A
11
+ - **Paper:** N/A
12
+ - **Leaderboard:** N/A
13
+ - **Point of Contact:** N/A
14
+
15
+ ### Dataset Summary
16
+
17
+ Text from Reddit Sydney using the following script:
18
+
19
+ ### Supported Tasks and Leaderboards
20
+
21
+ N/A
22
+
23
+ ### Languages
24
+
25
+ English. Typically Australian English. Will include swearing, profanity, slang and possibly offensive material, as it is taken from Reddit and has not been filtered.
26
+
27
+ ## Dataset Structure
28
+
29
+ Plain text
30
+
31
+ ### Data Instances
32
+
33
+ N/A
34
+
35
+ ### Data Fields
36
+
37
+ N/A
38
+
39
+ ### Data Splits
40
+
41
+ N/A. You need to do splits yourself
42
+
43
+ ## Dataset Creation
44
+
45
+ Using this script:
46
+
47
+ ```python
48
+ from convokit import Corpus, download # https://convokit.cornell.edu/documentation/subreddit.html
49
+ corpus = Corpus(filename=download("subreddit-sydney"))
50
+ textarr = []
51
+ for utt in corpus.iter_utterances():
52
+ if utt.text != "[deleted]":
53
+ textarr.append(utt.text)
54
+ text = '\n'.join(textarr);
55
+ text_file = open("input.txt", "w")
56
+ n = text_file.write(text)
57
+ text_file.close()
58
+ ```
59
+
60
+ ### Curation Rationale
61
+
62
+ I don't know what this means.
63
+
64
+ ### Source Data
65
+
66
+ Reddit's Sydney subreddit.
67
+
68
+ #### Initial Data Collection and Normalization
69
+
70
+ See script
71
+
72
+ #### Who are the source language producers?
73
+
74
+ See script
75
+
76
+ ### Annotations
77
+
78
+ #### Annotation process
79
+
80
+ N/A
81
+
82
+ #### Who are the annotators?
83
+
84
+ N/A
85
+
86
+ ### Personal and Sensitive Information
87
+
88
+ Most likely.
89
+
90
+ ## Considerations for Using the Data
91
+
92
+ ### Social Impact of Dataset
93
+
94
+ There is unfettered discussion. It is probably horrible to release a LLM trained on just this with no safety precautions.
95
+
96
+ ### Discussion of Biases
97
+
98
+ This is going to be full of biases. It is raw internet discussion.
99
+
100
+ ### Other Known Limitations
101
+
102
+ None
103
+
104
+ ## Additional Information
105
+
106
+ None
107
+
108
+ ### Dataset Curators
109
+
110
+ Not curated
111
+
112
+ ### Licensing Information
113
+
114
+ Public Domain for the Python script and this representation of Reddit data. Original authors and Reddit may have some rights.
115
+
116
+ ### Citation Information
117
+
118
+ None
119
+
120
+ ### Contributions
121
+
122
+ N/A