metadata
license: cc
task_categories:
- text-classification
- text-generation
language:
- en
size_categories:
- 1K<n<10K
configs:
- config_name: quotes
data_files: quotes.jsonl
- config_name: quotes_extended
data_files: quotes_extended.jsonl
Dataset Card for Motivational Quotes
This is a dataset of motivational quotes, scraped from Goodreads. 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:
// 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:”
}