tngk commited on
Commit
ddcbf2b
·
verified ·
1 Parent(s): 87f1297

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: multilingual
3
+ tags:
4
+ - pos-tagging
5
+ - afro-xlmr
6
+ - token-classification
7
+ license: mit
8
+ ---
9
+
10
+ # Afro-XLM-Roberta Mini POS Tagger
11
+
12
+ This model was fine-tuned on part-of-speech tagging using the `Davlan/afro-xlmr-mini` model.
13
+ It supports token classification for low-resource African languages.
14
+
15
+ ## Usage
16
+
17
+ ```python
18
+ from transformers import AutoTokenizer, AutoModelForTokenClassification
19
+
20
+ tokenizer = AutoTokenizer.from_pretrained("your-username/afroxlmr-pos")
21
+ model = AutoModelForTokenClassification.from_pretrained("your-username/afroxlmr-pos")
22
+
23
+
24
+ We have fine tune the pretrained model with another architechture and we had obtained a higher precision , recall and F1 score. For the training and dev data we have split our own data into train and dev and we have use their test set to get the final performance.
25
+
26
+ ## Data Set
27
+
28
+ Our own Data : https://github.com/hausanlp/HERDPhobia
29
+ Their Data : https://github.com/masakhane-io/masakhane-pos
30
+
31
+ ## Precision - 0.914
32
+ ## Recall - 0.909
33
+ ## F1 - 0.912
34
+ ## loss - 1.27