rajendra-ml
commited on
Commit
•
4a00c25
1
Parent(s):
198701b
First version of Sanskrit language model sam_GPT2
Browse files
model_sam_GPT2/config.json
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"activation_function": "gelu_new",
|
3 |
+
"attn_pdrop": 0.1,
|
4 |
+
"bos_token_id": 0,
|
5 |
+
"embd_pdrop": 0.1,
|
6 |
+
"eos_token_id": 2,
|
7 |
+
"gradient_checkpointing": false,
|
8 |
+
"initializer_range": 0.02,
|
9 |
+
"layer_norm_epsilon": 1e-05,
|
10 |
+
"model_type": "gpt2",
|
11 |
+
"n_ctx": 1024,
|
12 |
+
"n_embd": 768,
|
13 |
+
"n_head": 12,
|
14 |
+
"n_inner": null,
|
15 |
+
"n_layer": 6,
|
16 |
+
"n_positions": 1024,
|
17 |
+
"resid_pdrop": 0.1,
|
18 |
+
"summary_activation": null,
|
19 |
+
"summary_first_dropout": 0.1,
|
20 |
+
"summary_proj_to_labels": true,
|
21 |
+
"summary_type": "cls_index",
|
22 |
+
"summary_use_proj": true,
|
23 |
+
"use_cache": true,
|
24 |
+
"vocab_size": 50000
|
25 |
+
}
|
model_sam_GPT2/merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
model_sam_GPT2/special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"bos_token": "<s>", "eos_token": "</s>", "unk_token": "<unk>", "pad_token": "<pad>", "mask_token": "<mask>"}
|
model_sam_GPT2/tf_model.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:38003e97154dbbafd65060c94431ac197fd967279ec6c09888b664ba5cb982ad
|
3 |
+
size 326954656
|
model_sam_GPT2/tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"errors": "replace", "unk_token": {"content": "<|endoftext|>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "bos_token": {"content": "<|endoftext|>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "eos_token": {"content": "<|endoftext|>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "add_prefix_space": false, "special_tokens_map_file": null, "tokenizer_file": null, "name_or_path": "tokenized_data"}
|
model_sam_GPT2/vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|