abdulrahman-nuzha commited on
Commit
d0644cd
·
verified ·
1 Parent(s): 380f8ba

End of training

Browse files
README.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: mit
4
+ base_model: intfloat/multilingual-e5-large
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - accuracy
9
+ - precision
10
+ - recall
11
+ - f1
12
+ model-index:
13
+ - name: intfloat-multilingual-e5-large-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-multilingual-e5-large-english-fp16
21
+
22
+ This model is a fine-tuned version of [intfloat/multilingual-e5-large](https://huggingface.co/intfloat/multilingual-e5-large) on an unknown dataset.
23
+ It achieves the following results on the evaluation set:
24
+ - Loss: 0.3003
25
+ - Accuracy: 0.8851
26
+ - Precision: 0.8857
27
+ - Recall: 0.8851
28
+ - F1: 0.8835
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.0422 | 0.3922 | 50 | 0.8866 | 0.6081 | 0.6817 | 0.6081 | 0.5308 |
64
+ | 0.703 | 0.7843 | 100 | 0.4687 | 0.8266 | 0.8265 | 0.8266 | 0.8242 |
65
+ | 0.3701 | 1.1725 | 150 | 0.3189 | 0.8787 | 0.8783 | 0.8787 | 0.8784 |
66
+ | 0.3018 | 1.5647 | 200 | 0.3163 | 0.8861 | 0.8855 | 0.8861 | 0.8852 |
67
+ | 0.2988 | 1.9569 | 250 | 0.3223 | 0.8797 | 0.8828 | 0.8797 | 0.8770 |
68
+ | 0.2324 | 2.3451 | 300 | 0.3003 | 0.8851 | 0.8857 | 0.8851 | 0.8835 |
69
+ | 0.2337 | 2.7373 | 350 | 0.2901 | 0.8905 | 0.8909 | 0.8905 | 0.8904 |
70
+ | 0.2066 | 3.1255 | 400 | 0.3938 | 0.8851 | 0.8866 | 0.8851 | 0.8831 |
71
+ | 0.1711 | 3.5176 | 450 | 0.3373 | 0.8905 | 0.8910 | 0.8905 | 0.8907 |
72
+ | 0.1668 | 3.9098 | 500 | 0.3527 | 0.8861 | 0.8859 | 0.8861 | 0.8848 |
73
+
74
+
75
+ ### Framework versions
76
+
77
+ - Transformers 4.51.1
78
+ - Pytorch 2.6.0+cu124
79
+ - Datasets 3.5.0
80
+ - Tokenizers 0.21.1
config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "XLMRobertaForSequenceClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "bos_token_id": 0,
7
+ "classifier_dropout": null,
8
+ "eos_token_id": 2,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 1024,
12
+ "id2label": {
13
+ "0": "negative",
14
+ "1": "positive",
15
+ "2": "neutral"
16
+ },
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 4096,
19
+ "label2id": {
20
+ "negative": 0,
21
+ "neutral": 2,
22
+ "positive": 1
23
+ },
24
+ "layer_norm_eps": 1e-05,
25
+ "max_position_embeddings": 514,
26
+ "model_type": "xlm-roberta",
27
+ "num_attention_heads": 16,
28
+ "num_hidden_layers": 24,
29
+ "output_past": true,
30
+ "pad_token_id": 1,
31
+ "position_embedding_type": "absolute",
32
+ "problem_type": "single_label_classification",
33
+ "torch_dtype": "float32",
34
+ "transformers_version": "4.51.1",
35
+ "type_vocab_size": 1,
36
+ "use_cache": true,
37
+ "vocab_size": 250002
38
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33343f340218a2842fe8760fdc14c431d555146cece430db6e76e2df5bdfd399
3
+ size 2239622772
runs/Apr16_17-47-34_9424de0d1b18/events.out.tfevents.1744825673.9424de0d1b18.1160.14 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b6b51fe991c38502ebeb6dfebf590960e54b503fe2d5ee1671b9518d4611195
3
+ size 12451
runs/Apr16_17-47-34_9424de0d1b18/events.out.tfevents.1744826601.9424de0d1b18.1160.15 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26185095d7d7c03e9939d734d1d128c3a896398635e1fa4d1bf56b6a0a4950d2
3
+ size 560
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e326e7ca44ef1c11b49852ab8b4bdd085b8a59910f32daa9d79c90539b2acce
3
+ size 5432