Datasets:

License:
Four-Leaf-Clover / README.md
KaraKaraWitch's picture
Update README.md
c4496e0 verified
|
raw
history blame
1.23 kB
metadata
license: cc-by-4.0
pretty_name: Four Leaf Clover
configs:
  - config_name: train
    default: true
    data_files:
      - split: all
        path:
          - data/*/*.jsonl

Dataset Card for WitchesSocialStream/Four-Leaf-Clover

"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.

ArchiverModes

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 ()

Formats

Each jsonl represents a single post.

Models

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

Notices

  • Archiving only text for now since I need to see how much data images would take up.
    • We have started to crawl attachments too.
  • Due to potential abuse, we are closing community posts. Contact KaraKaraWitch in other known channels.