YWZBrandon commited on
Commit
739582c
·
verified ·
1 Parent(s): 3102e25

End of training

Browse files
README.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: mit
4
+ base_model: roberta-large
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - accuracy
9
+ - f1
10
+ - precision
11
+ - recall
12
+ model-index:
13
+ - name: wikidyk-scope-clf-deberta-v3-large-semantic_3_clusters
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
+ # wikidyk-scope-clf-deberta-v3-large-semantic_3_clusters
21
+
22
+ This model is a fine-tuned version of [roberta-large](https://huggingface.co/roberta-large) on the None dataset.
23
+ It achieves the following results on the evaluation set:
24
+ - Loss: 0.5560
25
+ - Accuracy: 0.9132
26
+ - F1: 0.7401
27
+ - Precision: 0.8592
28
+ - Recall: 0.6501
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: 32
49
+ - eval_batch_size: 32
50
+ - seed: 42
51
+ - distributed_type: multi-GPU
52
+ - num_devices: 4
53
+ - total_train_batch_size: 128
54
+ - total_eval_batch_size: 128
55
+ - optimizer: Use adamw_torch with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
56
+ - lr_scheduler_type: linear
57
+ - num_epochs: 10.0
58
+
59
+ ### Training results
60
+
61
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Precision | Recall |
62
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|:---------:|:------:|
63
+ | 0.0494 | 1.0 | 902 | 0.3398 | 0.8673 | 0.5190 | 0.8346 | 0.3766 |
64
+ | 0.0428 | 2.0 | 1804 | 0.3267 | 0.8902 | 0.6328 | 0.8696 | 0.4973 |
65
+ | 0.0292 | 3.0 | 2706 | 0.3243 | 0.9071 | 0.7333 | 0.8077 | 0.6714 |
66
+ | 0.0208 | 4.0 | 3608 | 0.4366 | 0.8926 | 0.6603 | 0.8284 | 0.5488 |
67
+ | 0.0096 | 5.0 | 4510 | 0.4438 | 0.8943 | 0.6829 | 0.7948 | 0.5986 |
68
+ | 0.0182 | 6.0 | 5412 | 0.5225 | 0.8950 | 0.6594 | 0.86 | 0.5346 |
69
+ | 0.0062 | 7.0 | 6314 | 0.4717 | 0.9078 | 0.7117 | 0.8776 | 0.5986 |
70
+ | 0.0021 | 8.0 | 7216 | 0.5226 | 0.9095 | 0.7254 | 0.8571 | 0.6288 |
71
+ | 0.0026 | 9.0 | 8118 | 0.5323 | 0.9173 | 0.7528 | 0.8715 | 0.6625 |
72
+ | 0.0008 | 10.0 | 9020 | 0.5560 | 0.9132 | 0.7401 | 0.8592 | 0.6501 |
73
+
74
+
75
+ ### Framework versions
76
+
77
+ - Transformers 4.51.3
78
+ - Pytorch 2.6.0+cu124
79
+ - Datasets 3.5.1
80
+ - Tokenizers 0.21.1
config.json CHANGED
@@ -1,8 +1,11 @@
1
  {
2
  "architectures": [
3
- "DebertaV2ForSequenceClassification"
4
  ],
5
  "attention_probs_dropout_prob": 0.1,
 
 
 
6
  "hidden_act": "gelu",
7
  "hidden_dropout_prob": 0.1,
8
  "hidden_size": 1024,
@@ -18,29 +21,17 @@
18
  "1": 1,
19
  "2": 2
20
  },
21
- "layer_norm_eps": 1e-07,
22
- "legacy": true,
23
- "max_position_embeddings": 512,
24
- "max_relative_positions": -1,
25
- "model_type": "deberta-v2",
26
- "norm_rel_ebd": "layer_norm",
27
  "num_attention_heads": 16,
28
  "num_hidden_layers": 24,
29
- "pad_token_id": 0,
30
- "pooler_dropout": 0,
31
- "pooler_hidden_act": "gelu",
32
- "pooler_hidden_size": 1024,
33
- "pos_att_type": [
34
- "p2c",
35
- "c2p"
36
- ],
37
- "position_biased_input": false,
38
- "position_buckets": 256,
39
  "problem_type": "multi_label_classification",
40
- "relative_attention": true,
41
- "share_att_key": true,
42
  "torch_dtype": "float32",
43
  "transformers_version": "4.51.3",
44
- "type_vocab_size": 0,
45
- "vocab_size": 128100
 
46
  }
 
1
  {
2
  "architectures": [
3
+ "RobertaForSequenceClassification"
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,
 
21
  "1": 1,
22
  "2": 2
23
  },
24
+ "layer_norm_eps": 1e-05,
25
+ "max_position_embeddings": 514,
26
+ "model_type": "roberta",
 
 
 
27
  "num_attention_heads": 16,
28
  "num_hidden_layers": 24,
29
+ "pad_token_id": 1,
30
+ "position_embedding_type": "absolute",
 
 
 
 
 
 
 
 
31
  "problem_type": "multi_label_classification",
 
 
32
  "torch_dtype": "float32",
33
  "transformers_version": "4.51.3",
34
+ "type_vocab_size": 1,
35
+ "use_cache": true,
36
+ "vocab_size": 50265
37
  }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ebb19b47724a98fa511c1e8d4702e039a3d7b48280ba4d3dd92fb825bff87ad8
3
- size 1740308548
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50cd895c32a17a4285db947edc340143ca46797a6753616cc2697fce4c45dd37
3
+ size 1421499516
special_tokens_map.json CHANGED
@@ -1,15 +1,15 @@
1
  {
2
- "bos_token": "[CLS]",
3
- "cls_token": "[CLS]",
4
- "eos_token": "[SEP]",
5
- "mask_token": "[MASK]",
6
- "pad_token": "[PAD]",
7
- "sep_token": "[SEP]",
8
- "unk_token": {
9
- "content": "[UNK]",
10
- "lstrip": false,
11
- "normalized": true,
12
  "rstrip": false,
13
  "single_word": false
14
- }
 
 
 
15
  }
 
1
  {
2
+ "bos_token": "<s>",
3
+ "cls_token": "<s>",
4
+ "eos_token": "</s>",
5
+ "mask_token": {
6
+ "content": "<mask>",
7
+ "lstrip": true,
8
+ "normalized": false,
 
 
 
9
  "rstrip": false,
10
  "single_word": false
11
+ },
12
+ "pad_token": "<pad>",
13
+ "sep_token": "</s>",
14
+ "unk_token": "<unk>"
15
  }
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,59 +1,58 @@
1
  {
 
2
  "added_tokens_decoder": {
3
  "0": {
4
- "content": "[PAD]",
5
  "lstrip": false,
6
- "normalized": false,
7
  "rstrip": false,
8
  "single_word": false,
9
  "special": true
10
  },
11
  "1": {
12
- "content": "[CLS]",
13
  "lstrip": false,
14
- "normalized": false,
15
  "rstrip": false,
16
  "single_word": false,
17
  "special": true
18
  },
19
  "2": {
20
- "content": "[SEP]",
21
  "lstrip": false,
22
- "normalized": false,
23
  "rstrip": false,
24
  "single_word": false,
25
  "special": true
26
  },
27
  "3": {
28
- "content": "[UNK]",
29
  "lstrip": false,
30
  "normalized": true,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  },
35
- "128000": {
36
- "content": "[MASK]",
37
- "lstrip": false,
38
  "normalized": false,
39
  "rstrip": false,
40
  "single_word": false,
41
  "special": true
42
  }
43
  },
44
- "bos_token": "[CLS]",
45
  "clean_up_tokenization_spaces": false,
46
- "cls_token": "[CLS]",
47
- "do_lower_case": false,
48
- "eos_token": "[SEP]",
49
  "extra_special_tokens": {},
50
- "mask_token": "[MASK]",
51
- "model_max_length": 1000000000000000019884624838656,
52
- "pad_token": "[PAD]",
53
- "sep_token": "[SEP]",
54
- "sp_model_kwargs": {},
55
- "split_by_punct": false,
56
- "tokenizer_class": "DebertaV2Tokenizer",
57
- "unk_token": "[UNK]",
58
- "vocab_type": "spm"
59
  }
 
1
  {
2
+ "add_prefix_space": false,
3
  "added_tokens_decoder": {
4
  "0": {
5
+ "content": "<s>",
6
  "lstrip": false,
7
+ "normalized": true,
8
  "rstrip": false,
9
  "single_word": false,
10
  "special": true
11
  },
12
  "1": {
13
+ "content": "<pad>",
14
  "lstrip": false,
15
+ "normalized": true,
16
  "rstrip": false,
17
  "single_word": false,
18
  "special": true
19
  },
20
  "2": {
21
+ "content": "</s>",
22
  "lstrip": false,
23
+ "normalized": true,
24
  "rstrip": false,
25
  "single_word": false,
26
  "special": true
27
  },
28
  "3": {
29
+ "content": "<unk>",
30
  "lstrip": false,
31
  "normalized": true,
32
  "rstrip": false,
33
  "single_word": false,
34
  "special": true
35
  },
36
+ "50264": {
37
+ "content": "<mask>",
38
+ "lstrip": true,
39
  "normalized": false,
40
  "rstrip": false,
41
  "single_word": false,
42
  "special": true
43
  }
44
  },
45
+ "bos_token": "<s>",
46
  "clean_up_tokenization_spaces": false,
47
+ "cls_token": "<s>",
48
+ "eos_token": "</s>",
49
+ "errors": "replace",
50
  "extra_special_tokens": {},
51
+ "mask_token": "<mask>",
52
+ "model_max_length": 512,
53
+ "pad_token": "<pad>",
54
+ "sep_token": "</s>",
55
+ "tokenizer_class": "RobertaTokenizer",
56
+ "trim_offsets": true,
57
+ "unk_token": "<unk>"
 
 
58
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e64fe8f815fa80a7291289cde9af3ebb27f62206c40a93e8adf97661cd289de3
3
- size 5368
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b038032ec60bc83343088746f6377fbd7f191c0dd8e1d4fbd6b0d8773dbe667
3
+ size 5432
vocab.json ADDED
The diff for this file is too large to render. See raw diff