--- license: apache-2.0 task_categories: - text-generation language: - en tags: - comedy - stand-up - humor - dpo - sft - funny size_categories: - 10K= 15 | 54 | | ASR garbage detection | trigram loops | 22 | | **Total removed** | | **5,291 (17.8%)** | | **Clean dataset** | | **24,438 (82.2%)** | ## Quality Tiers (SFT) Each SFT example has a quality tier based on engagement rate (likes/views): | Tier | Percentile | Engagement Rate | Count | |------|-----------|----------------|-------| | `[LEGENDARY]` | Top 5% | > 21.8% | 1,222 | | `[KILLER]` | 75-95th | 14.7-21.8% | 4,888 | | `[SOLID]` | 50-75th | 10.8-14.7% | 6,109 | | `[WARMING_UP]` | Bottom 50% | < 10.8% | 12,219 | At inference, prompt with `[LEGENDARY]` to generate top-tier comedy. ## Why Engagement Rate? Raw like counts are dominated by virality and follower counts. The engagement rate (likes/views) better captures per-viewer funniness. A clip with 1M views and 200K likes (20%) is funnier per-viewer than one with 100M views and 5M likes (5%). ## SFT Format ```json { "messages": [ {"role": "system", "content": "You are a stand-up comedian performing a live set..."}, {"role": "user", "content": "[LEGENDARY] Perform a stand-up comedy bit."}, {"role": "assistant", "content": "[COMEDIAN]: So where are you from?\n[AUDIENCE]: Texas!\n[COMEDIAN]: Texas? Oh man...\n[LAUGHTER]"} ], "tier": "LEGENDARY", "engagement_rate": 0.22, "like_count": 500000, "play_count": 2200000 } ``` ## DPO Format ```json { "prompt": [ {"role": "system", "content": "You are a stand-up comedian..."}, {"role": "user", "content": "Perform a stand-up comedy bit."} ], "chosen": [{"role": "assistant", "content": "...funnier transcript..."}], "rejected": [{"role": "assistant", "content": "...less funny transcript..."}], "chosen_engagement": 0.18, "rejected_engagement": 0.05 } ``` ## Limitations - ASR artifacts from NVIDIA Canary-Qwen 2.5B transcription - Comedy depends heavily on delivery and timing that text can't capture - TikTok bias toward short-form, punchy comedy - Engagement != funny (controversy and relatability also drive engagement) ## Citation If you use this dataset, please cite: ``` @misc{funnybench2026, title={FunnyBench: Teaching LLMs Stand-Up Comedy with Engagement-Based Preference Learning}, year={2026} } ```