File size: 1,014 Bytes
42629a3
 
8fd5f19
 
 
 
 
 
 
2befd2e
 
7cf0127
2befd2e
7cf0127
86b352c
 
 
 
2befd2e
 
 
 
 
86b352c
 
2befd2e
86b352c
 
 
 
2befd2e
 
 
 
 
 
 
 
86b352c
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
36
37
38
39
40
---
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](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:”
}

```