matejulcar commited on
Commit
9fbec62
1 Parent(s): d397d1a

first version

Browse files
config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_function": "gelu_fast",
3
+ "architectures": [
4
+ "GPT2LMHeadModel"
5
+ ],
6
+ "attn_pdrop": 0.1,
7
+ "bos_token_id": 50256,
8
+ "embd_pdrop": 0.1,
9
+ "eos_token_id": 50256,
10
+ "initializer_range": 0.02,
11
+ "layer_norm_epsilon": 1e-05,
12
+ "model_type": "gpt2",
13
+ "n_embd": 768,
14
+ "n_head": 16,
15
+ "n_inner": 3072,
16
+ "n_layer": 12,
17
+ "n_positions": 1024,
18
+ "reorder_and_upcast_attn": false,
19
+ "resid_pdrop": 0.1,
20
+ "scale_attn_by_inverse_layer_idx": false,
21
+ "scale_attn_weights": true,
22
+ "summary_activation": null,
23
+ "summary_first_dropout": 0.1,
24
+ "summary_proj_to_labels": true,
25
+ "summary_type": "cls_index",
26
+ "summary_use_proj": true,
27
+ "tokenizer_class": "PreTrainedTokenizerFast",
28
+ "transformers_version": "4.23.1",
29
+ "use_cache": true,
30
+ "vocab_size": 60032
31
+ }
model_optim_rng.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f92c16bdda192a17dc49f2f7bd4faf623059a55ef4312890632de5c0eea358c5
3
+ size 263946713
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ac203dc7950d0db275982784a5c6bd7b2062ba96af2952ff1b11fdf4aff53c3
3
+ size 289111721
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<BOS>",
3
+ "cls_token": "<BOS>",
4
+ "eos_token": "<EOS>",
5
+ "pad_token": "<PAD>",
6
+ "sep_token": "<EOS>"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<BOS>",
3
+ "cls_token": "<BOS>",
4
+ "eos_token": "<EOS>",
5
+ "name_or_path": "/home/mulcar/bigscience/gpt3-sl-tok-large.60k-bytelevel",
6
+ "pad_token": "<PAD>",
7
+ "sep_token": "<EOS>",
8
+ "special_tokens_map_file": "/home/mulcar/bigscience/gpt3-sl-tok-large.60k-bytelevel/special_tokens_map.json",
9
+ "tokenizer_class": "PreTrainedTokenizerFast",
10
+ "model_max_length": 1024
11
+ }