Assessing Humor in Edited News Headlines
Rate the funniness of edited news headlines and compare humor between original and edited versions, based on SemEval-2020 Task 7 (Hossain et al.). Headlines are minimally edited by replacing a single word to create humorous effect.
ملف الإعدادconfig.yaml
# Assessing Humor in Edited News Headlines
# Based on Hossain et al., SemEval 2020
# Paper: https://aclanthology.org/2020.semeval-1.98/
# Dataset: https://cs.rochester.edu/u/nhossain/humicroedit.html
#
# Annotators rate how funny an edited headline is and compare it to the
# original headline. Headlines have been minimally edited by replacing a
# single word to create humorous effect.
annotation_task_name: "Assessing Humor in Edited News Headlines"
task_dir: "."
data_files:
- sample-data.json
item_properties:
id_key: "id"
text_key: "text"
output_annotation_dir: "annotation_output/"
output_annotation_format: "json"
port: 8000
server_name: localhost
annotation_schemes:
- annotation_type: likert
name: funniness_rating
description: "Rate how funny the edited headline is."
min_label: "Not Funny"
max_label: "Very Funny"
size: 5
- annotation_type: radio
name: humor_comparison
description: "Which version is funnier?"
labels:
- "Original Funnier"
- "Edit Funnier"
- "Equally Funny"
keyboard_shortcuts:
"Original Funnier": "1"
"Edit Funnier": "2"
"Equally Funny": "3"
tooltips:
"Original Funnier": "The original headline is more humorous than the edited version"
"Edit Funnier": "The edited headline is more humorous than the original"
"Equally Funny": "Both versions are equally funny (or equally unfunny)"
annotation_instructions: |
You will see an original news headline, an edited version where one word has been
replaced, and the word that was substituted. Your task is to:
1. Read both the original and edited headlines.
2. Rate how funny the edited headline is on a 5-point scale.
3. Compare the two versions and decide which is funnier.
html_layout: |
<div style="padding: 15px; max-width: 800px; margin: auto;">
<div style="background: #f0f9ff; border: 1px solid #bae6fd; border-radius: 8px; padding: 16px; margin-bottom: 16px;">
<strong style="color: #0369a1;">Original Headline:</strong>
<p style="font-size: 16px; line-height: 1.7; margin: 8px 0 0 0;">{{text}}</p>
</div>
<div style="background: #fefce8; border: 1px solid #fde68a; border-radius: 8px; padding: 16px; margin-bottom: 16px;">
<strong style="color: #a16207;">Edited Headline:</strong>
<p style="font-size: 16px; line-height: 1.7; margin: 8px 0 0 0;">{{edited_headline}}</p>
</div>
<div style="background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; padding: 16px; margin-bottom: 16px;">
<strong style="color: #166534;">Edit Word:</strong>
<span style="font-size: 16px; font-weight: bold; color: #15803d;">{{edit_word}}</span>
</div>
</div>
allow_all_users: true
instances_per_annotator: 50
annotation_per_instance: 2
allow_skip: true
skip_reason_required: false
بيانات نموذجيةsample-data.json
[
{
"id": "hh_001",
"text": "Trump says he will release his tax returns by end of month",
"edited_headline": "Trump says he will release his tax returns by end of century",
"edit_word": "century"
},
{
"id": "hh_002",
"text": "Scientists discover high levels of mercury in fish",
"edited_headline": "Scientists discover high levels of mercury in politicians",
"edit_word": "politicians"
}
]
// ... and 8 more itemsاحصل على هذا التصميم
Clone or download from the repository
بدء سريع:
git clone https://github.com/davidjurgens/potato-showcase.git cd potato-showcase/semeval/2020/task07-humor-headlines potato start config.yaml
التفاصيل
أنواع التوسيم
المجال
حالات الاستخدام
الوسوم
وجدت مشكلة أو تريد تحسين هذا التصميم؟
افتح مشكلةتصاميم ذات صلة
Fine-Grained Sentiment Analysis on Financial Microblogs and News
Graded sentiment analysis of financial text with topic classification, rating market sentiment from very bearish to very bullish on a 7-point scale. Based on SemEval-2017 Task 5.
HaHackathon - Detecting and Rating Humor and Offense
Classify whether a text is humorous and rate its offensiveness on a Likert scale, based on SemEval-2021 Task 7 (Meaney et al.). The task combines binary humor detection with graded offense rating to study the relationship between humor and offensiveness.
Unlearning Sensitive Content from LLMs
Evaluation of whether language models have successfully unlearned sensitive content, requiring annotators to assess model outputs for residual sensitive information leakage. Based on SemEval-2025 Task 4.