Wiebke commited on
Commit
8ff0bae
·
verified ·
1 Parent(s): 019bcab

End of training

Browse files
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: distilbert/distilbert-base-german-cased
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - precision
9
+ - recall
10
+ - f1
11
+ model-index:
12
+ - name: flausch_span_distilbert-base-german-cased_non_labeled_spans
13
+ results: []
14
+ ---
15
+
16
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
17
+ should probably proofread and complete it, then remove this comment. -->
18
+
19
+ # flausch_span_distilbert-base-german-cased_non_labeled_spans
20
+
21
+ This model is a fine-tuned version of [distilbert/distilbert-base-german-cased](https://huggingface.co/distilbert/distilbert-base-german-cased) on the None dataset.
22
+ It achieves the following results on the evaluation set:
23
+ - Loss: 0.2143
24
+ - Model Preparation Time: 0.0024
25
+ - Precision: 0.5603
26
+ - Recall: 0.6253
27
+ - F1: 0.5910
28
+
29
+ ## Model description
30
+
31
+ More information needed
32
+
33
+ ## Intended uses & limitations
34
+
35
+ More information needed
36
+
37
+ ## Training and evaluation data
38
+
39
+ More information needed
40
+
41
+ ## Training procedure
42
+
43
+ ### Training hyperparameters
44
+
45
+ The following hyperparameters were used during training:
46
+ - learning_rate: 2e-05
47
+ - train_batch_size: 16
48
+ - eval_batch_size: 16
49
+ - seed: 42
50
+ - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
51
+ - lr_scheduler_type: linear
52
+ - num_epochs: 3
53
+ - mixed_precision_training: Native AMP
54
+
55
+ ### Training results
56
+
57
+ | Training Loss | Epoch | Step | Validation Loss | Model Preparation Time | Precision | Recall | F1 |
58
+ |:-------------:|:------:|:----:|:---------------:|:----------------------:|:---------:|:------:|:------:|
59
+ | 0.3189 | 0.4233 | 750 | 0.2246 | 0.0024 | 0.3939 | 0.4756 | 0.4309 |
60
+ | 0.2206 | 0.8465 | 1500 | 0.2186 | 0.0024 | 0.4805 | 0.5244 | 0.5015 |
61
+ | 0.1828 | 1.2698 | 2250 | 0.2091 | 0.0024 | 0.5080 | 0.6035 | 0.5516 |
62
+ | 0.1553 | 1.6930 | 3000 | 0.2026 | 0.0024 | 0.5214 | 0.6182 | 0.5657 |
63
+ | 0.1519 | 2.1163 | 3750 | 0.2118 | 0.0024 | 0.5476 | 0.6153 | 0.5795 |
64
+ | 0.1195 | 2.5395 | 4500 | 0.2127 | 0.0024 | 0.5580 | 0.6262 | 0.5902 |
65
+ | 0.1187 | 2.9628 | 5250 | 0.2143 | 0.0024 | 0.5603 | 0.6253 | 0.5910 |
66
+
67
+
68
+ ### Framework versions
69
+
70
+ - Transformers 4.52.4
71
+ - Pytorch 2.6.0+cu124
72
+ - Datasets 2.14.4
73
+ - Tokenizers 0.21.1
config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation": "gelu",
3
+ "architectures": [
4
+ "DistilBertForTokenClassification"
5
+ ],
6
+ "attention_dropout": 0.1,
7
+ "dim": 768,
8
+ "dropout": 0.1,
9
+ "hidden_dim": 3072,
10
+ "id2label": {
11
+ "0": "O",
12
+ "1": "B-span",
13
+ "2": "I-span"
14
+ },
15
+ "initializer_range": 0.02,
16
+ "label2id": {
17
+ "B-span": 1,
18
+ "I-span": 2,
19
+ "O": 0
20
+ },
21
+ "max_position_embeddings": 512,
22
+ "model_type": "distilbert",
23
+ "n_heads": 12,
24
+ "n_layers": 6,
25
+ "output_past": true,
26
+ "pad_token_id": 0,
27
+ "qa_dropout": 0.1,
28
+ "seq_classif_dropout": 0.2,
29
+ "sinusoidal_pos_embds": true,
30
+ "tie_weights_": true,
31
+ "torch_dtype": "float32",
32
+ "transformers_version": "4.52.4",
33
+ "vocab_size": 31102
34
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:518712d6eaadf72735e9dddc21774eb0544aa72837855e3850bae35862110e5c
3
+ size 267254852
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "101": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "102": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "103": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "104": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": false,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": false,
47
+ "extra_special_tokens": {},
48
+ "mask_token": "[MASK]",
49
+ "model_max_length": 512,
50
+ "pad_token": "[PAD]",
51
+ "sep_token": "[SEP]",
52
+ "strip_accents": null,
53
+ "tokenize_chinese_chars": true,
54
+ "tokenizer_class": "DistilBertTokenizer",
55
+ "unk_token": "[UNK]"
56
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6893db8035f624205f2d76c388be8600ddcfbd4a77839ced0c82ebcfe4ec0183
3
+ size 5368
vocab.txt ADDED
The diff for this file is too large to render. See raw diff