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