om-ashish-soni commited on
Commit
5edd6f2
1 Parent(s): cc87022

Shree Ganeshay Namah, NER-POS Training with seqeval metrics complete

Browse files
Files changed (1) hide show
  1. README.md +99 -0
README.md ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: om-ashish-soni/pos-ner-tagging-v3
4
+ tags:
5
+ - generated_from_trainer
6
+ datasets:
7
+ - conll2003
8
+ metrics:
9
+ - precision
10
+ - recall
11
+ - f1
12
+ - accuracy
13
+ model-index:
14
+ - name: pos-ner-tagging-v4
15
+ results:
16
+ - task:
17
+ name: Token Classification
18
+ type: token-classification
19
+ dataset:
20
+ name: conll2003
21
+ type: conll2003
22
+ config: conll2003
23
+ split: validation
24
+ args: conll2003
25
+ metrics:
26
+ - name: Precision
27
+ type: precision
28
+ value: 0.9242642437694764
29
+ - name: Recall
30
+ type: recall
31
+ value: 0.9264290339671514
32
+ - name: F1
33
+ type: f1
34
+ value: 0.9244306954134476
35
+ - name: Accuracy
36
+ type: accuracy
37
+ value: 0.9264290339671514
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
+ # pos-ner-tagging-v4
44
+
45
+ This model is a fine-tuned version of [om-ashish-soni/pos-ner-tagging-v3](https://huggingface.co/om-ashish-soni/pos-ner-tagging-v3) on the conll2003 dataset.
46
+ It achieves the following results on the evaluation set:
47
+ - Loss: 0.6642
48
+ - Precision: 0.9243
49
+ - Recall: 0.9264
50
+ - F1: 0.9244
51
+ - Accuracy: 0.9264
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: 2e-05
71
+ - train_batch_size: 8
72
+ - eval_batch_size: 8
73
+ - seed: 42
74
+ - gradient_accumulation_steps: 32
75
+ - total_train_batch_size: 256
76
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
77
+ - lr_scheduler_type: linear
78
+ - num_epochs: 8
79
+
80
+ ### Training results
81
+
82
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
83
+ |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
84
+ | No log | 0.98 | 54 | 0.6425 | 0.9254 | 0.9272 | 0.9250 | 0.9272 |
85
+ | No log | 1.99 | 109 | 0.6624 | 0.9239 | 0.9261 | 0.9240 | 0.9261 |
86
+ | No log | 2.99 | 164 | 0.6593 | 0.9245 | 0.9267 | 0.9245 | 0.9267 |
87
+ | No log | 3.99 | 219 | 0.6608 | 0.9251 | 0.9270 | 0.9250 | 0.9270 |
88
+ | No log | 4.99 | 274 | 0.6698 | 0.9246 | 0.9269 | 0.9245 | 0.9269 |
89
+ | No log | 6.0 | 329 | 0.6648 | 0.9246 | 0.9264 | 0.9244 | 0.9264 |
90
+ | No log | 7.0 | 384 | 0.6651 | 0.9244 | 0.9266 | 0.9245 | 0.9266 |
91
+ | No log | 7.87 | 432 | 0.6642 | 0.9243 | 0.9264 | 0.9244 | 0.9264 |
92
+
93
+
94
+ ### Framework versions
95
+
96
+ - Transformers 4.33.2
97
+ - Pytorch 2.0.1+cu118
98
+ - Datasets 2.14.5
99
+ - Tokenizers 0.13.3