Training in progress, step 500
Browse files- .gitignore +1 -0
- config.json +29 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- tokenizer_config.json +1 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "bandainamco-mirai/distilbert-base-japanese",
|
3 |
+
"activation": "gelu",
|
4 |
+
"architectures": [
|
5 |
+
"DistilBertForQuestionAnswering"
|
6 |
+
],
|
7 |
+
"attention_dropout": 0.1,
|
8 |
+
"bos_token_id": 0,
|
9 |
+
"dim": 768,
|
10 |
+
"dropout": 0.1,
|
11 |
+
"eos_token_ids": 0,
|
12 |
+
"hidden_dim": 3072,
|
13 |
+
"initializer_range": 0.02,
|
14 |
+
"max_position_embeddings": 512,
|
15 |
+
"model_type": "distilbert",
|
16 |
+
"n_heads": 12,
|
17 |
+
"n_layers": 6,
|
18 |
+
"output_hidden_states": true,
|
19 |
+
"output_past": true,
|
20 |
+
"pad_token_id": 0,
|
21 |
+
"qa_dropout": 0.1,
|
22 |
+
"seq_classif_dropout": 0.2,
|
23 |
+
"sinusoidal_pos_embds": true,
|
24 |
+
"tie_weights_": true,
|
25 |
+
"tokenizer_class": "BertJapaneseTokenizer",
|
26 |
+
"torch_dtype": "float32",
|
27 |
+
"transformers_version": "4.17.0",
|
28 |
+
"vocab_size": 32000
|
29 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6b57be000702f519d5011c00b2b2f8352787945927354a9c4a59b5ec992e1848
|
3 |
+
size 270037877
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "do_lower_case": false, "do_word_tokenize": true, "do_subword_tokenize": true, "word_tokenizer_type": "mecab", "subword_tokenizer_type": "wordpiece", "never_split": null, "mecab_kwargs": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "cl-tohoku/bert-base-japanese-whole-word-masking", "tokenizer_class": "BertJapaneseTokenizer"}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:26f69bbe67ca5f6d92102cd8a3d6ecf0128c085b524828cb768f5a389a9476d1
|
3 |
+
size 3055
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|