kt220 commited on
Commit
71259c5
·
1 Parent(s): aabdb03

Training in progress, epoch 1

Browse files
Files changed (5) hide show
  1. config.json +18 -16
  2. pytorch_model.bin +2 -2
  3. tokenizer_config.json +15 -10
  4. training_args.bin +2 -2
  5. vocab.txt +0 -0
config.json CHANGED
@@ -1,25 +1,27 @@
1
  {
2
- "_name_or_path": "distilbert-base-uncased",
3
- "activation": "gelu",
4
  "architectures": [
5
- "DistilBertForSequenceClassification"
6
  ],
7
- "attention_dropout": 0.1,
8
- "dim": 768,
9
- "dropout": 0.1,
10
- "hidden_dim": 3072,
 
11
  "initializer_range": 0.02,
 
 
12
  "max_position_embeddings": 512,
13
- "model_type": "distilbert",
14
- "n_heads": 12,
15
- "n_layers": 6,
16
  "pad_token_id": 0,
 
17
  "problem_type": "single_label_classification",
18
- "qa_dropout": 0.1,
19
- "seq_classif_dropout": 0.2,
20
- "sinusoidal_pos_embds": false,
21
- "tie_weights_": true,
22
  "torch_dtype": "float32",
23
- "transformers_version": "4.34.0",
24
- "vocab_size": 30522
 
 
25
  }
 
1
  {
2
+ "_name_or_path": "cl-tohoku/bert-base-japanese-whole-word-masking",
 
3
  "architectures": [
4
+ "BertForSequenceClassification"
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
  "initializer_range": 0.02,
12
+ "intermediate_size": 3072,
13
+ "layer_norm_eps": 1e-12,
14
  "max_position_embeddings": 512,
15
+ "model_type": "bert",
16
+ "num_attention_heads": 12,
17
+ "num_hidden_layers": 12,
18
  "pad_token_id": 0,
19
+ "position_embedding_type": "absolute",
20
  "problem_type": "single_label_classification",
21
+ "tokenizer_class": "BertJapaneseTokenizer",
 
 
 
22
  "torch_dtype": "float32",
23
+ "transformers_version": "4.34.1",
24
+ "type_vocab_size": 2,
25
+ "use_cache": true,
26
+ "vocab_size": 32000
27
  }
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:53d900e0f54dc0d145bef5964e48a79a78770a55e6dd4df9fe566033ee65e5ab
3
- size 267855533
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7601f9abec04818d9ccbd6e2a90951ff23937fa51b94572aeb6aad46f757a90
3
+ size 442544366
tokenizer_config.json CHANGED
@@ -8,7 +8,7 @@
8
  "single_word": false,
9
  "special": true
10
  },
11
- "100": {
12
  "content": "[UNK]",
13
  "lstrip": false,
14
  "normalized": false,
@@ -16,7 +16,7 @@
16
  "single_word": false,
17
  "special": true
18
  },
19
- "101": {
20
  "content": "[CLS]",
21
  "lstrip": false,
22
  "normalized": false,
@@ -24,7 +24,7 @@
24
  "single_word": false,
25
  "special": true
26
  },
27
- "102": {
28
  "content": "[SEP]",
29
  "lstrip": false,
30
  "normalized": false,
@@ -32,7 +32,7 @@
32
  "single_word": false,
33
  "special": true
34
  },
35
- "103": {
36
  "content": "[MASK]",
37
  "lstrip": false,
38
  "normalized": false,
@@ -41,16 +41,21 @@
41
  "special": true
42
  }
43
  },
44
- "additional_special_tokens": [],
45
  "clean_up_tokenization_spaces": true,
46
  "cls_token": "[CLS]",
47
- "do_lower_case": true,
 
 
 
48
  "mask_token": "[MASK]",
 
49
  "model_max_length": 512,
 
50
  "pad_token": "[PAD]",
51
  "sep_token": "[SEP]",
52
- "strip_accents": null,
53
- "tokenize_chinese_chars": true,
54
- "tokenizer_class": "DistilBertTokenizer",
55
- "unk_token": "[UNK]"
 
56
  }
 
8
  "single_word": false,
9
  "special": true
10
  },
11
+ "1": {
12
  "content": "[UNK]",
13
  "lstrip": false,
14
  "normalized": false,
 
16
  "single_word": false,
17
  "special": true
18
  },
19
+ "2": {
20
  "content": "[CLS]",
21
  "lstrip": false,
22
  "normalized": false,
 
24
  "single_word": false,
25
  "special": true
26
  },
27
+ "3": {
28
  "content": "[SEP]",
29
  "lstrip": false,
30
  "normalized": false,
 
32
  "single_word": false,
33
  "special": true
34
  },
35
+ "4": {
36
  "content": "[MASK]",
37
  "lstrip": false,
38
  "normalized": false,
 
41
  "special": true
42
  }
43
  },
 
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
46
+ "do_lower_case": false,
47
+ "do_subword_tokenize": true,
48
+ "do_word_tokenize": true,
49
+ "jumanpp_kwargs": null,
50
  "mask_token": "[MASK]",
51
+ "mecab_kwargs": null,
52
  "model_max_length": 512,
53
+ "never_split": null,
54
  "pad_token": "[PAD]",
55
  "sep_token": "[SEP]",
56
+ "subword_tokenizer_type": "wordpiece",
57
+ "sudachi_kwargs": null,
58
+ "tokenizer_class": "BertJapaneseTokenizer",
59
+ "unk_token": "[UNK]",
60
+ "word_tokenizer_type": "mecab"
61
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e02a0ef79accb2691fe5112455d2c4520e61e50fb74ee4622e1f572b768b70ba
3
- size 4091
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a80671238de05c2606d2a007361acb971fa7f63a5f4674265efdb5f59e1ce957
3
+ size 4536
vocab.txt CHANGED
The diff for this file is too large to render. See raw diff