VexPoli commited on
Commit
ad0c24b
·
verified ·
1 Parent(s): d5a68fe

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +67 -0
README.md ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - summarization
4
+ language:
5
+ - en
6
+ ---
7
+
8
+
9
+
10
+ ## Dataset Card for processed_dataset_top.csv
11
+
12
+ This dataset is an enhanced version of the CNN/DailyMail summarization dataset. Articles have been preprocessed and keywords are prepended at the top of each article to provide additional context for fine-tuning summarization models.
13
+ ## Dataset Details
14
+ # Dataset Description
15
+
16
+ The dataset includes news articles with keywords prepended at the top, formatted with special tokens for compatibility with transformer-based models. Keywords were extracted using KeyBERT to emphasize key topics from the articles. Each article is paired with its corresponding summary (highlights).
17
+ Dataset Sources
18
+ Original Dataset
19
+
20
+ The original dataset is the CNN/DailyMail summarization dataset, which contains:
21
+
22
+ Articles: News articles from CNN and DailyMail.
23
+ Highlights: Human-written summaries of the articles.
24
+
25
+ ## Preprocessing Applied
26
+ # Keyword Extraction:
27
+
28
+ Extracted keywords using KeyBERT.
29
+ Keywords were formatted with <keyword> special tokens and prepended at the top of each article.
30
+
31
+ # Dataset Structure
32
+
33
+ The dataset contains two columns:
34
+
35
+ article: Preprocessed articles with keywords prepended at the top.
36
+ highlights: Preprocessed summaries (highlights).
37
+
38
+ # Example:
39
+ Article:
40
+
41
+ Keywords: <keyword>GLOBAL ECONOMY</keyword>, <keyword>INFLATION</keyword>, <keyword>SUPPLY CHAIN</keyword>
42
+
43
+ The global economy is facing unprecedented challenges due to inflation and supply chain disruptions.
44
+
45
+ Highlights:
46
+
47
+ Global economy faces challenges from inflation and supply chain issues.
48
+
49
+ ## Intended Use
50
+
51
+ This dataset was created to provide an enhanced summarization dataset for experiments in keyword-based summarization. Prepending keywords at the top of the text acts as a primer, potentially improving model performance by focusing attention on key topics early.
52
+ # Possible Use Cases:
53
+
54
+ Fine-tuning summarization models such as DistilBART or BART.
55
+ Evaluating the impact of prepended contextual keywords on summarization accuracy.
56
+
57
+ ## Limitations
58
+
59
+ Contextual Bias:
60
+ Prepending keywords may introduce a bias where the model overly focuses on the prepended keywords rather than the article's main content.
61
+
62
+ Keyword Extraction Quality:
63
+ Automatically extracted keywords might not always reflect the true focus of the article.
64
+
65
+ ## Citation
66
+
67
+ If using this dataset, please cite the original CNN/DailyMail summarization dataset and mention the preprocessing and keyword extraction enhancements.