devngho commited on
Commit
a0c9a04
1 Parent(s): 0e7691b

Training in progress, step 256

Browse files
config.json CHANGED
@@ -1,12 +1,11 @@
1
  {
2
- "_name_or_path": "klue/roberta-base",
3
  "architectures": [
4
- "RobertaForSequenceClassification"
5
  ],
6
  "attention_probs_dropout_prob": 0.1,
7
- "bos_token_id": 0,
8
  "classifier_dropout": 0.0,
9
- "eos_token_id": 2,
10
  "gradient_checkpointing": false,
11
  "hidden_act": "gelu",
12
  "hidden_dropout_prob": 0.0,
@@ -19,18 +18,22 @@
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": 12,
26
  "num_hidden_layers": 12,
27
- "pad_token_id": 1,
 
 
 
 
 
28
  "position_embedding_type": "absolute",
29
  "problem_type": "regression",
30
- "tokenizer_class": "BertTokenizer",
31
  "torch_dtype": "float32",
32
  "transformers_version": "4.43.3",
33
- "type_vocab_size": 1,
34
  "use_cache": true,
35
- "vocab_size": 32000
36
  }
 
1
  {
2
+ "_name_or_path": "lemon-mint/LaBSE-EnKo-Nano-Preview-v0.3",
3
  "architectures": [
4
+ "BertForSequenceClassification"
5
  ],
6
  "attention_probs_dropout_prob": 0.1,
 
7
  "classifier_dropout": 0.0,
8
+ "directionality": "bidi",
9
  "gradient_checkpointing": false,
10
  "hidden_act": "gelu",
11
  "hidden_dropout_prob": 0.0,
 
18
  "label2id": {
19
  "LABEL_0": 0
20
  },
21
+ "layer_norm_eps": 1e-12,
22
+ "max_position_embeddings": 512,
23
+ "model_type": "bert",
24
  "num_attention_heads": 12,
25
  "num_hidden_layers": 12,
26
+ "pad_token_id": 0,
27
+ "pooler_fc_size": 768,
28
+ "pooler_num_attention_heads": 12,
29
+ "pooler_num_fc_layers": 3,
30
+ "pooler_size_per_head": 128,
31
+ "pooler_type": "first_token_transform",
32
  "position_embedding_type": "absolute",
33
  "problem_type": "regression",
 
34
  "torch_dtype": "float32",
35
  "transformers_version": "4.43.3",
36
+ "type_vocab_size": 2,
37
  "use_cache": true,
38
+ "vocab_size": 51547
39
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e5b5e7e2399a6bbf31e687a2b492177005d0cfafb61cef0b202f6bba44c0de2d
3
- size 442499668
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70c84f3af7ee0adfb42216f02136a2e3db9b2c36f2a116a954527eaaeecf3dbe
3
+ size 502544380
special_tokens_map.json CHANGED
@@ -1,11 +1,4 @@
1
  {
2
- "bos_token": {
3
- "content": "[CLS]",
4
- "lstrip": false,
5
- "normalized": false,
6
- "rstrip": false,
7
- "single_word": false
8
- },
9
  "cls_token": {
10
  "content": "[CLS]",
11
  "lstrip": false,
@@ -13,13 +6,6 @@
13
  "rstrip": false,
14
  "single_word": false
15
  },
16
- "eos_token": {
17
- "content": "[SEP]",
18
- "lstrip": false,
19
- "normalized": false,
20
- "rstrip": false,
21
- "single_word": false
22
- },
23
  "mask_token": {
24
  "content": "[MASK]",
25
  "lstrip": false,
 
1
  {
 
 
 
 
 
 
 
2
  "cls_token": {
3
  "content": "[CLS]",
4
  "lstrip": false,
 
6
  "rstrip": false,
7
  "single_word": false
8
  },
 
 
 
 
 
 
 
9
  "mask_token": {
10
  "content": "[MASK]",
11
  "lstrip": false,
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,7 +25,7 @@
25
  "special": true
26
  },
27
  "3": {
28
- "content": "[UNK]",
29
  "lstrip": false,
30
  "normalized": false,
31
  "rstrip": false,
@@ -41,12 +41,11 @@
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,
 
1
  {
2
  "added_tokens_decoder": {
3
  "0": {
4
+ "content": "[PAD]",
5
  "lstrip": false,
6
  "normalized": false,
7
  "rstrip": false,
 
9
  "special": true
10
  },
11
  "1": {
12
+ "content": "[UNK]",
13
  "lstrip": false,
14
  "normalized": false,
15
  "rstrip": false,
 
17
  "special": true
18
  },
19
  "2": {
20
+ "content": "[CLS]",
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,
 
41
  "special": true
42
  }
43
  },
 
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
46
  "do_basic_tokenize": true,
47
  "do_lower_case": false,
48
+ "full_tokenizer_file": null,
49
  "mask_token": "[MASK]",
50
  "model_max_length": 512,
51
  "never_split": null,
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b4c8cbad2af6c789147145d94979f35047578c60d85338a18f694243fc206a2e
3
  size 5176
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:882520aa2973aae4499f83ada418ae35032cf7e32e286b04afe51bd93d269eee
3
  size 5176
vocab.txt CHANGED
The diff for this file is too large to render. See raw diff