BDAIO commited on
Commit
cbc6a26
·
verified ·
1 Parent(s): 311666a

End of training

Browse files
Files changed (7) hide show
  1. .gitattributes +1 -0
  2. README.md +80 -0
  3. config.json +46 -0
  4. fasttext_model.bin +3 -0
  5. model.safetensors +3 -0
  6. training_args.bin +3 -0
  7. vocab.txt +3 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ vocab.txt filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: google-bert/bert-base-multilingual-uncased
4
+ tags:
5
+ - generated_from_trainer
6
+ metrics:
7
+ - accuracy
8
+ - precision
9
+ - recall
10
+ - f1
11
+ model-index:
12
+ - name: NLP_91_1
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
+ # NLP_91_1
20
+
21
+ This model is a fine-tuned version of [google-bert/bert-base-multilingual-uncased](https://huggingface.co/google-bert/bert-base-multilingual-uncased) on the None dataset.
22
+ It achieves the following results on the evaluation set:
23
+ - Loss: 0.4408
24
+ - Accuracy: 0.9220
25
+ - Precision: 0.9156
26
+ - Recall: 0.9170
27
+ - F1: 0.9158
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: 1e-05
47
+ - train_batch_size: 32
48
+ - eval_batch_size: 32
49
+ - seed: 42
50
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
51
+ - lr_scheduler_type: cosine
52
+ - num_epochs: 15
53
+
54
+ ### Training results
55
+
56
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | Precision | Recall | F1 |
57
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:---------:|:------:|:------:|
58
+ | 0.309 | 1.0 | 48 | 0.4280 | 0.8532 | 0.8506 | 0.8461 | 0.8454 |
59
+ | 0.2595 | 2.0 | 96 | 0.4335 | 0.8807 | 0.8767 | 0.8766 | 0.8738 |
60
+ | 0.2196 | 3.0 | 144 | 0.3883 | 0.8945 | 0.8956 | 0.8869 | 0.8876 |
61
+ | 0.1812 | 4.0 | 192 | 0.4664 | 0.8761 | 0.8856 | 0.8614 | 0.8638 |
62
+ | 0.1256 | 5.0 | 240 | 0.4764 | 0.8670 | 0.8750 | 0.8627 | 0.8625 |
63
+ | 0.142 | 6.0 | 288 | 0.5258 | 0.8670 | 0.8818 | 0.8580 | 0.8607 |
64
+ | 0.1006 | 7.0 | 336 | 0.4323 | 0.9037 | 0.8961 | 0.8989 | 0.8970 |
65
+ | 0.0897 | 8.0 | 384 | 0.4659 | 0.8991 | 0.8959 | 0.8891 | 0.8914 |
66
+ | 0.0595 | 9.0 | 432 | 0.4569 | 0.9174 | 0.9149 | 0.9099 | 0.9115 |
67
+ | 0.0399 | 10.0 | 480 | 0.4592 | 0.9037 | 0.8981 | 0.8970 | 0.8966 |
68
+ | 0.056 | 11.0 | 528 | 0.4461 | 0.9174 | 0.9102 | 0.9091 | 0.9094 |
69
+ | 0.0451 | 12.0 | 576 | 0.4772 | 0.8991 | 0.8926 | 0.8891 | 0.8906 |
70
+ | 0.0309 | 13.0 | 624 | 0.4396 | 0.9220 | 0.9160 | 0.9169 | 0.9155 |
71
+ | 0.0338 | 14.0 | 672 | 0.4423 | 0.9220 | 0.9156 | 0.9170 | 0.9158 |
72
+ | 0.0458 | 15.0 | 720 | 0.4408 | 0.9220 | 0.9156 | 0.9170 | 0.9158 |
73
+
74
+
75
+ ### Framework versions
76
+
77
+ - Transformers 4.42.4
78
+ - Pytorch 2.3.1+cu121
79
+ - Datasets 2.20.0
80
+ - Tokenizers 0.19.1
config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google-bert/bert-base-multilingual-uncased",
3
+ "architectures": [
4
+ "BertForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "directionality": "bidi",
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "LABEL_0",
14
+ "1": "LABEL_1",
15
+ "2": "LABEL_2",
16
+ "3": "LABEL_3",
17
+ "4": "LABEL_4"
18
+ },
19
+ "initializer_range": 0.02,
20
+ "intermediate_size": 3072,
21
+ "label2id": {
22
+ "LABEL_0": 0,
23
+ "LABEL_1": 1,
24
+ "LABEL_2": 2,
25
+ "LABEL_3": 3,
26
+ "LABEL_4": 4
27
+ },
28
+ "layer_norm_eps": 1e-12,
29
+ "max_position_embeddings": 512,
30
+ "model_type": "bert",
31
+ "num_attention_heads": 12,
32
+ "num_hidden_layers": 12,
33
+ "pad_token_id": 0,
34
+ "pooler_fc_size": 768,
35
+ "pooler_num_attention_heads": 12,
36
+ "pooler_num_fc_layers": 3,
37
+ "pooler_size_per_head": 128,
38
+ "pooler_type": "first_token_transform",
39
+ "position_embedding_type": "absolute",
40
+ "problem_type": "single_label_classification",
41
+ "torch_dtype": "float32",
42
+ "transformers_version": "4.42.4",
43
+ "type_vocab_size": 2,
44
+ "use_cache": true,
45
+ "vocab_size": 548133
46
+ }
fasttext_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:edae19e61dbf3964d4d41c959199d644783b07e31fa84c97a2e74e8abed9c737
3
+ size 9534119835
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66cb4507e9930ee9320cb73c92b5b42df3374c9ebffea808a7de85a935343828
3
+ size 2028069268
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7ee997794dc35fb390bf3b2e61e989defd99344c5e09526efd4f08b8b752a77
3
+ size 5112
vocab.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52a2c8ad1723b1952d64ad5155b3cc87e13ae15e55cc9c6c2a2c078c7ce90216
3
+ size 17457360