File size: 797 Bytes
fa39e0a 68574fc 2fe62b2 68574fc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
---
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.
<!-- **Source**: Collected from various online sources. -->
## 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])
|