lixc commited on
Commit ·
1cf18b4
1
Parent(s): e1cebaa
initial commit
Browse files- README.md +6 -0
- config.json +32 -0
- copy.sh +3 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- tokenizer.json +0 -0
- tokenizer_config.json +1 -0
README.md
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# iSEEEK
|
| 2 |
+
Generative pretraining from the rankings of top expressing genes.
|
| 3 |
+
It was trained on more than 20 million single-cell transcriptomes with a sequence length of 64.
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
|
config.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"activation_function": "gelu_new",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"GPT2LMHeadModel"
|
| 5 |
+
],
|
| 6 |
+
"attn_pdrop": 0.1,
|
| 7 |
+
"bos_token_id": 1,
|
| 8 |
+
"embd_pdrop": 0.1,
|
| 9 |
+
"eos_token_id": 2,
|
| 10 |
+
"gradient_checkpointing": false,
|
| 11 |
+
"initializer_range": 0.02,
|
| 12 |
+
"layer_norm_epsilon": 1e-05,
|
| 13 |
+
"model_type": "gpt2",
|
| 14 |
+
"n_ctx": 1024,
|
| 15 |
+
"n_embd": 1024,
|
| 16 |
+
"n_head": 16,
|
| 17 |
+
"n_inner": null,
|
| 18 |
+
"n_layer": 8,
|
| 19 |
+
"n_positions": 1024,
|
| 20 |
+
"pad_token_id": 0,
|
| 21 |
+
"resid_pdrop": 0.1,
|
| 22 |
+
"scale_attn_weights": true,
|
| 23 |
+
"summary_activation": null,
|
| 24 |
+
"summary_first_dropout": 0.1,
|
| 25 |
+
"summary_proj_to_labels": true,
|
| 26 |
+
"summary_type": "cls_index",
|
| 27 |
+
"summary_use_proj": true,
|
| 28 |
+
"torch_dtype": "float32",
|
| 29 |
+
"transformers_version": "4.10.0",
|
| 30 |
+
"use_cache": true,
|
| 31 |
+
"vocab_size": 21150
|
| 32 |
+
}
|
copy.sh
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
cp /data/ai/gene_expression/gpt2/gpt2-1024-8-16/config.json ./
|
| 2 |
+
cp /data/ai/gene_expression/gpt2/gpt2-1024-8-16/pytorch_model.bin ./
|
| 3 |
+
cp /data/ai/gene_expression/gpt2/gpt2tokenizer/* ./
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b9373ec77bd186fd9d38f09eb5361e8f5c181655b0e0b868fb879a16553f178
|
| 3 |
+
size 502345283
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"bos_token": "</b>", "eos_token": "</s>", "unk_token": "<unk>", "pad_token": "<pad>"}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"model_max_length": 1024, "pad_token": "<pad>", "eos_token": "</s>", "bos_token": "</b>", "unk_token": "<unk>", "tokenizer_class": "PreTrainedTokenizerFast"}
|