abdulrahman-nuzha commited on
Commit
6542327
·
verified ·
1 Parent(s): 8dcdacf

End of training

Browse files
README.md ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: mit
4
+ base_model: intfloat/e5-base
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - accuracy
9
+ - precision
10
+ - recall
11
+ - f1
12
+ model-index:
13
+ - name: intfloat-e5-base-english-fp16
14
+ results: []
15
+ ---
16
+
17
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
18
+ should probably proofread and complete it, then remove this comment. -->
19
+
20
+ # intfloat-e5-base-english-fp16
21
+
22
+ This model is a fine-tuned version of [intfloat/e5-base](https://huggingface.co/intfloat/e5-base) on an unknown dataset.
23
+ It achieves the following results on the evaluation set:
24
+ - Loss: 0.3367
25
+ - Accuracy: 0.8772
26
+ - Precision: 0.8771
27
+ - Recall: 0.8772
28
+ - F1: 0.8760
29
+
30
+ ## Model description
31
+
32
+ More information needed
33
+
34
+ ## Intended uses & limitations
35
+
36
+ More information needed
37
+
38
+ ## Training and evaluation data
39
+
40
+ More information needed
41
+
42
+ ## Training procedure
43
+
44
+ ### Training hyperparameters
45
+
46
+ The following hyperparameters were used during training:
47
+ - learning_rate: 2e-05
48
+ - train_batch_size: 64
49
+ - eval_batch_size: 64
50
+ - seed: 42
51
+ - gradient_accumulation_steps: 2
52
+ - total_train_batch_size: 128
53
+ - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
54
+ - lr_scheduler_type: linear
55
+ - lr_scheduler_warmup_ratio: 0.3
56
+ - num_epochs: 10
57
+ - mixed_precision_training: Native AMP
58
+
59
+ ### Training results
60
+
61
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | Precision | Recall | F1 |
62
+ |:-------------:|:------:|:----:|:---------------:|:--------:|:---------:|:------:|:------:|
63
+ | 1.1413 | 0.3922 | 50 | 0.9915 | 0.6095 | 0.5647 | 0.6095 | 0.5607 |
64
+ | 0.8772 | 0.7843 | 100 | 0.7794 | 0.6611 | 0.7168 | 0.6611 | 0.6038 |
65
+ | 0.6664 | 1.1725 | 150 | 0.5313 | 0.8340 | 0.8323 | 0.8340 | 0.8319 |
66
+ | 0.4674 | 1.5647 | 200 | 0.4284 | 0.8585 | 0.8599 | 0.8585 | 0.8560 |
67
+ | 0.3922 | 1.9569 | 250 | 0.3721 | 0.8585 | 0.8625 | 0.8585 | 0.8555 |
68
+ | 0.3105 | 2.3451 | 300 | 0.3367 | 0.8772 | 0.8771 | 0.8772 | 0.8760 |
69
+ | 0.2881 | 2.7373 | 350 | 0.3321 | 0.8718 | 0.8725 | 0.8718 | 0.8714 |
70
+ | 0.2545 | 3.1255 | 400 | 0.3565 | 0.8806 | 0.8819 | 0.8806 | 0.8788 |
71
+ | 0.1997 | 3.5176 | 450 | 0.3320 | 0.8811 | 0.8812 | 0.8811 | 0.8809 |
72
+ | 0.2236 | 3.9098 | 500 | 0.3384 | 0.8826 | 0.8822 | 0.8826 | 0.8817 |
73
+ | 0.1454 | 4.2980 | 550 | 0.3805 | 0.8782 | 0.8782 | 0.8782 | 0.8768 |
74
+ | 0.1494 | 4.6902 | 600 | 0.3793 | 0.8806 | 0.8806 | 0.8806 | 0.8796 |
75
+
76
+
77
+ ### Framework versions
78
+
79
+ - Transformers 4.51.1
80
+ - Pytorch 2.6.0+cu124
81
+ - Datasets 3.5.0
82
+ - Tokenizers 0.21.1
config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertForSequenceClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "classifier_dropout": null,
7
+ "gradient_checkpointing": false,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "negative",
13
+ "1": "positive",
14
+ "2": "neutral"
15
+ },
16
+ "initializer_range": 0.02,
17
+ "intermediate_size": 3072,
18
+ "label2id": {
19
+ "negative": 0,
20
+ "neutral": 2,
21
+ "positive": 1
22
+ },
23
+ "layer_norm_eps": 1e-12,
24
+ "max_position_embeddings": 512,
25
+ "model_type": "bert",
26
+ "num_attention_heads": 12,
27
+ "num_hidden_layers": 12,
28
+ "pad_token_id": 0,
29
+ "position_embedding_type": "absolute",
30
+ "problem_type": "single_label_classification",
31
+ "torch_dtype": "float32",
32
+ "transformers_version": "4.51.1",
33
+ "type_vocab_size": 2,
34
+ "use_cache": true,
35
+ "vocab_size": 30522
36
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33d08a44ca4a61059857bc3ac2ab0c0d64a0f9cef12bc0ff1765a06b234568b2
3
+ size 437961724
runs/Apr16_16-41-10_9424de0d1b18/events.out.tfevents.1744821681.9424de0d1b18.1160.6 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8016beed9c147f26945ece8d04b2ef572c8c7866ab04100aa6bc0e5d7c171638
3
+ size 13716
runs/Apr16_16-41-10_9424de0d1b18/events.out.tfevents.1744822119.9424de0d1b18.1160.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44f8feceacb4726412ab3cd7cf13d1ea6769216be56b23bc2c65de04e94f0fd5
3
+ size 560
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4c155054ca0c23585e60f02f877a5bc853ab1dcc05922d3f3ddbc88484476da
3
+ size 5368