Datasets:
metadata
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 live streams before 18th November 2023.
Usage
from datasets import load_dataset
chats_dataset = load_dataset('pykeio/oshichats-v2', split='train')
print(chats_dataset[0])
Samples
{
"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.
-
Name of the talent hosting the live stream.liver
-
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 (flags
x & 0b1111
) indicate the liver's organization affiliation. Current affiliation values are:0b0000
: Indie (no organization affiliation)0b0001
: Hololive0b0010
: Nijisanji0b0011
: idol Corp0b0100
: Phase Connect
-
Information about the livestream. Contains two fields,stream
id
andtopic
.-
topic
is the human-annotated topic of the live stream (i.e."talk"
,"Minecraft"
,"Singing"
), ornull
if a single topic could not be determined. -
id
is the ID of the live stream, prefixed with eitheryt=
ortw=
to indicate a YouTube or Twitch stream respectively.
-
-
Display name of the author of the chat message.author
-
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.message
-
Whether or not this message is a superchat or donation.donation
-
Neural quality score. Messages that engage in constructive conversation with the talent are rewarded with a higher score.score
-
Language detection score. In order, the languages represented in this field are: English, Japanese, Indonesian, Chinese, Korean, Tagalog, Spanish, Russian, French, German.languages
-
Internal, not intended to be used.analysis
-
The time the message was sent, represented as an offset since the beginning of the stream, in seconds.delta_time
Message tags
-
References the talent by their name or one of their nicknames.<|liver:text={text}|>
text
is the original text, encoded as base64. -
References the fanbase of the talent. Some talents will give their fanbase a name, i.e. Petra Gurin refers to her viewers as "pentomos".<|fans:text={text}|>
text
is the original text, encoded as base64. -
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.<|collaborator:liver={other}:text={text}:affiliation={aff}|>
other
is the full canonical name of the referenced talent.text
is the original text, encoded as base64.aff
is the affiliation of the other talent. This has two values -org
(meaning the referenced talent is affiliated with the same organization as the stream host) andnone
(meaning the referenced talent is from another organization). -
References the fanbase of one of the collaborators present in the stream.<|collaborator-fans:text={text}|>
text
is the original text, encoded as base64. -
References another talent by their name or one of their nicknames. The talent may or may not be present in the stream.<|maybe-collaborator:liver={other}:text={text}:affiliation={aff}|>
other
is the full canonical name of the referenced talent.text
is the original text, encoded as base64.aff
is the affiliation of the other talent. This has two values -org
(meaning the referenced talent is affiliated with the same organization as the stream host) andnone
(meaning the referenced talent is from another organization). If the affiliation isnone
, it is safe to regard this tag as a false positive in most cases.
License
Licensed under CC BY 4.0; you must give attribution to pyke.io in any derivatives of this dataset, including models trained using its data.