zwellington
commited on
Commit
•
91add9d
1
Parent(s):
ed99c2a
update model card README.md
Browse files
README.md
CHANGED
@@ -5,9 +5,36 @@ tags:
|
|
5 |
- generated_from_trainer
|
6 |
datasets:
|
7 |
- azaheadhealth
|
|
|
|
|
|
|
|
|
|
|
8 |
model-index:
|
9 |
- name: microtest
|
10 |
-
results:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
---
|
12 |
|
13 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
@@ -16,6 +43,12 @@ should probably proofread and complete it, then remove this comment. -->
|
|
16 |
# microtest
|
17 |
|
18 |
This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on the azaheadhealth dataset.
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
## Model description
|
21 |
|
@@ -35,17 +68,21 @@ More information needed
|
|
35 |
|
36 |
The following hyperparameters were used during training:
|
37 |
- learning_rate: 2e-05
|
38 |
-
- train_batch_size:
|
39 |
-
- eval_batch_size:
|
40 |
- seed: 42
|
41 |
- gradient_accumulation_steps: 2
|
42 |
-
- total_train_batch_size:
|
43 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
44 |
- lr_scheduler_type: linear
|
45 |
- num_epochs: 1
|
46 |
|
47 |
### Training results
|
48 |
|
|
|
|
|
|
|
|
|
49 |
|
50 |
|
51 |
### Framework versions
|
|
|
5 |
- generated_from_trainer
|
6 |
datasets:
|
7 |
- azaheadhealth
|
8 |
+
metrics:
|
9 |
+
- accuracy
|
10 |
+
- f1
|
11 |
+
- precision
|
12 |
+
- recall
|
13 |
model-index:
|
14 |
- name: microtest
|
15 |
+
results:
|
16 |
+
- task:
|
17 |
+
name: Text Classification
|
18 |
+
type: text-classification
|
19 |
+
dataset:
|
20 |
+
name: azaheadhealth
|
21 |
+
type: azaheadhealth
|
22 |
+
config: micro
|
23 |
+
split: test
|
24 |
+
args: micro
|
25 |
+
metrics:
|
26 |
+
- name: Accuracy
|
27 |
+
type: accuracy
|
28 |
+
value: 1.0
|
29 |
+
- name: F1
|
30 |
+
type: f1
|
31 |
+
value: 1.0
|
32 |
+
- name: Precision
|
33 |
+
type: precision
|
34 |
+
value: 1.0
|
35 |
+
- name: Recall
|
36 |
+
type: recall
|
37 |
+
value: 1.0
|
38 |
---
|
39 |
|
40 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
43 |
# microtest
|
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.6111
|
48 |
+
- Accuracy: 1.0
|
49 |
+
- F1: 1.0
|
50 |
+
- Precision: 1.0
|
51 |
+
- Recall: 1.0
|
52 |
|
53 |
## Model description
|
54 |
|
|
|
68 |
|
69 |
The following hyperparameters were used during training:
|
70 |
- learning_rate: 2e-05
|
71 |
+
- train_batch_size: 1
|
72 |
+
- eval_batch_size: 1
|
73 |
- seed: 42
|
74 |
- gradient_accumulation_steps: 2
|
75 |
+
- total_train_batch_size: 2
|
76 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
77 |
- lr_scheduler_type: linear
|
78 |
- num_epochs: 1
|
79 |
|
80 |
### Training results
|
81 |
|
82 |
+
| Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Precision | Recall |
|
83 |
+
|:-------------:|:-----:|:----:|:---------------:|:--------:|:---:|:---------:|:------:|
|
84 |
+
| 0.5955 | 0.5 | 1 | 0.6676 | 0.5 | 0.5 | 0.5 | 0.5 |
|
85 |
+
| 0.633 | 1.0 | 2 | 0.6111 | 1.0 | 1.0 | 1.0 | 1.0 |
|
86 |
|
87 |
|
88 |
### Framework versions
|