khairi commited on
Commit
348ac4f
1 Parent(s): 27689a4

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +71 -0
README.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ metrics:
6
+ - accuracy
7
+ - f1
8
+ model-index:
9
+ - name: bert-tweet-disaster
10
+ results: []
11
+ ---
12
+
13
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
14
+ should probably proofread and complete it, then remove this comment. -->
15
+
16
+ # bert-tweet-disaster
17
+
18
+ This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on an unknown dataset.
19
+ It achieves the following results on the evaluation set:
20
+ - Loss: 0.9563
21
+ - Accuracy: 0.8320
22
+ - F1: 0.8095
23
+
24
+ ## Model description
25
+
26
+ More information needed
27
+
28
+ ## Intended uses & limitations
29
+
30
+ More information needed
31
+
32
+ ## Training and evaluation data
33
+
34
+ More information needed
35
+
36
+ ## Training procedure
37
+
38
+ ### Training hyperparameters
39
+
40
+ The following hyperparameters were used during training:
41
+ - learning_rate: 5e-05
42
+ - train_batch_size: 64
43
+ - eval_batch_size: 64
44
+ - seed: 42
45
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
46
+ - lr_scheduler_type: linear
47
+ - lr_scheduler_warmup_steps: 500
48
+ - num_epochs: 10
49
+
50
+ ### Training results
51
+
52
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 |
53
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|
54
+ | 0.605 | 1.0 | 108 | 0.4455 | 0.8123 | 0.7741 |
55
+ | 0.3878 | 2.0 | 216 | 0.3940 | 0.8438 | 0.8126 |
56
+ | 0.3228 | 3.0 | 324 | 0.4441 | 0.8241 | 0.8006 |
57
+ | 0.2526 | 4.0 | 432 | 0.4714 | 0.8333 | 0.8006 |
58
+ | 0.2002 | 5.0 | 540 | 0.5677 | 0.8189 | 0.7890 |
59
+ | 0.1391 | 6.0 | 648 | 0.6633 | 0.8307 | 0.8000 |
60
+ | 0.0922 | 7.0 | 756 | 0.8019 | 0.8294 | 0.8071 |
61
+ | 0.0693 | 8.0 | 864 | 0.8526 | 0.8333 | 0.8049 |
62
+ | 0.0495 | 9.0 | 972 | 0.9813 | 0.8241 | 0.8075 |
63
+ | 0.0345 | 10.0 | 1080 | 0.9563 | 0.8320 | 0.8095 |
64
+
65
+
66
+ ### Framework versions
67
+
68
+ - Transformers 4.20.1
69
+ - Pytorch 1.11.0
70
+ - Datasets 2.1.0
71
+ - Tokenizers 0.12.1