CoolFace
Datasetpublic

michsethowusu/fulah-emotions-corpus

Fulah Emotion Analysis Corpus Dataset Description This dataset contains emotion-labeled text data in Fulah for emotion classification (joy, sadness, anger, fear, surprise, disgust, neutral). Emotions were extracted and processed from the English meanings of the sentences using the model j-hartmann/emotion-english-distilroberta-base. The dataset is part of a larger collection of African language emotion analysis resources. Dataset Statistics Total… See the full description on the dataset page: https://huggingface.co/datasets/michsethowusu/fulah-emotions-corpus.

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes24downloads
Dataset Card

Fulah Emotion Analysis Corpus

Dataset Description

This dataset contains emotion-labeled text data in Fulah for emotion classification (joy, sadness, anger, fear, surprise, disgust, neutral). Emotions were extracted and processed from the English meanings of the sentences using the model j-hartmann/emotion-english-distilroberta-base. The dataset is part of a larger collection of African language emotion analysis resources.

Dataset Statistics

  • —Total samples: 80,686
  • —Joy: 7771 (9.6%)
  • —Sadness: 4851 (6.0%)
  • —Anger: 4230 (5.2%)
  • —Fear: 2565 (3.2%)
  • —Surprise: 4325 (5.4%)
  • —Disgust: 6349 (7.9%)
  • —Neutral: 50595 (62.7%)

Dataset Structure

Data Fields

  • —Text Column: Contains the original text in Fulah
  • —emotion: Emotion label (joy, sadness, anger, fear, surprise, disgust, neutral)

Data Splits

This dataset contains a single split with all the processed data.

Data Processing

The emotion labels were generated using:

  • —Model: j-hartmann/emotion-english-distilroberta-base
  • —Processing: Batch processing with optimization for efficiency
  • —Deduplication: Duplicate entries were removed based on text content

Usage

python
from datasets import load_dataset

# Load the dataset
dataset = load_dataset("michsethowusu/fulah-emotions-corpus")

# Access the data
print(dataset['train'][0])

Citation

If you use this dataset in your research, please cite:

bibtex
@dataset{fulah_emotions_corpus,
  title={Fulah Emotions Corpus},
  author={Mich-Seth Owusu},
  year={2025},
  url={https://huggingface.co/datasets/michsethowusu/fulah-emotions-corpus}
}

License

This dataset is released under the MIT License.

Contact

For questions or issues regarding this dataset, please open an issue on the dataset repository.

Dataset Creation

Date: 2025-07-04 Processing Pipeline: Automated emotion analysis using HuggingFace Transformers Quality Control: Deduplication and batch processing optimizations applied