MatteoFasulo commited on
Commit
ed299c1
·
verified ·
1 Parent(s): d6995b3

End of training

Browse files
Files changed (4) hide show
  1. README.md +72 -0
  2. config.json +44 -0
  3. model.safetensors +3 -0
  4. training_args.bin +3 -0
README.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: mit
4
+ base_model: microsoft/mdeberta-v3-base
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - accuracy
9
+ model-index:
10
+ - name: mdeberta-v3-base-subjectivity-german
11
+ results: []
12
+ ---
13
+
14
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
15
+ should probably proofread and complete it, then remove this comment. -->
16
+
17
+ # mdeberta-v3-base-subjectivity-german
18
+
19
+ This model is a fine-tuned version of [microsoft/mdeberta-v3-base](https://huggingface.co/microsoft/mdeberta-v3-base) on the None dataset.
20
+ It achieves the following results on the evaluation set:
21
+ - Loss: 0.5760
22
+ - Macro F1: 0.7720
23
+ - Macro P: 0.7687
24
+ - Macro R: 0.7763
25
+ - Subj F1: 0.7111
26
+ - Subj P: 0.6882
27
+ - Subj R: 0.7356
28
+ - Accuracy: 0.7882
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: 1e-05
48
+ - train_batch_size: 16
49
+ - eval_batch_size: 16
50
+ - seed: 42
51
+ - optimizer: Use adamw_torch with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
52
+ - lr_scheduler_type: linear
53
+ - num_epochs: 6
54
+
55
+ ### Training results
56
+
57
+ | Training Loss | Epoch | Step | Validation Loss | Macro F1 | Macro P | Macro R | Subj F1 | Subj P | Subj R | Accuracy |
58
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:-------:|:-------:|:-------:|:------:|:------:|:--------:|
59
+ | No log | 1.0 | 50 | 0.6877 | 0.3923 | 0.3228 | 0.5 | 0.0 | 0.0 | 0.0 | 0.6456 |
60
+ | No log | 2.0 | 100 | 0.5385 | 0.7231 | 0.7351 | 0.7562 | 0.6898 | 0.5775 | 0.8563 | 0.7271 |
61
+ | No log | 3.0 | 150 | 0.4951 | 0.7880 | 0.7828 | 0.7975 | 0.7366 | 0.6919 | 0.7874 | 0.8004 |
62
+ | No log | 4.0 | 200 | 0.5192 | 0.7830 | 0.7817 | 0.7845 | 0.7216 | 0.7135 | 0.7299 | 0.8004 |
63
+ | No log | 5.0 | 250 | 0.5602 | 0.7794 | 0.7798 | 0.7790 | 0.7147 | 0.7168 | 0.7126 | 0.7984 |
64
+ | No log | 6.0 | 300 | 0.5760 | 0.7720 | 0.7687 | 0.7763 | 0.7111 | 0.6882 | 0.7356 | 0.7882 |
65
+
66
+
67
+ ### Framework versions
68
+
69
+ - Transformers 4.49.0
70
+ - Pytorch 2.5.1+cu121
71
+ - Datasets 3.3.1
72
+ - Tokenizers 0.21.0
config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/mdeberta-v3-base",
3
+ "architectures": [
4
+ "DebertaV2ForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "hidden_act": "gelu",
8
+ "hidden_dropout_prob": 0.1,
9
+ "hidden_size": 768,
10
+ "id2label": {
11
+ "0": "OBJ",
12
+ "1": "SUBJ"
13
+ },
14
+ "initializer_range": 0.02,
15
+ "intermediate_size": 3072,
16
+ "label2id": {
17
+ "OBJ": 0,
18
+ "SUBJ": 1
19
+ },
20
+ "layer_norm_eps": 1e-07,
21
+ "legacy": true,
22
+ "max_position_embeddings": 512,
23
+ "max_relative_positions": -1,
24
+ "model_type": "deberta-v2",
25
+ "norm_rel_ebd": "layer_norm",
26
+ "num_attention_heads": 12,
27
+ "num_hidden_layers": 12,
28
+ "pad_token_id": 0,
29
+ "pooler_dropout": 0,
30
+ "pooler_hidden_act": "gelu",
31
+ "pooler_hidden_size": 768,
32
+ "pos_att_type": [
33
+ "p2c",
34
+ "c2p"
35
+ ],
36
+ "position_biased_input": false,
37
+ "position_buckets": 256,
38
+ "relative_attention": true,
39
+ "share_att_key": true,
40
+ "torch_dtype": "float32",
41
+ "transformers_version": "4.49.0",
42
+ "type_vocab_size": 0,
43
+ "vocab_size": 251000
44
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c39ff704bc8980a41110e3f6b10975e0a98c7d26a0c43bee75db6ca69fcf8cc1
3
+ size 1115268200
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24c15e955acc89438a2d3f1855ccdeb06de704686e0af895142e888eb770d746
3
+ size 5368