Datasets:
Aymeric Roucher
commited on
Commit
·
ec31c70
1
Parent(s):
714e033
Update README.md
Browse files
README.md
CHANGED
@@ -13,4 +13,56 @@ task_categories:
|
|
13 |
- text-classification
|
14 |
- conversational
|
15 |
- fill-mask
|
16 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
- text-classification
|
14 |
- conversational
|
15 |
- fill-mask
|
16 |
+
---
|
17 |
+
Dataset Card for English Historical Quotes
|
18 |
+
|
19 |
+
# I-Dataset Summary
|
20 |
+
|
21 |
+
english_historical_quotes is a dataset of many historical quotes.
|
22 |
+
This dataset can be used for multi-label text classification and text generation. The content of each quote is in English.
|
23 |
+
|
24 |
+
# II-Supported Tasks and Leaderboards
|
25 |
+
|
26 |
+
Multi-label text classification : The dataset can be used to train a model for text-classification, which consists of classifying quotes by author as well as by topic (using tags). Success on this task is typically measured by achieving a high or low accuracy.
|
27 |
+
Text-generation : The dataset can be used to train a model to generate quotes by fine-tuning an existing pretrained model on the corpus composed of all quotes (or quotes by author).
|
28 |
+
|
29 |
+
# III-Languages
|
30 |
+
|
31 |
+
The texts in the dataset are in English (en).
|
32 |
+
|
33 |
+
# IV-Dataset Structure
|
34 |
+
Data Instances
|
35 |
+
|
36 |
+
A JSON-formatted example of a typical instance in the dataset:
|
37 |
+
|
38 |
+
{'author': 'Ralph Waldo Emerson',
|
39 |
+
'quote': '“To be yourself in a world that is constantly trying to make you something else is the greatest accomplishment.”',
|
40 |
+
'tags': ['accomplishment', 'be-yourself', 'conformity', 'individuality']}
|
41 |
+
|
42 |
+
### Data Fields
|
43 |
+
|
44 |
+
author : The author of the quote.
|
45 |
+
quote : The text of the quote.
|
46 |
+
tags: The tags could be characterized as topics around the quote.
|
47 |
+
|
48 |
+
### Data Splits
|
49 |
+
|
50 |
+
The dataset is one block, so that it can be further processed using Hugging Face `datasets` functions like the ``.train_test_split() method.
|
51 |
+
|
52 |
+
# V-Dataset Creation
|
53 |
+
Curation Rationale
|
54 |
+
|
55 |
+
The goal is to share good datasets with the HuggingFace community so that they can use them in NLP tasks and advance artificial intelligence.
|
56 |
+
|
57 |
+
### Source Data
|
58 |
+
|
59 |
+
The data has been aggregated from various open-access internet archives. Then it has been manually refined, duplicates and false quotes removed by me.
|
60 |
+
|
61 |
+
|
62 |
+
# VI-Additional Informations
|
63 |
+
Dataset Curators
|
64 |
+
|
65 |
+
Aymeric Roucher
|
66 |
+
|
67 |
+
Licensing Information
|
68 |
+
This work is licensed under a MIT License.
|