chunwoolee0 commited on
Commit
fc9b7ec
1 Parent(s): 3b4cdb6

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "klue/bert-base",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "B-DT",
13
+ "1": "I-DT",
14
+ "2": "B-LC",
15
+ "3": "I-LC",
16
+ "4": "B-OG",
17
+ "5": "I-OG",
18
+ "6": "B-PS",
19
+ "7": "I-PS",
20
+ "8": "B-QT",
21
+ "9": "I-QT",
22
+ "10": "B-TI",
23
+ "11": "I-TI",
24
+ "12": "O"
25
+ },
26
+ "initializer_range": 0.02,
27
+ "intermediate_size": 3072,
28
+ "label2id": {
29
+ "B-DT": 0,
30
+ "B-LC": 2,
31
+ "B-OG": 4,
32
+ "B-PS": 6,
33
+ "B-QT": 8,
34
+ "B-TI": 10,
35
+ "I-DT": 1,
36
+ "I-LC": 3,
37
+ "I-OG": 5,
38
+ "I-PS": 7,
39
+ "I-QT": 9,
40
+ "I-TI": 11,
41
+ "O": 12
42
+ },
43
+ "layer_norm_eps": 1e-12,
44
+ "max_position_embeddings": 512,
45
+ "model_type": "bert",
46
+ "num_attention_heads": 12,
47
+ "num_hidden_layers": 12,
48
+ "pad_token_id": 0,
49
+ "position_embedding_type": "absolute",
50
+ "torch_dtype": "float32",
51
+ "transformers_version": "4.31.0",
52
+ "type_vocab_size": 2,
53
+ "use_cache": true,
54
+ "vocab_size": 32000
55
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0058ddb54451f6220a2a360f66d806ac38bf59ff3b83899931f9edc0a82925ee
3
+ size 440214697
runs/Jul25_01-12-31_4b73f7e5066e/events.out.tfevents.1690247570.4b73f7e5066e.1095.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24087ec708fe3f6c0436249ce85a4f4bbf0d26b961ac3f40a2ce6b1821e0f8f9
3
+ size 5720
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,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_basic_tokenize": true,
5
+ "do_lower_case": false,
6
+ "mask_token": "[MASK]",
7
+ "model_max_length": 512,
8
+ "never_split": null,
9
+ "pad_token": "[PAD]",
10
+ "sep_token": "[SEP]",
11
+ "strip_accents": null,
12
+ "tokenize_chinese_chars": true,
13
+ "tokenizer_class": "BertTokenizer",
14
+ "unk_token": "[UNK]"
15
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb459e24e17e26f8c2286a4bbd9c57522033e8f079cbfb0ad7e82a4a2b949219
3
+ size 3963
vocab.txt ADDED
The diff for this file is too large to render. See raw diff