fgaim commited on
Commit
2376b2e
1 Parent(s): 675b672

Update README

Browse files
Files changed (1) hide show
  1. README.md +36 -3
README.md CHANGED
@@ -5,9 +5,30 @@ widget:
5
  datasets:
6
  - TLMD
7
  - NTC
 
 
 
 
 
8
  model-index:
9
- - name: tiroberta-pos
10
- results: []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ---
12
 
13
 
@@ -16,6 +37,16 @@ model-index:
16
  This model is a fine-tuned version of [TiELECTRA](https://huggingface.co/fgaim/tielectra-small) on the NTC-v1 dataset (Tedla et al. 2016).
17
 
18
 
 
 
 
 
 
 
 
 
 
 
19
  ## Training
20
 
21
  ### Hyperparameters
@@ -143,5 +174,7 @@ If you use this model in your product or research, please cite as follows:
143
  ## References
144
 
145
  ```
146
- Tedla, Y., Yamamoto, K. & Marasinghe, A. 2016. Tigrinya Part-of-Speech Tagging with Morphological Patterns and the New Nagaoka Tigrinya Corpus. International Journal Of Computer Applications 146 pp. 33-41 (2016).
 
 
147
  ```
5
  datasets:
6
  - TLMD
7
  - NTC
8
+ metrics:
9
+ - f1
10
+ - precision
11
+ - recall
12
+ - accuracy
13
  model-index:
14
+ - name: tielectra-small-pos
15
+ results:
16
+ - task:
17
+ name: Token Classification
18
+ type: token-classification
19
+ metrics:
20
+ - name: F1
21
+ type: f1
22
+ value: 0.9456
23
+ - name: Precision
24
+ type: precision
25
+ value: 0.9456
26
+ - name: Recall
27
+ type: recall
28
+ value: 0.9456
29
+ - name: Accuracy
30
+ type: accuracy
31
+ value: 0.9456
32
  ---
33
 
34
 
37
  This model is a fine-tuned version of [TiELECTRA](https://huggingface.co/fgaim/tielectra-small) on the NTC-v1 dataset (Tedla et al. 2016).
38
 
39
 
40
+ ## Basic usage
41
+
42
+ ```python
43
+ from transformers import pipeline
44
+
45
+ ti_pos = pipeline("token-classification", model="fgaim/tielectra-small-pos")
46
+ ti_pos("ድምጻዊ ኣብርሃም ኣፈወርቂ ንዘልኣለም ህያው ኮይኑ ኣብ ልብና ይነብር")
47
+ ```
48
+
49
+
50
  ## Training
51
 
52
  ### Hyperparameters
174
  ## References
175
 
176
  ```
177
+ Tedla, Y., Yamamoto, K. & Marasinghe, A. 2016.
178
+ Tigrinya Part-of-Speech Tagging with Morphological Patterns and the New Nagaoka Tigrinya Corpus.
179
+ International Journal Of Computer Applications 146 pp. 33-41 (2016).
180
  ```