lsoni commited on
Commit
df7a081
1 Parent(s): 67829c2

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-cased",
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": "B-corporation",
14
+ "1": "B-creative_work",
15
+ "2": "B-event",
16
+ "3": "B-group",
17
+ "4": "B-location",
18
+ "5": "B-person",
19
+ "6": "B-product",
20
+ "7": "I-corporation",
21
+ "8": "I-creative_work",
22
+ "9": "I-event",
23
+ "10": "I-group",
24
+ "11": "I-location",
25
+ "12": "I-person",
26
+ "13": "I-product",
27
+ "14": "O"
28
+ },
29
+ "initializer_range": 0.02,
30
+ "intermediate_size": 3072,
31
+ "label2id": {
32
+ "B-corporation": 0,
33
+ "B-creative_work": 1,
34
+ "B-event": 2,
35
+ "B-group": 3,
36
+ "B-location": 4,
37
+ "B-person": 5,
38
+ "B-product": 6,
39
+ "I-corporation": 7,
40
+ "I-creative_work": 8,
41
+ "I-event": 9,
42
+ "I-group": 10,
43
+ "I-location": 11,
44
+ "I-person": 12,
45
+ "I-product": 13,
46
+ "O": 14
47
+ },
48
+ "layer_norm_eps": 1e-12,
49
+ "max_position_embeddings": 512,
50
+ "model_type": "bert",
51
+ "num_attention_heads": 12,
52
+ "num_hidden_layers": 12,
53
+ "pad_token_id": 0,
54
+ "position_embedding_type": "absolute",
55
+ "torch_dtype": "float32",
56
+ "transformers_version": "4.30.2",
57
+ "type_vocab_size": 2,
58
+ "use_cache": true,
59
+ "vocab_size": 28996
60
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d8534fcdb2604edcd1d8bdab9a31b9e32757e9a025cbc973f51e8b0f44927ce
3
+ size 430994221
runs/Jul13_11-54-55_316b6340c5b0/events.out.tfevents.1689249328.316b6340c5b0.1753.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c81491b74ce4ed33933aacf8a58cf1f51cc4602a652b2f1fe30a46934284ef7
3
+ size 5167
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,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": false,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "BertTokenizer",
12
+ "unk_token": "[UNK]"
13
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ceff4e9291cd25edb8c031b87672a145a28864abd1725123974a064fd3bad500
3
+ size 3899
vocab.txt ADDED
The diff for this file is too large to render. See raw diff