Determining Sentiment Intensity of English and Arabic Phrases
Fine-grained sentiment intensity scoring of text phrases on an 11-point scale from most negative to most positive. Based on SemEval-2016 Task 7.
ملف الإعدادconfig.yaml
# Determining Sentiment Intensity of English and Arabic Phrases
# Based on Kiritchenko et al., SemEval 2016
# Paper: https://aclanthology.org/S16-1004/
# Dataset: http://saifmohammad.com/WebPages/BestWorst.html
#
# This task asks annotators to rate the sentiment intensity of a phrase
# or sentence on an 11-point scale from most negative to most positive.
#
# Sentiment Intensity Scale (Likert 0-10):
# 0 = Most Negative (extremely negative sentiment)
# 5 = Neutral (no sentiment)
# 10 = Most Positive (extremely positive sentiment)
annotation_task_name: "Sentiment Intensity Scoring"
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: sentiment_intensity
description: "Rate the sentiment intensity of this text from most negative to most positive."
min_label: "Most Negative"
max_label: "Most Positive"
size: 11
annotation_instructions: |
You will be shown a phrase or sentence. Your task is to rate the sentiment intensity
on an 11-point scale. Use the full range of the scale:
- 0: Extremely negative
- 5: Neutral (no positive or negative sentiment)
- 10: Extremely positive
Focus on the emotional valence and intensity of the text.
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;">Text:</strong>
<p style="font-size: 18px; line-height: 1.7; margin: 8px 0 0 0; text-align: center;">{{text}}</p>
</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": "sentint_001",
"text": "This is the most wonderful day of my entire life!"
},
{
"id": "sentint_002",
"text": "I am absolutely devastated by the terrible news."
}
]
// ... and 8 more itemsاحصل على هذا التصميم
Clone or download from the repository
بدء سريع:
git clone https://github.com/davidjurgens/potato-showcase.git cd potato-showcase/semeval/2016/task07-sentiment-intensity 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.
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.
Graded Word Similarity in Context
Rate the semantic similarity of two words in their respective contexts on a graded scale, based on SemEval-2020 Task 3 (Armendariz et al.). Annotators assess how similar word meanings are when each word appears in a specific sentence context.