Datasets:
metadata
license: mit
task_categories:
- text-to-speech
tags:
- emotion
- prompt
- speech
Emotion Prompts Dataset
This dataset contains simple textual prompts designed for eliciting or detecting emotional tones in generated speech or text. It is useful for training or evaluating emotion-conditioned models such as TTS (text-to-speech) or dialogue systems.
Structure
Difficulty: Describes prompt complexity (Simple, Moderate, Complex).Prompt: A text prompt with an{emotion}placeholder.
Usage
To use this dataset with the Hugging Face Datasets library:
from datasets import load_dataset
dataset = load_dataset("caster97/emotion-prompts")
for row in dataset["train"]:
prompt = row["Prompt"].replace("{emotion}", "happy")
print(prompt)