avinasht commited on
Commit
23c1b07
·
verified ·
1 Parent(s): 6d29814

Acc0.8526841448189763, F10.8521027062665371 , Augmented with roberta-base.csv, finetuned on bert-base-uncased

Browse files
Files changed (4) hide show
  1. README.md +76 -0
  2. config.json +37 -0
  3. model.safetensors +3 -0
  4. training_args.bin +3 -0
README.md ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: bert-base-uncased
4
+ tags:
5
+ - generated_from_trainer
6
+ metrics:
7
+ - accuracy
8
+ - f1
9
+ - precision
10
+ - recall
11
+ model-index:
12
+ - name: bert-base-uncased_roberta-base
13
+ results: []
14
+ ---
15
+
16
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
17
+ should probably proofread and complete it, then remove this comment. -->
18
+
19
+ # bert-base-uncased_roberta-base
20
+
21
+ This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on an unknown dataset.
22
+ It achieves the following results on the evaluation set:
23
+ - Loss: 0.4695
24
+ - Accuracy: 0.8705
25
+ - F1: 0.8700
26
+ - Precision: 0.8734
27
+ - Recall: 0.8705
28
+
29
+ ## Model description
30
+
31
+ More information needed
32
+
33
+ ## Intended uses & limitations
34
+
35
+ More information needed
36
+
37
+ ## Training and evaluation data
38
+
39
+ More information needed
40
+
41
+ ## Training procedure
42
+
43
+ ### Training hyperparameters
44
+
45
+ The following hyperparameters were used during training:
46
+ - learning_rate: 0.0001
47
+ - train_batch_size: 64
48
+ - eval_batch_size: 64
49
+ - seed: 42
50
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
51
+ - lr_scheduler_type: linear
52
+ - lr_scheduler_warmup_steps: 1000
53
+ - num_epochs: 25
54
+
55
+ ### Training results
56
+
57
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Precision | Recall |
58
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|:---------:|:------:|
59
+ | 0.8895 | 1.0 | 91 | 0.8628 | 0.6147 | 0.5774 | 0.5987 | 0.6147 |
60
+ | 0.5526 | 2.0 | 182 | 0.5921 | 0.7722 | 0.7705 | 0.7856 | 0.7722 |
61
+ | 0.3669 | 3.0 | 273 | 0.4204 | 0.8346 | 0.8328 | 0.8359 | 0.8346 |
62
+ | 0.282 | 4.0 | 364 | 0.4526 | 0.8471 | 0.8475 | 0.8487 | 0.8471 |
63
+ | 0.1444 | 5.0 | 455 | 0.4695 | 0.8705 | 0.8700 | 0.8734 | 0.8705 |
64
+ | 0.1611 | 6.0 | 546 | 0.5552 | 0.8502 | 0.8503 | 0.8541 | 0.8502 |
65
+ | 0.0951 | 7.0 | 637 | 0.6573 | 0.8440 | 0.8430 | 0.8457 | 0.8440 |
66
+ | 0.1256 | 8.0 | 728 | 0.5882 | 0.8393 | 0.8411 | 0.8569 | 0.8393 |
67
+ | 0.1021 | 9.0 | 819 | 0.5695 | 0.8612 | 0.8614 | 0.8632 | 0.8612 |
68
+ | 0.0762 | 10.0 | 910 | 0.8848 | 0.8003 | 0.7958 | 0.8109 | 0.8003 |
69
+
70
+
71
+ ### Framework versions
72
+
73
+ - Transformers 4.37.0
74
+ - Pytorch 2.1.2
75
+ - Datasets 2.1.0
76
+ - Tokenizers 0.15.1
config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-uncased",
3
+ "architectures": [
4
+ "BertForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "LABEL_0",
14
+ "1": "LABEL_1",
15
+ "2": "LABEL_2"
16
+ },
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 3072,
19
+ "label2id": {
20
+ "LABEL_0": 0,
21
+ "LABEL_1": 1,
22
+ "LABEL_2": 2
23
+ },
24
+ "layer_norm_eps": 1e-12,
25
+ "max_position_embeddings": 512,
26
+ "model_type": "bert",
27
+ "num_attention_heads": 12,
28
+ "num_hidden_layers": 12,
29
+ "pad_token_id": 0,
30
+ "position_embedding_type": "absolute",
31
+ "problem_type": "single_label_classification",
32
+ "torch_dtype": "float32",
33
+ "transformers_version": "4.37.0",
34
+ "type_vocab_size": 2,
35
+ "use_cache": true,
36
+ "vocab_size": 30522
37
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5cb6b1575b06501af67332a616022e3c3e798fda16d2c8b20580817e6958805
3
+ size 437961724
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d0bbcc1ab1380796fbb6a7834a77c749136d8b7c7ac552e7d9d81f0e2b898c1
3
+ size 4664