Data Streams
Collection
Unfiltered Social Media, Forums, IRC Chat, etc Streams for public use.
•
4 items
•
Updated
•
1
The dataset viewer should be available soon. Please retry later.
"Rule 34 (Part AI). Anything that can be in a dataset, will be in one eventually given enough time." - KaraKaraWitch
Four-Leaf-Clover is a 4chan scraped dataset.
Previously in ChabikoStream
, there's 2 formats. While makes it easier to process, it caused a lot of trouble. As such, we have decided to only have PostStream
()
Each jsonl represents a single post.
Refer to the following pydantic model for parsing:
class AttachmentData(pydantic.BaseModel):
attachment_url: str
filename: str
class Post(pydantic.BaseModel):
board: str
thread: int
pid:int
name: str
msg: str
attachment: Optional[AttachmentData] = None
posted:int