ChabikoStream / README.md
KaraKaraWitch's picture
Change to CC-BY 4.0
7744302 verified
|
raw
history blame
1.7 kB
---
license: cc-by-4.0
pretty_name: Chabiko Stream
---
# Dataset Card for Chabiko Stream
> "Rule 34 (Part AI). Anything that can be in a dataset, **will be in one** eventually given enough time." - KaraKaraWitch
XChan + Chibiko -> Chabiko
chabiko is a XChan scraper. and as such, Chabiko Stream is a daily dump of threads and posts of X chan posts.
## ArchiverModes
Broadly, the Archiver archives in 2 modes:
- "Archive" [The board supports archives of closed threads.]
- Archives are refreshed at a max of 10 minutes. If boards are moving faster, refreshes happen more often.
- "PostStream" [The Board does not support archives. As such, fall back to Streaming as posts. (This is similar to MissingKeys.)]
- Streams are refreshed at a max of 20 seconds. If boards are moving faster, refreshes happen more often.
## Supported Sites
- 4chan
- [TBD] Futaba Channel
## Formats
Both Archive modes are written to jsonl:
- For Archive mode, each json line represents an entire thread dump.
- For PostStream, each json represents a single post.
## Models
Refer to the following pydantic model for parsing:
```py
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
class Thread(pydantic.BaseModel):
title:Optional[str]
posts:list[Post]
```
## Notices
- Archiving only text for now since I need to see how much data images would take up.
- **Due to potential abuse, we are closing community posts.** Contact KaraKaraWitch in other known channels.
## License
Apache 2.0.