MatteoFasulo commited on
Commit
040a3d6
·
verified ·
1 Parent(s): bb676da

End of training

Browse files
Files changed (6) hide show
  1. README.md +71 -0
  2. config.json +106 -0
  3. model.safetensors +3 -0
  4. tokenizer.json +0 -0
  5. tokenizer_config.json +16 -0
  6. training_args.bin +3 -0
README.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: answerdotai/ModernBERT-large
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - precision
9
+ - recall
10
+ - f1
11
+ - accuracy
12
+ model-index:
13
+ - name: ModernBERT-large-NER
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
+ # ModernBERT-large-NER
21
+
22
+ This model is a fine-tuned version of [answerdotai/ModernBERT-large](https://huggingface.co/answerdotai/ModernBERT-large) on an unknown dataset.
23
+ It achieves the following results on the evaluation set:
24
+ - Loss: 0.0508
25
+ - Precision: 0.9230
26
+ - Recall: 0.9399
27
+ - F1: 0.9314
28
+ - Accuracy: 0.9861
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
+ - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
52
+ - lr_scheduler_type: cosine
53
+ - num_epochs: 5
54
+
55
+ ### Training results
56
+
57
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
58
+ |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
59
+ | No log | 1.0 | 439 | 0.0776 | 0.8749 | 0.9122 | 0.8931 | 0.9800 |
60
+ | 0.1518 | 2.0 | 878 | 0.0508 | 0.9230 | 0.9399 | 0.9314 | 0.9861 |
61
+ | 0.0334 | 3.0 | 1317 | 0.0509 | 0.9219 | 0.9493 | 0.9354 | 0.9880 |
62
+ | 0.0097 | 4.0 | 1756 | 0.0535 | 0.9267 | 0.9505 | 0.9384 | 0.9888 |
63
+ | 0.0029 | 5.0 | 2195 | 0.0555 | 0.9272 | 0.9519 | 0.9394 | 0.9889 |
64
+
65
+
66
+ ### Framework versions
67
+
68
+ - Transformers 5.1.0
69
+ - Pytorch 2.7.0a0+ecf3bae40a.nv25.02
70
+ - Datasets 4.5.0
71
+ - Tokenizers 0.22.2
config.json ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "ModernBertForTokenClassification"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": null,
8
+ "classifier_activation": "gelu",
9
+ "classifier_bias": false,
10
+ "classifier_dropout": 0.0,
11
+ "classifier_pooling": "mean",
12
+ "cls_token_id": 50281,
13
+ "decoder_bias": true,
14
+ "deterministic_flash_attn": false,
15
+ "dtype": "float32",
16
+ "embedding_dropout": 0.0,
17
+ "eos_token_id": null,
18
+ "global_attn_every_n_layers": 3,
19
+ "gradient_checkpointing": false,
20
+ "hidden_activation": "gelu",
21
+ "hidden_size": 1024,
22
+ "id2label": {
23
+ "0": "O",
24
+ "1": "B-PER",
25
+ "2": "I-PER",
26
+ "3": "B-ORG",
27
+ "4": "I-ORG",
28
+ "5": "B-LOC",
29
+ "6": "I-LOC",
30
+ "7": "B-MISC",
31
+ "8": "I-MISC"
32
+ },
33
+ "initializer_cutoff_factor": 2.0,
34
+ "initializer_range": 0.02,
35
+ "intermediate_size": 2624,
36
+ "label2id": {
37
+ "B-LOC": 5,
38
+ "B-MISC": 7,
39
+ "B-ORG": 3,
40
+ "B-PER": 1,
41
+ "I-LOC": 6,
42
+ "I-MISC": 8,
43
+ "I-ORG": 4,
44
+ "I-PER": 2,
45
+ "O": 0
46
+ },
47
+ "layer_norm_eps": 1e-05,
48
+ "layer_types": [
49
+ "full_attention",
50
+ "sliding_attention",
51
+ "sliding_attention",
52
+ "full_attention",
53
+ "sliding_attention",
54
+ "sliding_attention",
55
+ "full_attention",
56
+ "sliding_attention",
57
+ "sliding_attention",
58
+ "full_attention",
59
+ "sliding_attention",
60
+ "sliding_attention",
61
+ "full_attention",
62
+ "sliding_attention",
63
+ "sliding_attention",
64
+ "full_attention",
65
+ "sliding_attention",
66
+ "sliding_attention",
67
+ "full_attention",
68
+ "sliding_attention",
69
+ "sliding_attention",
70
+ "full_attention",
71
+ "sliding_attention",
72
+ "sliding_attention",
73
+ "full_attention",
74
+ "sliding_attention",
75
+ "sliding_attention",
76
+ "full_attention"
77
+ ],
78
+ "local_attention": 128,
79
+ "max_position_embeddings": 8192,
80
+ "mlp_bias": false,
81
+ "mlp_dropout": 0.0,
82
+ "model_type": "modernbert",
83
+ "norm_bias": false,
84
+ "norm_eps": 1e-05,
85
+ "num_attention_heads": 16,
86
+ "num_hidden_layers": 28,
87
+ "pad_token_id": 50283,
88
+ "position_embedding_type": "absolute",
89
+ "rope_parameters": {
90
+ "full_attention": {
91
+ "rope_theta": 160000.0,
92
+ "rope_type": "default"
93
+ },
94
+ "sliding_attention": {
95
+ "rope_theta": 10000.0,
96
+ "rope_type": "default"
97
+ }
98
+ },
99
+ "sep_token_id": 50282,
100
+ "sparse_pred_ignore_index": -100,
101
+ "sparse_prediction": false,
102
+ "tie_word_embeddings": true,
103
+ "transformers_version": "5.1.0",
104
+ "use_cache": false,
105
+ "vocab_size": 50368
106
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e91266eee8cf69fdde21ebcc69d5453f4dabad281ab5a80d0bb65a146ee46d31
3
+ size 1583380340
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "clean_up_tokenization_spaces": true,
4
+ "cls_token": "[CLS]",
5
+ "is_local": false,
6
+ "mask_token": "[MASK]",
7
+ "model_input_names": [
8
+ "input_ids",
9
+ "attention_mask"
10
+ ],
11
+ "model_max_length": 8192,
12
+ "pad_token": "[PAD]",
13
+ "sep_token": "[SEP]",
14
+ "tokenizer_class": "TokenizersBackend",
15
+ "unk_token": "[UNK]"
16
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2f6706ce297da1e6d7e1a774014eddd6e455ec750b676ceb70723a33da33c26
3
+ size 4728