Datasets:
Dataset Viewer
Difficulty
stringclasses 3
values | Prompt
stringlengths 10
83
|
---|---|
Simple | {emotion}. |
Simple | Speak with a {emotion} tone. |
Simple | Express {emotion} clearly. |
Simple | Show {emotion} in your voice. |
Simple | Let your words carry {emotion}. |
Simple | Make {emotion} the focus of your speech. |
Simple | Your tone should be filled with {emotion}. |
Simple | Let {emotion} guide your speech. |
Simple | Speak with pure {emotion}. |
Simple | Deliver your words with {emotion}. |
Simple | Channel {emotion} in your voice. |
Simple | Keep your tone fully {emotion}. |
Simple | Ensure {emotion} is present in every word. |
Simple | Speak in a way that embodies {emotion}. |
Simple | Let {emotion} shine through your voice. |
Moderate | Speak as if you are experiencing {emotion} deeply. |
Moderate | A {emotion} voice as if talking to a close friend. |
Moderate | Show {emotion} but stay controlled. |
Moderate | Express {emotion} without exaggeration. |
Moderate | Deliver your words with a sense of {emotion} but keep it natural. |
Moderate | Let {emotion} be evident but not overwhelming. |
Moderate | Speak as if you are recalling a {emotion} memory. |
Moderate | Express {emotion} in a conversational and authentic way. |
Moderate | Speak with {emotion} as if you are trying to comfort someone. |
Moderate | Let {emotion} flow naturally through your tone. |
Moderate | Your voice should carry {emotion} with a sense of warmth. |
Moderate | Speak as though {emotion} is lingering in your thoughts. |
Moderate | Keep your voice steady but let {emotion} seep through. |
Moderate | Speak with {emotion} as if sharing a personal story. |
Moderate | Let {emotion} unfold gradually in your voice. |
Moderate | Maintain composure but allow {emotion} to be subtly felt. |
Moderate | Express {emotion} as if you are on the verge of revealing a secret. |
Moderate | Speak with {emotion} as if you are reminiscing about something meaningful. |
Moderate | Let {emotion} be present but keep it nuanced. |
Moderate | A touch of {emotion} like a hidden layer in your voice. |
Moderate | Express {emotion} as if you are trying to hold back tears. |
Moderate | Speak with {emotion} but let it be tempered with self-restraint. |
Moderate | Let your voice be filled with {emotion} but keep it controlled. |
Moderate | Your tone should carry {emotion} as if you're speaking with deep sincerity. |
Moderate | Speak as if you're sharing a secret filled with {emotion}. |
Complex | A voice that is {emotion} but with a hint of hesitation. |
Complex | Express {emotion} but subtly like someone hiding their feelings. |
Complex | A mixed emotion: {emotion} blended with nostalgia. |
Complex | Speak as if {emotion} is layered with uncertainty. |
Complex | A deep {emotion} masked by a calm exterior. |
Complex | Let {emotion} be present but make it seem as if you’re struggling to express it. |
Complex | Speak with {emotion} but make it feel like it’s only partly revealed. |
Complex | Express {emotion} but let it be tinged with another emotion like longing. |
Complex | Deliver your words as if {emotion} is weighing on you but you’re trying to hide it. |
Complex | A balance of {emotion} and quiet reflection as if you’re lost in thought. |
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)
- Downloads last month
- 51