ish97 commited on
Commit
a90e299
1 Parent(s): 131d2de

Training in progress, epoch 1

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