deskull commited on
Commit
cccb84f
·
verified ·
1 Parent(s): 26e8dd1

Upload MolCrawl genome sequence GPT-2 medium model

Browse files
config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "GPT2LMHeadModel"
4
+ ],
5
+ "model_type": "gpt2",
6
+ "vocab_size": 4096,
7
+ "n_positions": 1024,
8
+ "n_ctx": 1024,
9
+ "n_embd": 1024,
10
+ "n_layer": 24,
11
+ "n_head": 16,
12
+ "n_inner": 4096,
13
+ "activation_function": "gelu_new",
14
+ "resid_pdrop": 0.0,
15
+ "embd_pdrop": 0.0,
16
+ "attn_pdrop": 0.0,
17
+ "layer_norm_epsilon": 1e-05,
18
+ "initializer_range": 0.02,
19
+ "use_cache": true,
20
+ "bos_token_id": 0,
21
+ "eos_token_id": 0,
22
+ "transformers_version": "4.0.0",
23
+ "_name_or_path": "riken-gpt2",
24
+ "_riken_model_args": {
25
+ "n_layer": 24,
26
+ "n_head": 16,
27
+ "n_embd": 1024,
28
+ "block_size": 1024,
29
+ "bias": false,
30
+ "vocab_size": 4096,
31
+ "dropout": 0.0
32
+ },
33
+ "_riken_bias": false
34
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61893b7979c89df25a7b2a0c8e746f9987b32d83c524700013a283c839e8ba80
3
+ size 1229180911
special_tokens_map.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "eos_token": "</s>",
4
+ "unk_token": "<unk>"
5
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f6ffbcfbd4fcbccd53551b83eec5ccbf70bb09d5508826a481f5d0286e755d6
3
+ size 75663
tokenizer_config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "<unk>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "<s>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "</s>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ }
27
+ },
28
+ "bos_token": "<s>",
29
+ "clean_up_tokenization_spaces": false,
30
+ "eos_token": "</s>",
31
+ "model_max_length": 1000000000000000019884624838656,
32
+ "tokenizer_class": "PreTrainedTokenizerFast",
33
+ "unk_token": "<unk>"
34
+ }
training_args.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "iteration": 50000,
3
+ "best_val_loss": 5.49131965637207,
4
+ "early_stopping_counter": 10,
5
+ "learning_rate": 6e-06,
6
+ "batch_size": 12,
7
+ "block_size": 1024,
8
+ "model_args": {
9
+ "n_layer": 24,
10
+ "n_head": 16,
11
+ "n_embd": 1024,
12
+ "block_size": 1024,
13
+ "bias": false,
14
+ "vocab_size": 4096,
15
+ "dropout": 0.0
16
+ }
17
+ }