MatteoFasulo commited on
Commit
e71d89e
·
verified ·
1 Parent(s): d0d91f2

End of training

Browse files
Files changed (4) hide show
  1. README.md +70 -0
  2. config.json +43 -0
  3. model.safetensors +3 -0
  4. training_args.bin +3 -0
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ tags:
4
+ - generated_from_trainer
5
+ metrics:
6
+ - accuracy
7
+ model-index:
8
+ - name: mdeberta-v3-base-subjectivity-sentiment-multilingual
9
+ results: []
10
+ ---
11
+
12
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
13
+ should probably proofread and complete it, then remove this comment. -->
14
+
15
+ # mdeberta-v3-base-subjectivity-sentiment-multilingual
16
+
17
+ This model is a fine-tuned version of [](https://huggingface.co/) on the None dataset.
18
+ It achieves the following results on the evaluation set:
19
+ - Loss: 0.7762
20
+ - Macro F1: 0.7580
21
+ - Macro P: 0.7558
22
+ - Macro R: 0.7614
23
+ - Subj F1: 0.7100
24
+ - Subj P: 0.6878
25
+ - Subj R: 0.7336
26
+ - Accuracy: 0.7676
27
+
28
+ ## Model description
29
+
30
+ More information needed
31
+
32
+ ## Intended uses & limitations
33
+
34
+ More information needed
35
+
36
+ ## Training and evaluation data
37
+
38
+ More information needed
39
+
40
+ ## Training procedure
41
+
42
+ ### Training hyperparameters
43
+
44
+ The following hyperparameters were used during training:
45
+ - learning_rate: 1e-05
46
+ - train_batch_size: 16
47
+ - eval_batch_size: 16
48
+ - seed: 42
49
+ - optimizer: Use adamw_torch with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
50
+ - lr_scheduler_type: linear
51
+ - num_epochs: 6
52
+
53
+ ### Training results
54
+
55
+ | Training Loss | Epoch | Step | Validation Loss | Macro F1 | Macro P | Macro R | Subj F1 | Subj P | Subj R | Accuracy |
56
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:-------:|:-------:|:-------:|:------:|:------:|:--------:|
57
+ | No log | 1.0 | 402 | 0.5154 | 0.6964 | 0.7341 | 0.7337 | 0.6969 | 0.5685 | 0.9001 | 0.6964 |
58
+ | 0.6027 | 2.0 | 804 | 0.5061 | 0.7264 | 0.7402 | 0.7508 | 0.7086 | 0.6055 | 0.8539 | 0.7276 |
59
+ | 0.4707 | 3.0 | 1206 | 0.6328 | 0.7387 | 0.7389 | 0.7511 | 0.7036 | 0.6373 | 0.7852 | 0.7434 |
60
+ | 0.3996 | 4.0 | 1608 | 0.7000 | 0.7519 | 0.7556 | 0.7492 | 0.6903 | 0.7128 | 0.6692 | 0.7672 |
61
+ | 0.3579 | 5.0 | 2010 | 0.7443 | 0.7476 | 0.7485 | 0.7614 | 0.7154 | 0.6440 | 0.8045 | 0.7518 |
62
+ | 0.3579 | 6.0 | 2412 | 0.7762 | 0.7580 | 0.7558 | 0.7614 | 0.7100 | 0.6878 | 0.7336 | 0.7676 |
63
+
64
+
65
+ ### Framework versions
66
+
67
+ - Transformers 4.49.0
68
+ - Pytorch 2.5.1+cu121
69
+ - Datasets 3.3.1
70
+ - Tokenizers 0.21.0
config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "CustomModel"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "hidden_act": "gelu",
7
+ "hidden_dropout_prob": 0.1,
8
+ "hidden_size": 768,
9
+ "id2label": {
10
+ "0": "OBJ",
11
+ "1": "SUBJ"
12
+ },
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 3072,
15
+ "label2id": {
16
+ "OBJ": 0,
17
+ "SUBJ": 1
18
+ },
19
+ "layer_norm_eps": 1e-07,
20
+ "legacy": true,
21
+ "max_position_embeddings": 512,
22
+ "max_relative_positions": -1,
23
+ "model_type": "deberta-v2",
24
+ "norm_rel_ebd": "layer_norm",
25
+ "num_attention_heads": 12,
26
+ "num_hidden_layers": 12,
27
+ "pad_token_id": 0,
28
+ "pooler_dropout": 0,
29
+ "pooler_hidden_act": "gelu",
30
+ "pooler_hidden_size": 768,
31
+ "pos_att_type": [
32
+ "p2c",
33
+ "c2p"
34
+ ],
35
+ "position_biased_input": false,
36
+ "position_buckets": 256,
37
+ "relative_attention": true,
38
+ "share_att_key": true,
39
+ "torch_dtype": "float32",
40
+ "transformers_version": "4.49.0",
41
+ "type_vocab_size": 0,
42
+ "vocab_size": 251000
43
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2d6457309a19bdf89c8e1f3003b388995ddb6dc46b128612e707ef02b85ba69
3
+ size 1115268224
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6340d6a323b5093894e3816267f3241759e30a1e6b1bcc80dd923edb731b1746
3
+ size 5368