File size: 3,162 Bytes
5e43f20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ff7a03c
 
 
 
 
 
 
 
5e43f20
f2581da
808b1d7
f2581da
ff7a03c
 
 
f2581da
770c545
c51236e
 
 
 
ff7a03c
f2581da
 
770c545
 
 
 
 
 
 
 
0ed5867
 
 
8bba500
 
 
 
 
0ed5867
f2581da
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
dataset_info:
  features:
  - name: headline
    dtype: string
  - name: category
    dtype: string
  - name: date
    dtype: string
  - name: views
    dtype: string
  - name: article
    dtype: string
  - name: link
    dtype: string
  - name: word_len
    dtype: int64
  - name: label
    dtype:
      class_label:
        names:
          '0': ሀገር አቀፍ ዜና
          '1': መዝናኛ
          '2': ስፖርት
          '3': ቢዝነስ
          '4': ዓለም አቀፍ ዜና
          '5': ፖለቲካ
  splits:
  - name: train
    num_bytes: 191486316
    num_examples: 49971
  download_size: 86414046
  dataset_size: 191486316
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
license: cc-by-4.0
task_categories:
- text-classification
- summarization
language:
- am
size_categories:
- 10K<n<100K
---
# Amharic News Category Classification

This amharic text dataset can be used to train/finetune models for the following tasks
* **classification** : using the categories 
* **summarization** : using the headlines

## Finetuning
Here is a github repo that contains three notebooks that use this dataset to finetune the following models.

* [xlm-roberta-base](https://huggingface.co/FacebookAI/xlm-roberta-base) : a multilingual transformer model with 280M parameters
* [bert-small-amharic](https://huggingface.co/rasyosef/bert-small-amharic) : a new amharic version of the bert-small transformer model with 25.7M parameters, pretrained from scratch using unlabelled amharic text data
* [bert-mini-amharic](https://huggingface.co/rasyosef/bert-mini-amharic) : a new amharic version of the bert-mini transformer model with 9.67M parameters, pretrained from scratch using unlabelled amharic text data

https://github.com/rasyosef/amharic-news-category-classification

The finetuned model classifies a given Amharic news article into one of the following 6 categories.
- ሀገር አቀፍ ዜና (Local News)
- መዝናኛ (Entertainment)
- ስፖርት (Sports)
- ቢዝነስ (Business)
- ዓለም አቀፍ ዜና (International News)
- ፖለቲካ (Politics)

#### Fine-tuned Model Performance
Since this is a multi-class classification task, the reported precision, recall, and f1 metrics are macro averages.

|Model|Size (# params)|Accuracy|Precision|Recall|F1|
|-----|----|--------|---------|------|--|
|xlm-roberta-base|279M|0.9|0.88|0.88|0.88|
|bert-small-amharic|25.7M|0.89|0.86|0.87|0.86|
|bert-mini-amharic|9.67M|0.87|0.83|0.83|0.83|

## Original CSV and Paper
The original csv file can be found in this git repository https://github.com/IsraelAbebe/An-Amharic-News-Text-classification-Dataset

Paper: https://arxiv.org/abs/2103.05639

While there is a version of this dataset that's already available on huggingface hub ([israel/Amharic-News-Text-classification-Dataset](https://huggingface.co/datasets/israel/Amharic-News-Text-classification-Dataset)), that version had been preprocessed to remove punctuation from the articles, while this version contains the entire text along with punctuations. As a result, this version is more preferable for finetuning transformer models.