motivational-quotes / README.md
Andreas Sünder
Add extended dataset
2befd2e
|
raw
history blame
1.01 kB
---
license: cc
task_categories:
- text-classification
- text-generation
language:
- en
size_categories:
- 1K<n<10K
configs:
- config_name: quotes
data_files: 'quotes.json'
- config_name: quotes_extended
data_files: 'quotes_extended.json'
---
# Dataset Card for Motivational Quotes
This is a dataset of motivational quotes, scraped from [Goodreads](https://www.goodreads.com/quotes/). It contains more than 4000 quotes, each of them labeled with the corresponding author.
## Data overview
The `quotes` subset contains the raw quotes and the corresponding authors. The `quotes_extended` subset contains the raw quotes plus a short prompt that can be used to train LLMs to generate new quotes:
```json
// quotes
{
"quote": "“Do not fear failure but rather fear not trying.”",
"author": "Roy T. Bennett"
}
// quotes-extended
{
"quote": "“Do not fear failure but rather fear not trying.”",
"author": "Roy T. Bennett",
"prompt": "Provide a motivational quote about resilience:”
}
```