soddokayo commited on
Commit
2e8c573
·
1 Parent(s): 3ba9823

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": "monologg/koelectra-base-v3-discriminator",
3
+ "architectures": [
4
+ "ElectraForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "embedding_size": 768,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "B-DT",
14
+ "1": "I-DT",
15
+ "2": "B-LC",
16
+ "3": "I-LC",
17
+ "4": "B-OG",
18
+ "5": "I-OG",
19
+ "6": "B-PS",
20
+ "7": "I-PS",
21
+ "8": "B-QT",
22
+ "9": "I-QT",
23
+ "10": "B-TI",
24
+ "11": "I-TI",
25
+ "12": "O"
26
+ },
27
+ "initializer_range": 0.02,
28
+ "intermediate_size": 3072,
29
+ "label2id": {
30
+ "B-DT": 0,
31
+ "B-LC": 2,
32
+ "B-OG": 4,
33
+ "B-PS": 6,
34
+ "B-QT": 8,
35
+ "B-TI": 10,
36
+ "I-DT": 1,
37
+ "I-LC": 3,
38
+ "I-OG": 5,
39
+ "I-PS": 7,
40
+ "I-QT": 9,
41
+ "I-TI": 11,
42
+ "O": 12
43
+ },
44
+ "layer_norm_eps": 1e-12,
45
+ "max_position_embeddings": 512,
46
+ "model_type": "electra",
47
+ "num_attention_heads": 12,
48
+ "num_hidden_layers": 12,
49
+ "pad_token_id": 0,
50
+ "position_embedding_type": "absolute",
51
+ "summary_activation": "gelu",
52
+ "summary_last_dropout": 0.1,
53
+ "summary_type": "first",
54
+ "summary_use_proj": true,
55
+ "torch_dtype": "float32",
56
+ "transformers_version": "4.30.2",
57
+ "type_vocab_size": 2,
58
+ "use_cache": true,
59
+ "vocab_size": 35000
60
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ab1884c196e6051e05b3cfb5e5a1c4fd78b44d1afc9d157cf4f384b163c8f4c
3
+ size 449432941
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": "ElectraTokenizer",
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:d147ac16f13ad803d6e9db4b5bf33225d35eb5186b2df47c810636b967b1f20f
3
+ size 3899
vocab.txt ADDED
The diff for this file is too large to render. See raw diff