clemsadand
commited on
Commit
•
68574fc
1
Parent(s):
12dd770
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Dataset for quote generation
|
2 |
+
|
3 |
+
## Dataset Description
|
4 |
+
|
5 |
+
**Name**: QuoteData
|
6 |
+
|
7 |
+
**Description**:
|
8 |
+
This dataset contains quotes for a quote generation task. It was created to fine-tune a pre-trained model for a text generation task.
|
9 |
+
|
10 |
+
**Source**: Collected from various online sources.
|
11 |
+
|
12 |
+
**Dataset Creation**: The data was collected and labeled by a team of annotators. It was preprocessed to remove any sensitive information.
|
13 |
+
|
14 |
+
## Dataset Structure
|
15 |
+
|
16 |
+
**Data Fields**:
|
17 |
+
- `quote` (string): The quote to be classifer
|
18 |
+
- `author` (string): The author name
|
19 |
+
- `tag` (string): The tag
|
20 |
+
- `keywords` (list of strings): The keywords generated with
|
21 |
+
|
22 |
+
**Data Splits**:
|
23 |
+
- 3488 rows
|
24 |
+
|
25 |
+
## Usage
|
26 |
+
|
27 |
+
**Download**: The dataset can be downloaded from [Hugging Face Datasets](https://huggingface.co/clemsadand/quote_data).
|
28 |
+
|
29 |
+
**Loading Dataset**:
|
30 |
+
```python
|
31 |
+
from datasets import load_dataset
|
32 |
+
|
33 |
+
dataset = load_dataset('clemsadand/quote_data')
|
34 |
+
print(dataset['train'][0])
|