ArBert commited on
Commit
d3cd105
1 Parent(s): 1a2bc61

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +84 -0
README.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - conll2003
7
+ metrics:
8
+ - precision
9
+ - recall
10
+ - f1
11
+ model-index:
12
+ - name: roberta-base-finetuned-ner-kmeans
13
+ results:
14
+ - task:
15
+ name: Token Classification
16
+ type: token-classification
17
+ dataset:
18
+ name: conll2003
19
+ type: conll2003
20
+ args: conll2003
21
+ metrics:
22
+ - name: Precision
23
+ type: precision
24
+ value: 0.955868544600939
25
+ - name: Recall
26
+ type: recall
27
+ value: 0.9614658103513412
28
+ - name: F1
29
+ type: f1
30
+ value: 0.9586590074394953
31
+ ---
32
+
33
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
34
+ should probably proofread and complete it, then remove this comment. -->
35
+
36
+ # roberta-base-finetuned-ner-kmeans
37
+
38
+ This model is a fine-tuned version of [ArBert/roberta-base-finetuned-ner](https://huggingface.co/ArBert/roberta-base-finetuned-ner) on the conll2003 dataset.
39
+ It achieves the following results on the evaluation set:
40
+ - Loss: 0.0592
41
+ - Precision: 0.9559
42
+ - Recall: 0.9615
43
+ - F1: 0.9587
44
+
45
+ ## Model description
46
+
47
+ More information needed
48
+
49
+ ## Intended uses & limitations
50
+
51
+ More information needed
52
+
53
+ ## Training and evaluation data
54
+
55
+ More information needed
56
+
57
+ ## Training procedure
58
+
59
+ ### Training hyperparameters
60
+
61
+ The following hyperparameters were used during training:
62
+ - learning_rate: 2e-05
63
+ - train_batch_size: 16
64
+ - eval_batch_size: 16
65
+ - seed: 42
66
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
67
+ - lr_scheduler_type: linear
68
+ - num_epochs: 3
69
+
70
+ ### Training results
71
+
72
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 |
73
+ |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|
74
+ | 0.0248 | 1.0 | 878 | 0.0609 | 0.9507 | 0.9561 | 0.9534 |
75
+ | 0.0163 | 2.0 | 1756 | 0.0640 | 0.9515 | 0.9578 | 0.9546 |
76
+ | 0.0089 | 3.0 | 2634 | 0.0592 | 0.9559 | 0.9615 | 0.9587 |
77
+
78
+
79
+ ### Framework versions
80
+
81
+ - Transformers 4.16.2
82
+ - Pytorch 1.10.0+cu111
83
+ - Datasets 1.18.3
84
+ - Tokenizers 0.11.0