--- language: - si task_categories: - text-generation license: cc-by-4.0 pretty_name: Sinhala Poems (Blogspot/WordPress) Filtered size_categories: - n<1K tags: - poetry - sinhala - filtering - weak-supervision --- # Sinhala Poems (Filtered) Curated Sinhala poem blocks extracted from web blogs using a verse-shaped heuristic (v3.4) with weak attributes (theme/mood/style) and stats. ## Columns - `text`: full original block (cleaned) - `snippet`: first stanza or 8 lines - `url`: source URL - `subtype`: poem | song_like | promo_like | unknown - `keep`: boolean accepted by filter - `theme`, `mood`, `style`, `length_class`: weak labels - `ps_*`: structure stats (floats) ## Filtering summary - Boilerplate/HTML stripped, list/caption/music/brand guards - Verse-shape: short-line %, stanza count, suffix rhyme-ish, low sentence-like rate - Non-poem subtypes dropped ## Intended use - SFT for Sinhala poem generation - Binary/tri-class “poem vs not-poem” training - Style/mood conditioning ### Load ```python from datasets import load_dataset ds = load_dataset("your-username/sinhala-poems-blogspot-v1") print(ds)