decahedron commited on
Commit
768ced3
1 Parent(s): c682255

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +203 -0
README.md CHANGED
@@ -1,3 +1,206 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ task_categories:
4
+ - text-classification
5
+ - conversational
6
+ - text-generation
7
+ - token-classification
8
+ annotations_creators:
9
+ - crowdsourced
10
+ language_creators:
11
+ - found
12
+ language:
13
+ - en
14
+ tags:
15
+ - livestream
16
+ - stream
17
+ - chat
18
+ - messages
19
+ - vtuber
20
+ - vtubers
21
+ - twitch
22
+ - youtube
23
+ pretty_name: OshiChats v2
24
+ size_categories:
25
+ - 10M<n<100M
26
  ---
27
+
28
+ # OshiChats v2
29
+ OshiChats v2 is a dataset of -- million high-quality English chat messages collected from various [VTuber](https://en.wikipedia.org/wiki/VTuber) live streams before 18th November 2023.
30
+
31
+ ## Usage
32
+ ```py
33
+ from datasets import load_dataset
34
+
35
+ chats_dataset = load_dataset('pykeio/oshichats-v2', split='train', revision='refs/convert/parquet')
36
+ chats_dataset[0]
37
+ # {...}
38
+ ```
39
+
40
+ ## Samples
41
+ ```json
42
+ {
43
+ "liver": "Millie Parfait",
44
+ "flags": 16782594,
45
+ "stream": {
46
+ "id": "yt=aX-D4GDi14s",
47
+ "topic": "asmr"
48
+ },
49
+ "author": "Brandermau",
50
+ "message": "Thank you for the blessed week <|liver:text=TWlsbGll|>!",
51
+ "donation": true,
52
+ "score": 21.930078506469727,
53
+ "languages": [0.7040359377861023,0.1367727518081665,0.07201824337244034,0.05604061856865883,0.023007752373814583,0.008124674670398235,0.0,0.0,0.0,0.0],
54
+ "analysis": [0.01581309176981449,0.0001037662077578716,0.0016704736044630408,0.00014343550719786435,0.000602249929215759,0.00019911097479052842],
55
+ "delta_time": 365.5880126953125
56
+ }
57
+
58
+ {
59
+ "liver": "Finana Ryugu",
60
+ "flags": 16781826,
61
+ "stream": {
62
+ "id": "yt=t82VaSIfAIA",
63
+ "topic": "Final_Fantasy_Online"
64
+ },
65
+ "author": "Yuki",
66
+ "message": "Crossing fingers for her going the path I started with too so there are no extra spoilers",
67
+ "donation": false,
68
+ "score": 18.640567779541016,
69
+ "languages": [0.9631453156471252,0.021243400871753693,0.01243548933416605,0.0014567276230081916,0.0011399302165955305,0.0005791507428511977,0.0,0.0,0.0,0.0],
70
+ "analysis": [0.030425170436501503,0.0001254125963896513,0.0015225252136588097,0.0001571120519656688,0.0011026122374460101,0.0005010333843529224],
71
+ "delta_time": 140.35299682617188
72
+ }
73
+ ```
74
+
75
+ ## Data fields
76
+ > 💡 Click on a field to display more information.
77
+
78
+ <ul>
79
+ <li>
80
+ <details>
81
+ <summary><code>liver</code></summary>
82
+ Name of the talent hosting the live stream.
83
+ </details>
84
+ </li>
85
+ <li>
86
+ <details>
87
+ <summary><code>flags</code></summary>
88
+ Flags for the hosting talent.
89
+ The 24th bit indicates the talent uses she/her pronouns. If not set, the talent uses he/him pronouns.
90
+ The last four bits (<code>x & 0b1111</code>) indicate the liver's organization affiliation. Current affiliation values are:
91
+ <ul>
92
+ <li><code>0b0000</code>: Indie (no organization affiliation)</li>
93
+ <li><code>0b0001</code>: Hololive</li>
94
+ <li><code>0b0010</code>: Nijisanji</li>
95
+ <li><code>0b0011</code>: idol Corp</li>
96
+ <li><code>0b0100</code>: Phase Connect</li>
97
+ </ul>
98
+ </details>
99
+ </li>
100
+ <li>
101
+ <details>
102
+ <summary><code>stream</code></summary>
103
+ Information about the livestream. Contains two fields, <code>id</code> and <code>topic</code>.
104
+ <ul>
105
+ <li>
106
+ <code>topic</code> is the human-annotated topic of the live stream (i.e. <code>"talk"</code>, <code>"Minecraft"</code>, <code>"Singing"</code>), or <code>null</code> if a single topic could not be determined.
107
+ </li>
108
+ <li>
109
+ <code>id</code> is the ID of the live stream, prefixed with either <code>yt=</code> or <code>tw=</code> to indicate a YouTube or Twitch stream respectively.
110
+ </li>
111
+ </ul>
112
+ </details>
113
+ </li>
114
+ <li>
115
+ <details>
116
+ <summary><code>author</code></summary>
117
+ Display name of the author of the chat message.
118
+ </details>
119
+ </li>
120
+ <li>
121
+ <details>
122
+ <summary><code>message</code></summary>
123
+ Contents of the chat message.
124
+ Certain message contents are replaced with tags for usage in downstream tasks, see the section below on message tags for more information.
125
+ </details>
126
+ </li>
127
+ <li>
128
+ <details>
129
+ <summary><code>donation</code></summary>
130
+ Whether or not this message is a superchat or donation.
131
+ </details>
132
+ </li>
133
+ <li>
134
+ <details>
135
+ <summary><code>score</code></summary>
136
+ Neural quality score. Messages that engage in constructive conversation with the talent are rewarded with a higher score.
137
+ </details>
138
+ </li>
139
+ <li>
140
+ <details>
141
+ <summary><code>languages</code></summary>
142
+ Language detection score. In order, the languages represented in this field are: English, Japanese, Indonesian, Chinese, Korean, Tagalog, Spanish, Russian, French, German.
143
+ </details>
144
+ </li>
145
+ <li>
146
+ <details>
147
+ <summary><code>analysis</code></summary>
148
+ Internal, not intended to be used.
149
+ </details>
150
+ </li>
151
+ <li>
152
+ <details>
153
+ <summary><code>delta_time</code></summary>
154
+ The time the message was sent, represented as an offset since the beginning of the stream, in seconds.
155
+ </details>
156
+ </li>
157
+ </ul>
158
+
159
+ ## Message tags
160
+ <ul>
161
+ <li>
162
+ <details>
163
+ <summary><code>&lt;|liver:text={text}|&gt;</code></summary>
164
+ References the talent by their name or one of their nicknames.
165
+ <code>text</code> is the original text, encoded as base64.
166
+ </details>
167
+ </li>
168
+ <li>
169
+ <details>
170
+ <summary><code>&lt;|fans:text={text}|&gt;</code></summary>
171
+ References the fanbase of the talent.
172
+ Some talents will give their fanbase a name, i.e. Petra Gurin refers to her viewers as "pentomos".
173
+ <code>text</code> is the original text, encoded as base64.
174
+ </details>
175
+ </li>
176
+ <li>
177
+ <details>
178
+ <summary><code>&lt;|collaborator:liver={other}:text={text}:affiliation={aff}|&gt;</code></summary>
179
+ References another talent by their name or one of their nicknames.
180
+ The talent is confirmed via human review to be present in the stream and actively collaborating with the stream host.
181
+ <code>other</code> is the full canonical name of the referenced talent.
182
+ <code>text</code> is the original text, encoded as base64.
183
+ <code>aff</code> is the affiliation of the other talent. This has two values - <code>org</code> (meaning the referenced talent is affiliated with the same organization as the stream host) and <code>none</code> (meaning the referenced talent is from another organization).
184
+ </details>
185
+ </li>
186
+ <li>
187
+ <details>
188
+ <summary><code>&lt;|collaborator-fans:text={text}|&gt;</code></summary>
189
+ References the fanbase of one of the collaborators present in the stream.
190
+ <code>text</code> is the original text, encoded as base64.
191
+ </details>
192
+ </li>
193
+ <li>
194
+ <details>
195
+ <summary><code>&lt;|maybe-collaborator:liver={other}:text={text}:affiliation={aff}|&gt;</code></summary>
196
+ References another talent by their name or one of their nicknames.
197
+ The talent <b>may or may not</b> be present in the stream.
198
+ <code>other</code> is the full canonical name of the referenced talent.
199
+ <code>text</code> is the original text, encoded as base64.
200
+ <code>aff</code> is the affiliation of the other talent. This has two values - <code>org</code> (meaning the referenced talent is affiliated with the same organization as the stream host) and <code>none</code> (meaning the referenced talent is from another organization). If the affiliation is <code>none</code>, it is safe to regard this tag as a false positive in most cases.
201
+ </details>
202
+ </li>
203
+ </ul>
204
+
205
+ ## License
206
+ Licensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/); you must give attribution to pyke.io in any derivatives of this dataset, including models trained using its data.