vuminhtue commited on
Commit
18aa9e0
·
verified ·
1 Parent(s): da4fb29

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_base_NER_PII200
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/4vy2fwd9)
15
+ # Bert_base_NER_PII200
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,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "COLOR",
17
+ "4": "CREDITCARDISSUER",
18
+ "5": "CREDITCARDNUMBER",
19
+ "6": "CURRENCY",
20
+ "7": "NEARBYGPSCOORDINATE",
21
+ "8": "ORDINALDIRECTION",
22
+ "9": "PASSWORD",
23
+ "10": "PHONEIMEI",
24
+ "11": "PHONENUMBER",
25
+ "12": "PREFIX",
26
+ "13": "SSN",
27
+ "14": "STREET",
28
+ "15": "TIME",
29
+ "16": "URL",
30
+ "17": "USERAGENT",
31
+ "18": "USERNAME",
32
+ "19": "VEHICLEVIN",
33
+ "20": "VEHICLEVRM",
34
+ "21": "ZIPCODE",
35
+ "22": "ADDRESS",
36
+ "23": "ORG",
37
+ "24": "AGE",
38
+ "25": "BIC",
39
+ "26": "NUM",
40
+ "27": "DATE",
41
+ "28": "DOB",
42
+ "29": "EMAIL",
43
+ "30": "GENDER",
44
+ "31": "GEO",
45
+ "32": "HEIGHT",
46
+ "33": "IBAN",
47
+ "34": "IP",
48
+ "35": "JOB",
49
+ "36": "MAC",
50
+ "37": "NAME",
51
+ "38": "O"
52
+ },
53
+ "initializer_range": 0.02,
54
+ "intermediate_size": 3072,
55
+ "label2id": {
56
+ "ACCOUNTNAME": 0,
57
+ "ACCOUNTNUMBER": 1,
58
+ "ADDRESS": 22,
59
+ "AGE": 24,
60
+ "BIC": 25,
61
+ "COINADDRESS": 2,
62
+ "COLOR": 3,
63
+ "CREDITCARDISSUER": 4,
64
+ "CREDITCARDNUMBER": 5,
65
+ "CURRENCY": 6,
66
+ "DATE": 27,
67
+ "DOB": 28,
68
+ "EMAIL": 29,
69
+ "GENDER": 30,
70
+ "GEO": 31,
71
+ "HEIGHT": 32,
72
+ "IBAN": 33,
73
+ "IP": 34,
74
+ "JOB": 35,
75
+ "MAC": 36,
76
+ "NAME": 37,
77
+ "NEARBYGPSCOORDINATE": 7,
78
+ "NUM": 26,
79
+ "O": 38,
80
+ "ORDINALDIRECTION": 8,
81
+ "ORG": 23,
82
+ "PASSWORD": 9,
83
+ "PHONEIMEI": 10,
84
+ "PHONENUMBER": 11,
85
+ "PREFIX": 12,
86
+ "SSN": 13,
87
+ "STREET": 14,
88
+ "TIME": 15,
89
+ "URL": 16,
90
+ "USERAGENT": 17,
91
+ "USERNAME": 18,
92
+ "VEHICLEVIN": 19,
93
+ "VEHICLEVRM": 20,
94
+ "ZIPCODE": 21
95
+ },
96
+ "layer_norm_eps": 1e-12,
97
+ "max_position_embeddings": 512,
98
+ "model_type": "bert",
99
+ "num_attention_heads": 12,
100
+ "num_hidden_layers": 12,
101
+ "pad_token_id": 0,
102
+ "position_embedding_type": "absolute",
103
+ "torch_dtype": "float32",
104
+ "transformers_version": "4.41.0.dev0",
105
+ "type_vocab_size": 2,
106
+ "use_cache": true,
107
+ "vocab_size": 30522
108
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1423035d0665e79ebc7da7059be89426f57c380deff4dda6818cbba67e482b3
3
+ size 435709900
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:5854994580bd6b6f41749828720b4114e07c2906620c1bcf9a53b741d7ce29b3
3
+ size 4603
vocab.txt ADDED
The diff for this file is too large to render. See raw diff