rollerhafeezh-amikom commited on
Commit
68c0929
1 Parent(s): 0b57d2b

Training complete

Browse files
Files changed (1) hide show
  1. README.md +94 -0
README.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model: xlm-roberta-large
4
+ tags:
5
+ - generated_from_trainer
6
+ datasets:
7
+ - wikiann
8
+ metrics:
9
+ - precision
10
+ - recall
11
+ - f1
12
+ - accuracy
13
+ model-index:
14
+ - name: xlm-roberta-large-ner-silvanus
15
+ results:
16
+ - task:
17
+ name: Token Classification
18
+ type: token-classification
19
+ dataset:
20
+ name: wikiann
21
+ type: wikiann
22
+ config: id
23
+ split: validation
24
+ args: id
25
+ metrics:
26
+ - name: Precision
27
+ type: precision
28
+ value: 0.957203615098352
29
+ - name: Recall
30
+ type: recall
31
+ value: 0.9714054491502563
32
+ - name: F1
33
+ type: f1
34
+ value: 0.964252242602758
35
+ - name: Accuracy
36
+ type: accuracy
37
+ value: 0.9885975250441956
38
+ ---
39
+
40
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
41
+ should probably proofread and complete it, then remove this comment. -->
42
+
43
+ # xlm-roberta-large-ner-silvanus
44
+
45
+ This model is a fine-tuned version of [xlm-roberta-large](https://huggingface.co/xlm-roberta-large) on the wikiann dataset.
46
+ It achieves the following results on the evaluation set:
47
+ - Loss: 0.0523
48
+ - Precision: 0.9572
49
+ - Recall: 0.9714
50
+ - F1: 0.9643
51
+ - Accuracy: 0.9886
52
+
53
+ ## Model description
54
+
55
+ More information needed
56
+
57
+ ## Intended uses & limitations
58
+
59
+ More information needed
60
+
61
+ ## Training and evaluation data
62
+
63
+ More information needed
64
+
65
+ ## Training procedure
66
+
67
+ ### Training hyperparameters
68
+
69
+ The following hyperparameters were used during training:
70
+ - learning_rate: 5e-05
71
+ - train_batch_size: 6
72
+ - eval_batch_size: 8
73
+ - seed: 42
74
+ - gradient_accumulation_steps: 4
75
+ - total_train_batch_size: 24
76
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
77
+ - lr_scheduler_type: linear
78
+ - num_epochs: 3
79
+
80
+ ### Training results
81
+
82
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
83
+ |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
84
+ | No log | 1.0 | 285 | 0.0795 | 0.9222 | 0.9342 | 0.9282 | 0.9763 |
85
+ | 0.112 | 2.0 | 570 | 0.0613 | 0.9295 | 0.9560 | 0.9426 | 0.9844 |
86
+ | 0.112 | 3.0 | 855 | 0.0523 | 0.9572 | 0.9714 | 0.9643 | 0.9886 |
87
+
88
+
89
+ ### Framework versions
90
+
91
+ - Transformers 4.35.0
92
+ - Pytorch 2.1.0+cu118
93
+ - Datasets 2.14.6
94
+ - Tokenizers 0.14.1