vuminhtue commited on
Commit
b88204c
1 Parent(s): 9b73eea

End of training

Browse files
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: google-bert/bert-base-uncased
4
+ tags:
5
+ - generated_from_trainer
6
+ model-index:
7
+ - name: Bert_NER_Merge4
8
+ results: []
9
+ ---
10
+
11
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
12
+ should probably proofread and complete it, then remove this comment. -->
13
+
14
+ [<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="200" height="32"/>](https://wandb.ai/tuevu_smu/huggingface/runs/dh2w9cd6)
15
+ # Bert_NER_Merge4
16
+
17
+ This model is a fine-tuned version of [google-bert/bert-base-uncased](https://huggingface.co/google-bert/bert-base-uncased) on the None dataset.
18
+
19
+ ## Model description
20
+
21
+ More information needed
22
+
23
+ ## Intended uses & limitations
24
+
25
+ More information needed
26
+
27
+ ## Training and evaluation data
28
+
29
+ More information needed
30
+
31
+ ## Training procedure
32
+
33
+ ### Training hyperparameters
34
+
35
+ The following hyperparameters were used during training:
36
+ - learning_rate: 5e-05
37
+ - train_batch_size: 16
38
+ - eval_batch_size: 64
39
+ - seed: 42
40
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
41
+ - lr_scheduler_type: linear
42
+ - lr_scheduler_warmup_steps: 500
43
+ - num_epochs: 3
44
+
45
+ ### Training results
46
+
47
+
48
+
49
+ ### Framework versions
50
+
51
+ - Transformers 4.41.0.dev0
52
+ - Pytorch 1.13.1
53
+ - Datasets 2.18.0
54
+ - Tokenizers 0.19.1
config.json ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google-bert/bert-base-uncased",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "ACCOUNTNAME",
14
+ "1": "ACCOUNTNUMBER",
15
+ "2": "COINADDRESS",
16
+ "3": "ADDRESS",
17
+ "4": "AGE",
18
+ "5": "BIC",
19
+ "6": "CREDITCARDISSUER",
20
+ "7": "CREDITCARDNUMBER",
21
+ "8": "CURRENCY",
22
+ "9": "DATE",
23
+ "10": "EMAIL",
24
+ "11": "EYECOLOR",
25
+ "12": "GENDER",
26
+ "13": "GEO",
27
+ "14": "HEIGHT",
28
+ "15": "JOB",
29
+ "16": "MAC",
30
+ "17": "MISC",
31
+ "18": "USERNAME",
32
+ "19": "NAME",
33
+ "20": "NEARBYGPSCOORDINATE",
34
+ "21": "ORDINALDIRECTION",
35
+ "22": "ORG",
36
+ "23": "PASSWORD",
37
+ "24": "PHONEIMEI",
38
+ "25": "PHONENUMBER",
39
+ "26": "PREFIX",
40
+ "27": "SSN",
41
+ "28": "STREET",
42
+ "29": "TIME",
43
+ "30": "URL",
44
+ "31": "VEHICLEVIN",
45
+ "32": "VEHICLEVRM",
46
+ "33": "ZIPCODE",
47
+ "34": "IP",
48
+ "35": "NUM",
49
+ "36": "O",
50
+ "37": "GPE"
51
+ },
52
+ "initializer_range": 0.02,
53
+ "intermediate_size": 3072,
54
+ "label2id": {
55
+ "ACCOUNTNAME": 0,
56
+ "ACCOUNTNUMBER": 1,
57
+ "ADDRESS": 3,
58
+ "AGE": 4,
59
+ "BIC": 5,
60
+ "COINADDRESS": 2,
61
+ "CREDITCARDISSUER": 6,
62
+ "CREDITCARDNUMBER": 7,
63
+ "CURRENCY": 8,
64
+ "DATE": 9,
65
+ "EMAIL": 10,
66
+ "EYECOLOR": 11,
67
+ "GENDER": 12,
68
+ "GEO": 13,
69
+ "GPE": 37,
70
+ "HEIGHT": 14,
71
+ "IP": 34,
72
+ "JOB": 15,
73
+ "MAC": 16,
74
+ "MISC": 17,
75
+ "NAME": 19,
76
+ "NEARBYGPSCOORDINATE": 20,
77
+ "NUM": 35,
78
+ "O": 36,
79
+ "ORDINALDIRECTION": 21,
80
+ "ORG": 22,
81
+ "PASSWORD": 23,
82
+ "PHONEIMEI": 24,
83
+ "PHONENUMBER": 25,
84
+ "PREFIX": 26,
85
+ "SSN": 27,
86
+ "STREET": 28,
87
+ "TIME": 29,
88
+ "URL": 30,
89
+ "USERNAME": 18,
90
+ "VEHICLEVIN": 31,
91
+ "VEHICLEVRM": 32,
92
+ "ZIPCODE": 33
93
+ },
94
+ "layer_norm_eps": 1e-12,
95
+ "max_position_embeddings": 512,
96
+ "model_type": "bert",
97
+ "num_attention_heads": 12,
98
+ "num_hidden_layers": 12,
99
+ "pad_token_id": 0,
100
+ "position_embedding_type": "absolute",
101
+ "torch_dtype": "float32",
102
+ "transformers_version": "4.41.0.dev0",
103
+ "type_vocab_size": 2,
104
+ "use_cache": true,
105
+ "vocab_size": 30522
106
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8a006144a8b29fe93377510d9d10bb82fb9100644a7b65714e70b274b3e2510
3
+ size 435706824
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,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_lower_case": true,
47
+ "mask_token": "[MASK]",
48
+ "model_max_length": 512,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "BertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:551502d2ec45627601179072cb9c6c9db476d8fa2622943e3a506d9ebbbb9a63
3
+ size 4603
vocab.txt ADDED
The diff for this file is too large to render. See raw diff