okite97 commited on
Commit
16303b1
·
1 Parent(s): 1cdacb0

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +119 -0
README.md ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - other
4
+ language:
5
+ - 'en'
6
+ language_creators:
7
+ - found
8
+ license:
9
+ - afl-3.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: News Dataset
13
+ size_categories:
14
+ - 1K<n<10K
15
+ source_datasets:
16
+ - original
17
+ tags: []
18
+ task_categories:
19
+ - text-classification
20
+ task_ids:
21
+ - topic-classification
22
+ - multi-class-classification
23
+ ---
24
+
25
+ # Dataset Card for news-data
26
+
27
+ ## Table of Contents
28
+ - [Table of Contents](#table-of-contents)
29
+ - [Dataset Description](#dataset-description)
30
+ - [Dataset Summary](#dataset-summary)
31
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
32
+ - [Languages](#languages)
33
+ - [Dataset Structure](#dataset-structure)
34
+ - [Data Instances](#data-instances)
35
+ - [Data Fields](#data-fields)
36
+ - [Data Splits](#data-splits)
37
+ - [Dataset Creation](#dataset-creation)
38
+ - [Curation Rationale](#curation-rationale)
39
+ - [Source Data](#source-data)
40
+ - [Annotations](#annotations)
41
+
42
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
43
+ - [Social Impact of Dataset](#social-impact-of-dataset)
44
+ - [Discussion of Biases](#discussion-of-biases)
45
+
46
+ - [Dataset Curators](#dataset-curators)
47
+
48
+
49
+ ### Dataset Summary
50
+
51
+ The News Dataset is an English-language dataset containing just over 4k unique news articles scrapped from AriseTv- One of the most popular news television in Nigeria.
52
+ ### Supported Tasks and Leaderboards
53
+
54
+ It supports news article classification into different categories.
55
+
56
+ ### Languages
57
+
58
+ English
59
+
60
+ ## Dataset Structure
61
+
62
+ ### Data Instances
63
+
64
+ '''
65
+ {'Title': 'Nigeria: APC Yet to Zone Party Positions Ahead of Convention'
66
+ 'Excerpt': 'The leadership of the All Progressives Congress (APC), has denied reports that it had zoned some party positions ahead of'
67
+ 'Category': 'politics'
68
+ 'labels': 2}
69
+ '''
70
+
71
+ ### Data Fields
72
+ * Title: a string containing the title of a news title as shown
73
+ * Excerpt: a string containing a short extract from the body of the news
74
+ * Category: a string that tells the category of an example (string label)
75
+ * labels: integer telling the class of an example (label)
76
+
77
+ ### Data Splits
78
+
79
+ | Dataset Split | Number of instances in split |
80
+ | ----------- | ----------- |
81
+ | Train | 4,594 |
82
+ | Paragraph | 811 |
83
+
84
+ ## Dataset Creation
85
+
86
+ ### Source Data
87
+
88
+ #### Initial Data Collection and Normalization
89
+
90
+ The code for the dataset creation at *https://github.com/chimaobi-okite/NLP-Projects-Competitions/blob/main/NewsCategorization/Data/NewsDataScraping.ipynb*. The examples were scrapped from
91
+ <https://www.arise.tv/>
92
+
93
+
94
+ ### Annotations
95
+
96
+ #### Annotation process
97
+
98
+ The annotation is based on the news category in the [arisetv](https://www.arise.tv) website
99
+
100
+ #### Who are the annotators?
101
+
102
+ Journalists at arisetv
103
+
104
+ ## Considerations for Using the Data
105
+
106
+ ### Social Impact of Dataset
107
+
108
+ The purpose of this dataset is to help develop models that can classify news articles into categories.
109
+
110
+ This task is useful for efficiently presenting information given a large quantity of text. It should be made clear that any summarizations produced by models trained on this dataset are reflective of the language used in the articles, but are in fact automatically generated.
111
+
112
+ ### Discussion of Biases
113
+ This data is biased towards news happenings in Nigeria but the model built using it can as well classify news from other parts of the world
114
+ with a slight degradation in performance.
115
+
116
+
117
+ ### Dataset Curators
118
+
119
+ The dataset is created by people at arise but was scrapped by [@github-chimaobi-okite](https://github.com/chimaobi-okite/)