Training in progress, epoch 1
Browse files- config.json +13 -12
- pytorch_model.bin +2 -2
- special_tokens_map.json +0 -2
- tokenizer.json +0 -0
- tokenizer_config.json +3 -5
- training_args.bin +1 -1
- vocab.txt +0 -0
config.json
CHANGED
@@ -1,13 +1,11 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
3 |
"architectures": [
|
4 |
-
"
|
5 |
],
|
6 |
"attention_probs_dropout_prob": 0.1,
|
7 |
-
"bos_token_id": 0,
|
8 |
"classifier_dropout": null,
|
9 |
-
"
|
10 |
-
"gradient_checkpointing": false,
|
11 |
"hidden_act": "gelu",
|
12 |
"hidden_dropout_prob": 0.1,
|
13 |
"hidden_size": 768,
|
@@ -49,18 +47,21 @@
|
|
49 |
"LABEL_8": 8,
|
50 |
"LABEL_9": 9
|
51 |
},
|
52 |
-
"layer_norm_eps": 1e-
|
53 |
-
"max_position_embeddings":
|
54 |
-
"model_type": "
|
55 |
"num_attention_heads": 12,
|
56 |
"num_hidden_layers": 12,
|
57 |
-
"pad_token_id":
|
58 |
"position_embedding_type": "absolute",
|
59 |
"problem_type": "single_label_classification",
|
60 |
-
"
|
|
|
|
|
|
|
61 |
"torch_dtype": "float32",
|
62 |
"transformers_version": "4.33.2",
|
63 |
-
"type_vocab_size":
|
64 |
"use_cache": true,
|
65 |
-
"vocab_size":
|
66 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "kykim/electra-kor-base",
|
3 |
"architectures": [
|
4 |
+
"ElectraForSequenceClassification"
|
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,
|
|
|
47 |
"LABEL_8": 8,
|
48 |
"LABEL_9": 9
|
49 |
},
|
50 |
+
"layer_norm_eps": 1e-12,
|
51 |
+
"max_position_embeddings": 512,
|
52 |
+
"model_type": "electra",
|
53 |
"num_attention_heads": 12,
|
54 |
"num_hidden_layers": 12,
|
55 |
+
"pad_token_id": 0,
|
56 |
"position_embedding_type": "absolute",
|
57 |
"problem_type": "single_label_classification",
|
58 |
+
"summary_activation": "gelu",
|
59 |
+
"summary_last_dropout": 0.1,
|
60 |
+
"summary_type": "first",
|
61 |
+
"summary_use_proj": true,
|
62 |
"torch_dtype": "float32",
|
63 |
"transformers_version": "4.33.2",
|
64 |
+
"type_vocab_size": 2,
|
65 |
"use_cache": true,
|
66 |
+
"vocab_size": 42000
|
67 |
}
|
pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eb5c70c73b9125c50e11dd9584e60ef233c40ffef02ea05946e1fb910f2549ca
|
3 |
+
size 473307569
|
special_tokens_map.json
CHANGED
@@ -1,7 +1,5 @@
|
|
1 |
{
|
2 |
-
"bos_token": "[CLS]",
|
3 |
"cls_token": "[CLS]",
|
4 |
-
"eos_token": "[SEP]",
|
5 |
"mask_token": "[MASK]",
|
6 |
"pad_token": "[PAD]",
|
7 |
"sep_token": "[SEP]",
|
|
|
1 |
{
|
|
|
2 |
"cls_token": "[CLS]",
|
|
|
3 |
"mask_token": "[MASK]",
|
4 |
"pad_token": "[PAD]",
|
5 |
"sep_token": "[SEP]",
|
tokenizer.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
CHANGED
@@ -1,16 +1,14 @@
|
|
1 |
{
|
2 |
-
"bos_token": "[CLS]",
|
3 |
"clean_up_tokenization_spaces": true,
|
4 |
"cls_token": "[CLS]",
|
5 |
"do_basic_tokenize": true,
|
6 |
-
"do_lower_case":
|
7 |
-
"eos_token": "[SEP]",
|
8 |
"mask_token": "[MASK]",
|
9 |
-
"model_max_length":
|
10 |
"never_split": null,
|
11 |
"pad_token": "[PAD]",
|
12 |
"sep_token": "[SEP]",
|
13 |
-
"strip_accents":
|
14 |
"tokenize_chinese_chars": true,
|
15 |
"tokenizer_class": "BertTokenizer",
|
16 |
"unk_token": "[UNK]"
|
|
|
1 |
{
|
|
|
2 |
"clean_up_tokenization_spaces": true,
|
3 |
"cls_token": "[CLS]",
|
4 |
"do_basic_tokenize": true,
|
5 |
+
"do_lower_case": true,
|
|
|
6 |
"mask_token": "[MASK]",
|
7 |
+
"model_max_length": 256,
|
8 |
"never_split": null,
|
9 |
"pad_token": "[PAD]",
|
10 |
"sep_token": "[SEP]",
|
11 |
+
"strip_accents": false,
|
12 |
"tokenize_chinese_chars": true,
|
13 |
"tokenizer_class": "BertTokenizer",
|
14 |
"unk_token": "[UNK]"
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4091
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4b6bce61b6e553317a28affa96b556a06d071db455fa31cf2a63dc8f8ffef02c
|
3 |
size 4091
|
vocab.txt
CHANGED
The diff for this file is too large to render.
See raw diff
|
|