Akash190104 commited on
Commit
f2eb889
1 Parent(s): 80ee96c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +116 -0
README.md CHANGED
@@ -16,4 +16,120 @@ configs:
16
  data_files:
17
  - split: train
18
  path: data/train-*
 
 
 
 
 
 
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  data_files:
17
  - split: train
18
  path: data/train-*
19
+ task_categories:
20
+ - text-classification
21
+ language:
22
+ - kn
23
+ size_categories:
24
+ - 1K<n<10K
25
  ---
26
+
27
+ # Dataset Card for kannada_news dataset
28
+
29
+ ## Table of Contents
30
+ - [Dataset Description](#dataset-description)
31
+ - [Dataset Summary](#dataset-summary)
32
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
33
+ - [Languages](#languages)
34
+ - [Dataset Structure](#dataset-structure)
35
+ - [Data Instances](#data-instances)
36
+ - [Data Fields](#data-fields)
37
+ - [Data Splits](#data-splits)
38
+ - [Dataset Creation](#dataset-creation)
39
+ - [Curation Rationale](#curation-rationale)
40
+ - [Source Data](#source-data)
41
+ - [Annotations](#annotations)
42
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
43
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
44
+ - [Social Impact of Dataset](#social-impact-of-dataset)
45
+ - [Discussion of Biases](#discussion-of-biases)
46
+ - [Other Known Limitations](#other-known-limitations)
47
+ - [Additional Information](#additional-information)
48
+ - [Dataset Curators](#dataset-curators)
49
+ - [Licensing Information](#licensing-information)
50
+ - [Citation Information](#citation-information)
51
+ - [Contributions](#contributions)
52
+
53
+ ## Dataset Description
54
+
55
+ - **Homepage:** [Kaggle link](https://www.kaggle.com/disisbig/kannada-news-dataset) for kannada news headlines dataset
56
+ - **Repository:**
57
+ - **Paper:**
58
+ - **Leaderboard:**
59
+ - **Point of Contact:** More information about the dataset and the models can be found [here](https://github.com/goru001/nlp-for-kannada)
60
+
61
+ ### Dataset Summary
62
+
63
+ The Kannada news dataset contains only the headlines of news article in three categories:
64
+ Entertainment, Tech, and Sports.
65
+
66
+ The data set contains around 6300 news article headlines which are collected from Kannada news websites.
67
+ The data set has been cleaned and contains train and test set using which can be used to benchmark topic classification models in Kannada.
68
+
69
+ ### Supported Tasks and Leaderboards
70
+
71
+ [More Information Needed]
72
+
73
+ ### Languages
74
+
75
+ Kannada (kn)
76
+
77
+ ## Dataset Structure
78
+
79
+ ### Data Instances
80
+
81
+ The data has two files. A train.csv and valid.csv. An example row of the dataset is as below:
82
+
83
+ ```
84
+ {
85
+ 'headline': 'ಫಿಫಾ ವಿಶ್ವಕಪ್ ಫೈನಲ್: ಅತಿರೇಕಕ್ಕೇರಿದ ಸಂಭ್ರಮಾಚರಣೆ; ಅಭಿಮಾನಿಗಳ ಹುಚ್ಚು ವರ್ತನೆಗೆ ವ್ಯಾಪಕ ಖಂಡನೆ',
86
+ 'label':'sports'
87
+ }
88
+ ```
89
+ NOTE: The data has very few examples on the technology (class label: 'tech') topic. [More Information Needed]
90
+
91
+ ### Data Fields
92
+
93
+ Data has two fields:
94
+ - headline: text headline in kannada (string)
95
+ - label : corresponding class label which the headlines pertains to in english (string)
96
+
97
+ ### Data Splits
98
+
99
+ The dataset is divided into two splits. All the headlines are scraped from news websites on the internet.
100
+
101
+ | | train | validation |
102
+ |-----------------|--------:|-----------:|
103
+ | Input Sentences | 5167 | 1293 |
104
+
105
+ ## Dataset Creation
106
+
107
+ ### Curation Rationale
108
+
109
+ [More Information Needed]
110
+
111
+ ### Source Data
112
+
113
+ #### Initial Data Collection and Normalization
114
+
115
+ [More Information Needed]
116
+
117
+ #### Who are the source language producers?
118
+
119
+ [More Information Needed]
120
+
121
+ ### Annotations
122
+
123
+ #### Annotation process
124
+
125
+ [More Information Needed]
126
+
127
+ #### Who are the annotators?
128
+
129
+ [More Information Needed]
130
+
131
+ ### Personal and Sensitive Information
132
+
133
+ [More Information Needed]
134
+
135
+ I have copied this dataset and republished it as the dataset card was not visible. Thanks to [@vrindaprabhu](https://github.com/vrindaprabhu) for adding this dataset initially.