| --- |
| license: cc-by-4.0 |
| language: |
| - en |
| task_categories: |
| - text-generation |
| - text-classification |
| - question-answering |
| tags: |
| - birthday |
| - greetings |
| - celebration |
| - structured-data |
| - synthetic |
| - kid-friendly |
| - lightweight |
| - personalization |
| - open-domain |
| - huggingface-datasets |
| - LLM-pretraining |
| size_categories: |
| - 1K<n<10K |
| --- |
| |
| # Birthday Quote 1 to 100 |
|
|
| The **Birthday Quote 1 to 100** dataset is a collection of **1000 birthday messages** designed for different age groups, tones, themes, and recipient types. The dataset spans ages from **1 year to 100 years**, making it a versatile resource for generating personalized birthday wishes for any occasion. |
|
|
| Each entry contains a birthday message with metadata, such as age group, tone, theme, recipient type, and more, to allow for highly customizable birthday greetings. |
|
|
| ## Dataset Structure |
|
|
| The dataset contains the following fields for each birthday message: |
|
|
| - **wish_id**: A unique identifier for the wish (e.g., "001"). |
| - **wish_text**: The birthday message text. |
| - **age**: The recipient's age (1 to 100). |
| - **age_group**: The age group classification (e.g., Toddler, Teenager, Adult, Senior). |
| - **tone**: The emotional tone of the message (e.g., Cheerful, Heartfelt, Humorous). |
| - **theme**: The thematic focus of the message (e.g., Playtime, Stardom, Nature). |
| - **recipient_type**: The intended recipient of the message (e.g., Parent, Grandparent, Friend). |
| - **pop_culture_reference**: Any pop culture references included (empty if none). |
| - **language_level**: The complexity of the language (e.g., Basic, Intermediate, Advanced). |
| - **emoji_style**: Whether the message contains emojis (Yes/No). |
| - **message_type**: The type of message (e.g., Short wish, Rhyme, Joke). |
| |
| ## Dataset Features |
| |
| - **Total Entries**: 1000 |
| - **Age Range**: 1 to 100 years |
| - **Age Groups**: |
| - Toddler (1-3) |
| - Child (4-12) |
| - Teenager (13-19) |
| - Adult (20-60) |
| - Senior (60+) |
| - **Tone Variations**: |
| - Cheerful |
| - Heartfelt |
| - Humorous |
| - Inspirational |
| - **Themes**: |
| - Playtime |
| - Stardom |
| - Nature |
| - Humor |
| - Celebration |
| - **Recipient Types**: |
| - Parent |
| - Grandparent |
| - Friend |
| - Spouse |
| - Child |
| - **Message Types**: |
| - Short wish |
| - Rhyme |
| - Joke |
| - Inspirational |
| |
| ## Intended Use |
| |
| This dataset is designed for use in applications such as: |
| |
| - **Birthday Message Generators**: Automatically generate custom birthday messages based on user preferences (e.g., age, tone, recipient type). |
| - **Chatbots & Virtual Assistants**: Personalized birthday greetings for virtual assistants or customer service bots. |
| - **Greeting Card Creation**: Automatically generate printable or shareable birthday greetings. |
| - **NLP-based Applications**: Use in Natural Language Processing models for birthday message generation or sentiment analysis. |
| |
| ## Example Code |
| |
| Here’s an example of how to use the dataset in Python: |
| |
| ```python |
| from datasets import load_dataset |
| |
| # Load the Birthday Quote Generator dataset |
| dataset = load_dataset("birthday_quote_generator") |
| |
| # Example: Get a random birthday wish for a 5-year-old |
| birthday_wish = dataset["train"].filter(lambda x: x["age"] == 5).shuffle().select([0]) |
| print(birthday_wish["wish_text"]) |
| ``` |
| |
| ## 📜 Licensing |
| |
| This dataset is licensed under **[Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/)**. |
| |
| --- |
| |
| ## 🤝 Contribution |
| |
| Contributions are welcome! |
| You can: |
| |
| - Open a pull request |
| - Suggest improvements |
| - Report issues |
| - Add new birthday messages following dataset guidelines |
| |
| Please ensure that any additions maintain the dataset’s quality, clarity, and diversity. |
| |
| --- |
| |