zwellington commited on
Commit
2e79e5d
1 Parent(s): dff209c

update model card README.md

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: bert-base-uncased
4
+ tags:
5
+ - generated_from_trainer
6
+ datasets:
7
+ - azaheadhealth
8
+ metrics:
9
+ - accuracy
10
+ - f1
11
+ - precision
12
+ - recall
13
+ model-index:
14
+ - name: azahead-bert-v1.0
15
+ results:
16
+ - task:
17
+ name: Text Classification
18
+ type: text-classification
19
+ dataset:
20
+ name: azaheadhealth
21
+ type: azaheadhealth
22
+ config: small
23
+ split: test
24
+ args: small
25
+ metrics:
26
+ - name: Accuracy
27
+ type: accuracy
28
+ value: 0.7916666666666666
29
+ - name: F1
30
+ type: f1
31
+ value: 0.6666666666666666
32
+ - name: Precision
33
+ type: precision
34
+ value: 0.625
35
+ - name: Recall
36
+ type: recall
37
+ value: 0.7142857142857143
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
+ # azahead-bert-v1.0
44
+
45
+ This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on the azaheadhealth dataset.
46
+ It achieves the following results on the evaluation set:
47
+ - Loss: 0.5108
48
+ - Accuracy: 0.7917
49
+ - F1: 0.6667
50
+ - Precision: 0.625
51
+ - Recall: 0.7143
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
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
75
+ - lr_scheduler_type: linear
76
+ - num_epochs: 10
77
+
78
+ ### Training results
79
+
80
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Precision | Recall |
81
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|:---------:|:------:|
82
+ | 0.6157 | 1.0 | 20 | 0.5087 | 0.7083 | 0.0 | 0.0 | 0.0 |
83
+ | 0.4057 | 2.0 | 40 | 0.5892 | 0.7083 | 0.2222 | 0.5 | 0.1429 |
84
+ | 0.2788 | 3.0 | 60 | 0.4834 | 0.7917 | 0.4444 | 1.0 | 0.2857 |
85
+ | 0.1726 | 4.0 | 80 | 0.5108 | 0.7917 | 0.6667 | 0.625 | 0.7143 |
86
+ | 0.1271 | 5.0 | 100 | 0.6210 | 0.7917 | 0.6154 | 0.6667 | 0.5714 |
87
+ | 0.1045 | 6.0 | 120 | 0.6850 | 0.7917 | 0.6154 | 0.6667 | 0.5714 |
88
+ | 0.0108 | 7.0 | 140 | 0.7771 | 0.75 | 0.5714 | 0.5714 | 0.5714 |
89
+ | 0.0248 | 8.0 | 160 | 0.8454 | 0.7917 | 0.6154 | 0.6667 | 0.5714 |
90
+ | 0.0152 | 9.0 | 180 | 0.8667 | 0.7917 | 0.6154 | 0.6667 | 0.5714 |
91
+ | 0.0064 | 10.0 | 200 | 0.8776 | 0.75 | 0.5714 | 0.5714 | 0.5714 |
92
+
93
+
94
+ ### Framework versions
95
+
96
+ - Transformers 4.31.0
97
+ - Pytorch 2.2.0+cu121
98
+ - Datasets 2.16.1
99
+ - Tokenizers 0.13.2