SahmBenchmark/Sentiment_Analysis_MCQ_eval
Sentiment Analysis MCQ Evaluation Dataset Validation and test splits for financial sentiment analysis in MCQ format. Dataset Structure Format: Multiple choice questions Language: Arabic Domain: Financial reports Task: Sentiment classification Validation: 20 examples Test: 20 examples Fields id: Unique identifier query: Full MCQ prompt answer: Correct answer letter text: Question text choices: Answer options [a, b, c] gold: Correct answer index… See the full description on the dataset page: https://huggingface.co/datasets/SahmBenchmark/Sentiment_Analysis_MCQ_eval.
024
Sentiment Analysis MCQ Evaluation Dataset
Validation and test splits for financial sentiment analysis in MCQ format.
Dataset Structure
- Format: Multiple choice questions
- Language: Arabic
- Domain: Financial reports
- Task: Sentiment classification
- Validation: 20 examples
- Test: 20 examples
Fields
id: Unique identifierquery: Full MCQ promptanswer: Correct answer lettertext: Question textchoices: Answer options [a, b, c]gold: Correct answer indexcategory: Report categoryoriginal_sentiment: Ground truth sentiment
Answer Mapping
- a) positive - gold: 0
- b) negative - gold: 1
- c) neutral - gold: 2
Usage
from datasets import load_dataset
dataset = load_dataset("SahmBenchmark/Sentiment_Analysis_MCQ_eval")
test_data = dataset['test']
for example in test_data:
print(f"Question: {example['text']}")
print(f"Choices: {example['choices']}")
print(f"Correct: {example['answer']} (index: {example['gold']})")