rajendra-ml commited on
Commit
9fa7784
1 Parent(s): ccd47f9

First version of mar_GPT2 marathi language model and tokenizer

Browse files
model_mar_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_mar_GPT2/merges.txt ADDED
The diff for this file is too large to render. See raw diff
model_mar_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_mar_GPT2/tf_model.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc472ee89a538ec12fd710c8001816ea891ee9d690969ee84d5b1706d91963d7
3
+ size 326954656
model_mar_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_mar_GPT2/vocab.json ADDED
The diff for this file is too large to render. See raw diff