--- language: - en --- # Dataset for quote generation ## Dataset Description **Name**: QuoteData **Description**: This dataset contains quotes for a quote generation task. It was created to fine-tune a pre-trained model for a text generation task. ## Dataset Structure **Data Fields**: - `quote` (string): The quote to be classifer - `author` (string): The author name - `tag` (string): The tag - `keywords` (list of strings): The keywords generated with ## Usage **Download**: The dataset can be downloaded from [Hugging Face Datasets](https://huggingface.co/clemsadand/quote_data). **Loading Dataset**: ```python from datasets import load_dataset dataset = load_dataset('clemsadand/quote_data') print(dataset['train'][0])