first commit
Browse files- config.json +19 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- tokenizer_config.json +1 -0
- vocab.txt +0 -0
config.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"activation": "gelu",
|
3 |
+
"attention_dropout": 0.1,
|
4 |
+
"dim": 768,
|
5 |
+
"dropout": 0.1,
|
6 |
+
"hidden_dim": 3072,
|
7 |
+
"initializer_range": 0.02,
|
8 |
+
"max_position_embeddings": 512,
|
9 |
+
"model_type": "distilbert",
|
10 |
+
"n_heads": 12,
|
11 |
+
"n_layers": 6,
|
12 |
+
"output_hidden_states": true,
|
13 |
+
"pad_token_id": 0,
|
14 |
+
"qa_dropout": 0.1,
|
15 |
+
"seq_classif_dropout": 0.2,
|
16 |
+
"sinusoidal_pos_embds": true,
|
17 |
+
"tie_weights_": true,
|
18 |
+
"vocab_size": 32000
|
19 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:550663fcbd5a7473047e55ef8778939ecab3a04685fa6666d755159cd929b1a5
|
3 |
+
size 272513919
|
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 |
+
{"special_tokens_map_file": null, "full_tokenizer_file": null}
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|