bradmin commited on
Commit
d62d8fa
·
1 Parent(s): 100ded9

Training in progress, step 100

Browse files
config.json CHANGED
@@ -1,35 +1,36 @@
1
  {
2
- "_name_or_path": "klue/roberta-large",
3
  "architectures": [
4
- "RobertaForSequenceClassification"
5
  ],
6
- "attention_probs_dropout_prob": 0.1,
7
  "bos_token_id": 0,
8
- "classifier_dropout": null,
9
  "eos_token_id": 2,
10
- "gradient_checkpointing": false,
11
  "hidden_act": "gelu",
12
- "hidden_dropout_prob": 0.1,
13
- "hidden_size": 1024,
14
  "id2label": {
15
  "0": "LABEL_0"
16
  },
17
  "initializer_range": 0.02,
18
- "intermediate_size": 4096,
19
  "label2id": {
20
  "LABEL_0": 0
21
  },
22
  "layer_norm_eps": 1e-05,
23
- "max_position_embeddings": 514,
24
- "model_type": "roberta",
25
  "num_attention_heads": 16,
26
  "num_hidden_layers": 24,
27
  "pad_token_id": 2,
28
- "position_embedding_type": "absolute",
29
- "tokenizer_class": "BertTokenizer",
 
 
30
  "torch_dtype": "float32",
31
  "transformers_version": "4.34.1",
32
- "type_vocab_size": 1,
33
  "use_cache": true,
34
- "vocab_size": 32000
 
35
  }
 
1
  {
2
+ "_name_or_path": "EleutherAI/polyglot-ko-1.3b",
3
  "architectures": [
4
+ "GPTNeoXForSequenceClassification"
5
  ],
6
+ "attention_dropout": 0.0,
7
  "bos_token_id": 0,
8
+ "classifier_dropout": 0.1,
9
  "eos_token_id": 2,
 
10
  "hidden_act": "gelu",
11
+ "hidden_dropout": 0.0,
12
+ "hidden_size": 2048,
13
  "id2label": {
14
  "0": "LABEL_0"
15
  },
16
  "initializer_range": 0.02,
17
+ "intermediate_size": 8192,
18
  "label2id": {
19
  "LABEL_0": 0
20
  },
21
  "layer_norm_eps": 1e-05,
22
+ "max_position_embeddings": 2048,
23
+ "model_type": "gpt_neox",
24
  "num_attention_heads": 16,
25
  "num_hidden_layers": 24,
26
  "pad_token_id": 2,
27
+ "rope_scaling": null,
28
+ "rotary_emb_base": 10000,
29
+ "rotary_pct": 0.5,
30
+ "tie_word_embeddings": false,
31
  "torch_dtype": "float32",
32
  "transformers_version": "4.34.1",
 
33
  "use_cache": true,
34
+ "use_parallel_residual": true,
35
+ "vocab_size": 30080
36
  }
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:62de9ff850ddfe83385cd791735b3bc98586feb411a922fe58bb711351b98032
3
- size 1346765678
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5a038be930d7e4b9c06380cca5c12b961950b685498eb1df7b7188f4af6c5ba
3
+ size 5080945162
special_tokens_map.json CHANGED
@@ -1,9 +1,11 @@
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]",
8
- "unk_token": "[UNK]"
 
 
9
  }
 
1
  {
2
+ "additional_special_tokens": [
3
+ "<|endoftext|>",
4
+ "<|sep|>",
5
+ "<|acc|>",
6
+ "<|tel|>",
7
+ "<|rrn|>"
8
+ ],
9
+ "eos_token": "<|endoftext|>",
10
+ "pad_token": "<|endoftext|>"
11
  }
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "added_tokens_decoder": {
3
  "0": {
4
- "content": "[CLS]",
5
  "lstrip": false,
6
  "normalized": false,
7
  "rstrip": false,
@@ -9,7 +9,7 @@
9
  "special": true
10
  },
11
  "1": {
12
- "content": "[PAD]",
13
  "lstrip": false,
14
  "normalized": false,
15
  "rstrip": false,
@@ -17,7 +17,7 @@
17
  "special": true
18
  },
19
  "2": {
20
- "content": "[SEP]",
21
  "lstrip": false,
22
  "normalized": false,
23
  "rstrip": false,
@@ -25,15 +25,31 @@
25
  "special": true
26
  },
27
  "3": {
28
- "content": "[UNK]",
29
  "lstrip": false,
30
  "normalized": false,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  },
35
- "4": {
36
- "content": "[MASK]",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  "lstrip": false,
38
  "normalized": false,
39
  "rstrip": false,
@@ -41,19 +57,16 @@
41
  "special": true
42
  }
43
  },
44
- "bos_token": "[CLS]",
 
 
 
 
 
 
45
  "clean_up_tokenization_spaces": true,
46
- "cls_token": "[CLS]",
47
- "do_basic_tokenize": true,
48
- "do_lower_case": false,
49
- "eos_token": "[SEP]",
50
- "mask_token": "[MASK]",
51
- "model_max_length": 512,
52
- "never_split": null,
53
- "pad_token": "[PAD]",
54
- "sep_token": "[SEP]",
55
- "strip_accents": null,
56
- "tokenize_chinese_chars": true,
57
- "tokenizer_class": "BertTokenizer",
58
- "unk_token": "[UNK]"
59
  }
 
1
  {
2
  "added_tokens_decoder": {
3
  "0": {
4
+ "content": "<|unused0|>",
5
  "lstrip": false,
6
  "normalized": false,
7
  "rstrip": false,
 
9
  "special": true
10
  },
11
  "1": {
12
+ "content": "<|unused1|>",
13
  "lstrip": false,
14
  "normalized": false,
15
  "rstrip": false,
 
17
  "special": true
18
  },
19
  "2": {
20
+ "content": "<|endoftext|>",
21
  "lstrip": false,
22
  "normalized": false,
23
  "rstrip": false,
 
25
  "special": true
26
  },
27
  "3": {
28
+ "content": "<|sep|>",
29
  "lstrip": false,
30
  "normalized": false,
31
  "rstrip": false,
32
  "single_word": false,
33
  "special": true
34
  },
35
+ "30000": {
36
+ "content": "<|acc|>",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ },
43
+ "30001": {
44
+ "content": "<|tel|>",
45
+ "lstrip": false,
46
+ "normalized": false,
47
+ "rstrip": false,
48
+ "single_word": false,
49
+ "special": true
50
+ },
51
+ "30002": {
52
+ "content": "<|rrn|>",
53
  "lstrip": false,
54
  "normalized": false,
55
  "rstrip": false,
 
57
  "special": true
58
  }
59
  },
60
+ "additional_special_tokens": [
61
+ "<|endoftext|>",
62
+ "<|sep|>",
63
+ "<|acc|>",
64
+ "<|tel|>",
65
+ "<|rrn|>"
66
+ ],
67
  "clean_up_tokenization_spaces": true,
68
+ "eos_token": "<|endoftext|>",
69
+ "model_max_length": 1000000000000000019884624838656,
70
+ "pad_token": "<|endoftext|>",
71
+ "tokenizer_class": "PreTrainedTokenizerFast"
 
 
 
 
 
 
 
 
 
72
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e1b0be5f447301b577e44061c504ec9398fb05913a538169784e7cfc7134c7d3
3
  size 4600
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19f57ba66f27fb038e41f4b640f06321151aa6bdef95a3c3a615bf73330d3d10
3
  size 4600