elmadany
commited on
Commit
•
0576394
1
Parent(s):
5956fb8
First version MARBERT model and tokenizer.
Browse files- README.md +1 -0
- config.json +25 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- tf_model.h5 +3 -0
- tokenizer_config.json +1 -0
- vocab.txt +0 -0
README.md
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
hello
|
config.json
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "/project/6007993/elmadany/Models/MARBERT_17M/pytorch_verison/",
|
3 |
+
"attention_probs_dropout_prob": 0.1,
|
4 |
+
"directionality": "bidi",
|
5 |
+
"gradient_checkpointing": false,
|
6 |
+
"hidden_act": "gelu",
|
7 |
+
"hidden_dropout_prob": 0.1,
|
8 |
+
"hidden_size": 768,
|
9 |
+
"initializer_range": 0.02,
|
10 |
+
"intermediate_size": 3072,
|
11 |
+
"layer_norm_eps": 1e-12,
|
12 |
+
"max_position_embeddings": 512,
|
13 |
+
"model_type": "bert",
|
14 |
+
"num_attention_heads": 12,
|
15 |
+
"num_hidden_layers": 12,
|
16 |
+
"pad_token_id": 0,
|
17 |
+
"pooler_fc_size": 768,
|
18 |
+
"pooler_num_attention_heads": 12,
|
19 |
+
"pooler_num_fc_layers": 3,
|
20 |
+
"pooler_size_per_head": 128,
|
21 |
+
"pooler_type": "first_token_transform",
|
22 |
+
"position_embedding_type": "absolute",
|
23 |
+
"type_vocab_size": 2,
|
24 |
+
"vocab_size": 100000
|
25 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:801862ace5fc9e6b135b19476dbda5c7de1e8673b5b9d55db08d79e2c30b9dca
|
3 |
+
size 654186400
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
tf_model.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b6027e3cc4e9e45373bbc9070b8a5f7a91acfff414d7aa0d3f77d1e636f83f59
|
3 |
+
size 651627688
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": true, "do_basic_tokenize": true, "never_split": null, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "special_tokens_map_file": null, "tokenizer_file": null, "name_or_path": "/project/6007993/elmadany/Models/MARBERT_17M/pytorch_verison/"}
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|