bileldh commited on
Commit
9dfe991
1 Parent(s): fc724dd

Training in progress epoch 0

Browse files
config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-MET",
15
+ "2": "I-MET",
16
+ "3": "B-CONT",
17
+ "4": "I-CONT",
18
+ "5": "B-EDU",
19
+ "6": "I-EDU",
20
+ "7": "B-CER",
21
+ "8": "I-CER",
22
+ "9": "B-EXP",
23
+ "10": "I-EXP",
24
+ "11": "B-SAL",
25
+ "12": "I-SAL",
26
+ "13": "B-LOC",
27
+ "14": "I-LOC",
28
+ "15": "B-ORG",
29
+ "16": "I-ORG"
30
+ },
31
+ "initializer_range": 0.02,
32
+ "intermediate_size": 3072,
33
+ "label2id": {
34
+ "B-CER": 7,
35
+ "B-CONT": 3,
36
+ "B-EDU": 5,
37
+ "B-EXP": 9,
38
+ "B-LOC": 13,
39
+ "B-MET": 1,
40
+ "B-ORG": 15,
41
+ "B-SAL": 11,
42
+ "I-CER": 8,
43
+ "I-CONT": 4,
44
+ "I-EDU": 6,
45
+ "I-EXP": 10,
46
+ "I-LOC": 14,
47
+ "I-MET": 2,
48
+ "I-ORG": 16,
49
+ "I-SAL": 12,
50
+ "O": 0
51
+ },
52
+ "layer_norm_eps": 1e-12,
53
+ "max_position_embeddings": 512,
54
+ "model_type": "bert",
55
+ "num_attention_heads": 12,
56
+ "num_hidden_layers": 12,
57
+ "pad_token_id": 0,
58
+ "position_embedding_type": "absolute",
59
+ "torch_dtype": "float32",
60
+ "transformers_version": "4.25.1",
61
+ "type_vocab_size": 2,
62
+ "use_cache": true,
63
+ "vocab_size": 28996
64
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab5fd8be1c681dec937fe89ade837b2e91f93054914d6778ff9340c9091526b3
3
+ size 431003181
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
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff