ClaudiaRichard commited on
Commit
825cffc
·
verified ·
1 Parent(s): ad4431b
README.md ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: mit
4
+ base_model: prajjwal1/bert-tiny
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - f1
9
+ model-index:
10
+ - name: test
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
+ # test
18
+
19
+ This model is a fine-tuned version of [prajjwal1/bert-tiny](https://huggingface.co/prajjwal1/bert-tiny) on an unknown dataset.
20
+ It achieves the following results on the evaluation set:
21
+ - Loss: 0.7072
22
+ - F1: 0.0
23
+ - Roc Auc: 0.5
24
+
25
+ ## Model description
26
+
27
+ More information needed
28
+
29
+ ## Intended uses & limitations
30
+
31
+ More information needed
32
+
33
+ ## Training and evaluation data
34
+
35
+ More information needed
36
+
37
+ ## Training procedure
38
+
39
+ ### Training hyperparameters
40
+
41
+ The following hyperparameters were used during training:
42
+ - learning_rate: 3e-05
43
+ - train_batch_size: 8
44
+ - eval_batch_size: 8
45
+ - seed: 42
46
+ - gradient_accumulation_steps: 2
47
+ - total_train_batch_size: 16
48
+ - optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
49
+ - lr_scheduler_type: linear
50
+ - training_steps: 20
51
+
52
+ ### Training results
53
+
54
+ | Training Loss | Epoch | Step | Validation Loss | F1 | Roc Auc |
55
+ |:-------------:|:-----:|:----:|:---------------:|:---:|:-------:|
56
+ | No log | 1.0 | 1 | 0.7394 | 0.0 | 0.5 |
57
+ | No log | 2.0 | 2 | 0.7378 | 0.0 | 0.5 |
58
+ | No log | 3.0 | 3 | 0.7361 | 0.0 | 0.5 |
59
+ | No log | 4.0 | 4 | 0.7347 | 0.0 | 0.5 |
60
+ | No log | 5.0 | 5 | 0.7332 | 0.0 | 0.5 |
61
+ | No log | 6.0 | 6 | 0.7319 | 0.0 | 0.5 |
62
+ | No log | 7.0 | 7 | 0.7307 | 0.0 | 0.5 |
63
+ | No log | 8.0 | 8 | 0.7293 | 0.0 | 0.5 |
64
+ | No log | 9.0 | 9 | 0.7281 | 0.0 | 0.5 |
65
+ | No log | 10.0 | 10 | 0.7271 | 0.0 | 0.5 |
66
+ | No log | 11.0 | 11 | 0.7262 | 0.0 | 0.5 |
67
+ | No log | 12.0 | 12 | 0.7253 | 0.0 | 0.5 |
68
+ | No log | 13.0 | 13 | 0.7245 | 0.0 | 0.5 |
69
+ | No log | 14.0 | 14 | 0.7239 | 0.0 | 0.5 |
70
+ | No log | 15.0 | 15 | 0.7233 | 0.0 | 0.5 |
71
+ | No log | 16.0 | 16 | 0.7228 | 0.0 | 0.5 |
72
+ | No log | 17.0 | 17 | 0.7224 | 0.0 | 0.5 |
73
+ | No log | 18.0 | 18 | 0.7221 | 0.0 | 0.5 |
74
+ | No log | 19.0 | 19 | 0.7219 | 0.0 | 0.5 |
75
+ | No log | 20.0 | 20 | 0.7218 | 0.0 | 0.5 |
76
+
77
+
78
+ ### Framework versions
79
+
80
+ - Transformers 4.56.1
81
+ - Pytorch 2.8.0+cpu
82
+ - Datasets 4.1.0
83
+ - Tokenizers 0.22.0
config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertForSequenceClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "classifier_dropout": null,
7
+ "dtype": "float32",
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 128,
11
+ "id2label": {
12
+ "0": "I/E",
13
+ "1": "N/S",
14
+ "2": "T/F",
15
+ "3": "J/P"
16
+ },
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 512,
19
+ "label2id": {
20
+ "I/E": 0,
21
+ "J/P": 3,
22
+ "N/S": 1,
23
+ "T/F": 2
24
+ },
25
+ "layer_norm_eps": 1e-12,
26
+ "max_position_embeddings": 512,
27
+ "model_type": "bert",
28
+ "num_attention_heads": 2,
29
+ "num_hidden_layers": 2,
30
+ "pad_token_id": 0,
31
+ "position_embedding_type": "absolute",
32
+ "problem_type": "multi_label_classification",
33
+ "transformers_version": "4.56.1",
34
+ "type_vocab_size": 2,
35
+ "use_cache": true,
36
+ "vocab_size": 30522
37
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd8b3755624562380827932818839b7f8086f9be7d31bba700264524192e2cbf
3
+ size 17550344
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,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
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
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": true,
45
+ "cls_token": "[CLS]",
46
+ "do_basic_tokenize": true,
47
+ "do_lower_case": true,
48
+ "extra_special_tokens": {},
49
+ "mask_token": "[MASK]",
50
+ "model_max_length": 1000000000000000019884624838656,
51
+ "never_split": null,
52
+ "pad_token": "[PAD]",
53
+ "sep_token": "[SEP]",
54
+ "strip_accents": null,
55
+ "tokenize_chinese_chars": true,
56
+ "tokenizer_class": "BertTokenizer",
57
+ "unk_token": "[UNK]"
58
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a19110f30334f8abaa29ab07c30dd93748cc5b064ba2674ba143411c862e970c
3
+ size 5713
vocab.txt ADDED
The diff for this file is too large to render. See raw diff