Peter Szemraj
commited on
Commit
•
4b90790
1
Parent(s):
9e3fdfb
add sharded checkpoint
Browse files- .gitattributes +8 -0
- README.md +53 -0
- all_results.json +15 -0
- config.json +25 -0
- eval_results.json +10 -0
- generation_config.json +6 -0
- pytorch_model-00001-of-00008.bin +3 -0
- pytorch_model-00002-of-00008.bin +3 -0
- pytorch_model-00003-of-00008.bin +3 -0
- pytorch_model-00004-of-00008.bin +3 -0
- pytorch_model-00005-of-00008.bin +3 -0
- pytorch_model-00006-of-00008.bin +3 -0
- pytorch_model-00007-of-00008.bin +3 -0
- pytorch_model-00008-of-00008.bin +3 -0
- pytorch_model.bin.index.json +491 -0
- special_tokens_map.json +5 -0
- tokenizer.json +0 -0
- tokenizer_config.json +10 -0
- train_results.json +8 -0
- trainer_state.json +517 -0
.gitattributes
CHANGED
@@ -32,3 +32,11 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
35 |
+
pytorch_model-00003-of-00008.bin filter=lfs diff=lfs merge=lfs -text
|
36 |
+
pytorch_model-00004-of-00008.bin filter=lfs diff=lfs merge=lfs -text
|
37 |
+
pytorch_model-00005-of-00008.bin filter=lfs diff=lfs merge=lfs -text
|
38 |
+
pytorch_model-00006-of-00008.bin filter=lfs diff=lfs merge=lfs -text
|
39 |
+
pytorch_model-00007-of-00008.bin filter=lfs diff=lfs merge=lfs -text
|
40 |
+
pytorch_model-00008-of-00008.bin filter=lfs diff=lfs merge=lfs -text
|
41 |
+
pytorch_model-00001-of-00008.bin filter=lfs diff=lfs merge=lfs -text
|
42 |
+
pytorch_model-00002-of-00008.bin filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,3 +1,56 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
tags:
|
4 |
+
- generated_from_trainer
|
5 |
+
datasets:
|
6 |
+
- pszemraj/HC3-textgen-qa
|
7 |
+
metrics:
|
8 |
+
- accuracy
|
9 |
---
|
10 |
+
|
11 |
+
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
12 |
+
should probably proofread and complete it, then remove this comment. -->
|
13 |
+
|
14 |
+
# HC3-textgen-qa-pythia-6.9b-deduped-r1
|
15 |
+
|
16 |
+
This model is a fine-tuned version of [EleutherAI/pythia-6.9b-deduped](https://huggingface.co/EleutherAI/pythia-6.9b-deduped) on the pszemraj/HC3-textgen-qa dataset.
|
17 |
+
It achieves the following results on the evaluation set:
|
18 |
+
- Loss: 1.2372
|
19 |
+
- Accuracy: 0.6769
|
20 |
+
|
21 |
+
## Model description
|
22 |
+
|
23 |
+
Text generation model trained on the HC3 text data of human questions + chatGPT answers.
|
24 |
+
|
25 |
+
|
26 |
+
## Intended uses & limitations
|
27 |
+
|
28 |
+
More information needed
|
29 |
+
|
30 |
+
## Training and evaluation data
|
31 |
+
|
32 |
+
```yaml
|
33 |
+
model-index:
|
34 |
+
- name: pythia-6.9b-hc3-qa-assistant
|
35 |
+
results:
|
36 |
+
- task:
|
37 |
+
name: Causal Language Modeling
|
38 |
+
type: text-generation
|
39 |
+
dataset:
|
40 |
+
name: pszemraj/HC3-textgen-qa
|
41 |
+
metrics:
|
42 |
+
- name: Accuracy
|
43 |
+
type: accuracy
|
44 |
+
value: 0.6768941789814655
|
45 |
+
```
|
46 |
+
|
47 |
+
|
48 |
+
## Training procedure
|
49 |
+
|
50 |
+
### Training results
|
51 |
+
|
52 |
+
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|
53 |
+
|:-------------:|:-----:|:----:|:---------------:|:--------:|
|
54 |
+
| 1.2598 | 0.99 | 79 | 1.3291 | 0.6496 |
|
55 |
+
| 0.7446 | 1.99 | 158 | 1.2372 | 0.6769 |
|
56 |
+
|
all_results.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"epoch": 1.99,
|
3 |
+
"eval_accuracy": 0.6768941789814655,
|
4 |
+
"eval_loss": 1.2372242212295532,
|
5 |
+
"eval_runtime": 70.9825,
|
6 |
+
"eval_samples": 255,
|
7 |
+
"eval_samples_per_second": 3.592,
|
8 |
+
"eval_steps_per_second": 1.803,
|
9 |
+
"perplexity": 3.4460347466198447,
|
10 |
+
"train_loss": 1.1195918215981013,
|
11 |
+
"train_runtime": 35849.6176,
|
12 |
+
"train_samples": 5097,
|
13 |
+
"train_samples_per_second": 0.284,
|
14 |
+
"train_steps_per_second": 0.004
|
15 |
+
}
|
config.json
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "pythia-6.9b-hc3-qa-assistant",
|
3 |
+
"architectures": [
|
4 |
+
"GPTNeoXForCausalLM"
|
5 |
+
],
|
6 |
+
"bos_token_id": 0,
|
7 |
+
"eos_token_id": 0,
|
8 |
+
"hidden_act": "gelu",
|
9 |
+
"hidden_size": 4096,
|
10 |
+
"initializer_range": 0.02,
|
11 |
+
"intermediate_size": 16384,
|
12 |
+
"layer_norm_eps": 1e-05,
|
13 |
+
"max_position_embeddings": 2048,
|
14 |
+
"model_type": "gpt_neox",
|
15 |
+
"num_attention_heads": 32,
|
16 |
+
"num_hidden_layers": 32,
|
17 |
+
"rotary_emb_base": 10000,
|
18 |
+
"rotary_pct": 0.25,
|
19 |
+
"tie_word_embeddings": false,
|
20 |
+
"torch_dtype": "float32",
|
21 |
+
"transformers_version": "4.27.0.dev0",
|
22 |
+
"use_cache": true,
|
23 |
+
"use_parallel_residual": true,
|
24 |
+
"vocab_size": 50432
|
25 |
+
}
|
eval_results.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"epoch": 1.99,
|
3 |
+
"eval_accuracy": 0.6768941789814655,
|
4 |
+
"eval_loss": 1.2372242212295532,
|
5 |
+
"eval_runtime": 70.9825,
|
6 |
+
"eval_samples": 255,
|
7 |
+
"eval_samples_per_second": 3.592,
|
8 |
+
"eval_steps_per_second": 1.803,
|
9 |
+
"perplexity": 3.4460347466198447
|
10 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 0,
|
4 |
+
"eos_token_id": 0,
|
5 |
+
"transformers_version": "4.27.0.dev0"
|
6 |
+
}
|
pytorch_model-00001-of-00008.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:77ffe885e9ac70ef1a32205abfb4a423e4f6513c18f012ad2c75c8a8ec3667a3
|
3 |
+
size 3796700725
|
pytorch_model-00002-of-00008.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:32643f73019269c0cace5bc724f07e65fdda4f8871eff213e9ab0803aa52ca1b
|
3 |
+
size 3780092209
|
pytorch_model-00003-of-00008.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e157695e796b416f642fd5d5a1d0e5f8ae4559eaeda4062c6d7477d0466058eb
|
3 |
+
size 3981467953
|
pytorch_model-00004-of-00008.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c09eb3d3698a996c50f9f47ba2e6bbaedbc94187ecc29b8539320a152d61c5a6
|
3 |
+
size 3847217457
|
pytorch_model-00005-of-00008.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8b36caa765e45b55680c2dd1d3207759db3d51911645fd50a2a5632b936deecc
|
3 |
+
size 3775879155
|
pytorch_model-00006-of-00008.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2f058fa4ae9ba70ccc2089f895237710d158c7f767e24336d2bd52fda6de3a07
|
3 |
+
size 3780092273
|
pytorch_model-00007-of-00008.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f267384c57ea6f44b91cbc6d7dc5746f563201a773a334bfde6f08b976c87fac
|
3 |
+
size 3775862707
|
pytorch_model-00008-of-00008.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1fe67a55e71986199c76ab519ec5bd759e009d8280958be08f90174fa2028226
|
3 |
+
size 826278826
|
pytorch_model.bin.index.json
ADDED
@@ -0,0 +1,491 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 27563427968
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"embed_out.weight": "pytorch_model-00008-of-00008.bin",
|
7 |
+
"gpt_neox.embed_in.weight": "pytorch_model-00001-of-00008.bin",
|
8 |
+
"gpt_neox.final_layer_norm.bias": "pytorch_model-00007-of-00008.bin",
|
9 |
+
"gpt_neox.final_layer_norm.weight": "pytorch_model-00007-of-00008.bin",
|
10 |
+
"gpt_neox.layers.0.attention.bias": "pytorch_model-00001-of-00008.bin",
|
11 |
+
"gpt_neox.layers.0.attention.dense.bias": "pytorch_model-00001-of-00008.bin",
|
12 |
+
"gpt_neox.layers.0.attention.dense.weight": "pytorch_model-00001-of-00008.bin",
|
13 |
+
"gpt_neox.layers.0.attention.masked_bias": "pytorch_model-00001-of-00008.bin",
|
14 |
+
"gpt_neox.layers.0.attention.query_key_value.bias": "pytorch_model-00001-of-00008.bin",
|
15 |
+
"gpt_neox.layers.0.attention.query_key_value.weight": "pytorch_model-00001-of-00008.bin",
|
16 |
+
"gpt_neox.layers.0.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00008.bin",
|
17 |
+
"gpt_neox.layers.0.input_layernorm.bias": "pytorch_model-00001-of-00008.bin",
|
18 |
+
"gpt_neox.layers.0.input_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
19 |
+
"gpt_neox.layers.0.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00008.bin",
|
20 |
+
"gpt_neox.layers.0.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00008.bin",
|
21 |
+
"gpt_neox.layers.0.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00008.bin",
|
22 |
+
"gpt_neox.layers.0.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00008.bin",
|
23 |
+
"gpt_neox.layers.0.post_attention_layernorm.bias": "pytorch_model-00001-of-00008.bin",
|
24 |
+
"gpt_neox.layers.0.post_attention_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
25 |
+
"gpt_neox.layers.1.attention.bias": "pytorch_model-00001-of-00008.bin",
|
26 |
+
"gpt_neox.layers.1.attention.dense.bias": "pytorch_model-00001-of-00008.bin",
|
27 |
+
"gpt_neox.layers.1.attention.dense.weight": "pytorch_model-00001-of-00008.bin",
|
28 |
+
"gpt_neox.layers.1.attention.masked_bias": "pytorch_model-00001-of-00008.bin",
|
29 |
+
"gpt_neox.layers.1.attention.query_key_value.bias": "pytorch_model-00001-of-00008.bin",
|
30 |
+
"gpt_neox.layers.1.attention.query_key_value.weight": "pytorch_model-00001-of-00008.bin",
|
31 |
+
"gpt_neox.layers.1.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00008.bin",
|
32 |
+
"gpt_neox.layers.1.input_layernorm.bias": "pytorch_model-00001-of-00008.bin",
|
33 |
+
"gpt_neox.layers.1.input_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
34 |
+
"gpt_neox.layers.1.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00008.bin",
|
35 |
+
"gpt_neox.layers.1.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00008.bin",
|
36 |
+
"gpt_neox.layers.1.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00008.bin",
|
37 |
+
"gpt_neox.layers.1.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00008.bin",
|
38 |
+
"gpt_neox.layers.1.post_attention_layernorm.bias": "pytorch_model-00001-of-00008.bin",
|
39 |
+
"gpt_neox.layers.1.post_attention_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
40 |
+
"gpt_neox.layers.10.attention.bias": "pytorch_model-00003-of-00008.bin",
|
41 |
+
"gpt_neox.layers.10.attention.dense.bias": "pytorch_model-00003-of-00008.bin",
|
42 |
+
"gpt_neox.layers.10.attention.dense.weight": "pytorch_model-00003-of-00008.bin",
|
43 |
+
"gpt_neox.layers.10.attention.masked_bias": "pytorch_model-00003-of-00008.bin",
|
44 |
+
"gpt_neox.layers.10.attention.query_key_value.bias": "pytorch_model-00003-of-00008.bin",
|
45 |
+
"gpt_neox.layers.10.attention.query_key_value.weight": "pytorch_model-00003-of-00008.bin",
|
46 |
+
"gpt_neox.layers.10.attention.rotary_emb.inv_freq": "pytorch_model-00003-of-00008.bin",
|
47 |
+
"gpt_neox.layers.10.input_layernorm.bias": "pytorch_model-00003-of-00008.bin",
|
48 |
+
"gpt_neox.layers.10.input_layernorm.weight": "pytorch_model-00003-of-00008.bin",
|
49 |
+
"gpt_neox.layers.10.mlp.dense_4h_to_h.bias": "pytorch_model-00003-of-00008.bin",
|
50 |
+
"gpt_neox.layers.10.mlp.dense_4h_to_h.weight": "pytorch_model-00003-of-00008.bin",
|
51 |
+
"gpt_neox.layers.10.mlp.dense_h_to_4h.bias": "pytorch_model-00003-of-00008.bin",
|
52 |
+
"gpt_neox.layers.10.mlp.dense_h_to_4h.weight": "pytorch_model-00003-of-00008.bin",
|
53 |
+
"gpt_neox.layers.10.post_attention_layernorm.bias": "pytorch_model-00003-of-00008.bin",
|
54 |
+
"gpt_neox.layers.10.post_attention_layernorm.weight": "pytorch_model-00003-of-00008.bin",
|
55 |
+
"gpt_neox.layers.11.attention.bias": "pytorch_model-00003-of-00008.bin",
|
56 |
+
"gpt_neox.layers.11.attention.dense.bias": "pytorch_model-00003-of-00008.bin",
|
57 |
+
"gpt_neox.layers.11.attention.dense.weight": "pytorch_model-00003-of-00008.bin",
|
58 |
+
"gpt_neox.layers.11.attention.masked_bias": "pytorch_model-00003-of-00008.bin",
|
59 |
+
"gpt_neox.layers.11.attention.query_key_value.bias": "pytorch_model-00003-of-00008.bin",
|
60 |
+
"gpt_neox.layers.11.attention.query_key_value.weight": "pytorch_model-00003-of-00008.bin",
|
61 |
+
"gpt_neox.layers.11.attention.rotary_emb.inv_freq": "pytorch_model-00003-of-00008.bin",
|
62 |
+
"gpt_neox.layers.11.input_layernorm.bias": "pytorch_model-00003-of-00008.bin",
|
63 |
+
"gpt_neox.layers.11.input_layernorm.weight": "pytorch_model-00003-of-00008.bin",
|
64 |
+
"gpt_neox.layers.11.mlp.dense_4h_to_h.bias": "pytorch_model-00003-of-00008.bin",
|
65 |
+
"gpt_neox.layers.11.mlp.dense_4h_to_h.weight": "pytorch_model-00003-of-00008.bin",
|
66 |
+
"gpt_neox.layers.11.mlp.dense_h_to_4h.bias": "pytorch_model-00003-of-00008.bin",
|
67 |
+
"gpt_neox.layers.11.mlp.dense_h_to_4h.weight": "pytorch_model-00003-of-00008.bin",
|
68 |
+
"gpt_neox.layers.11.post_attention_layernorm.bias": "pytorch_model-00003-of-00008.bin",
|
69 |
+
"gpt_neox.layers.11.post_attention_layernorm.weight": "pytorch_model-00003-of-00008.bin",
|
70 |
+
"gpt_neox.layers.12.attention.bias": "pytorch_model-00003-of-00008.bin",
|
71 |
+
"gpt_neox.layers.12.attention.dense.bias": "pytorch_model-00003-of-00008.bin",
|
72 |
+
"gpt_neox.layers.12.attention.dense.weight": "pytorch_model-00003-of-00008.bin",
|
73 |
+
"gpt_neox.layers.12.attention.masked_bias": "pytorch_model-00003-of-00008.bin",
|
74 |
+
"gpt_neox.layers.12.attention.query_key_value.bias": "pytorch_model-00003-of-00008.bin",
|
75 |
+
"gpt_neox.layers.12.attention.query_key_value.weight": "pytorch_model-00003-of-00008.bin",
|
76 |
+
"gpt_neox.layers.12.attention.rotary_emb.inv_freq": "pytorch_model-00003-of-00008.bin",
|
77 |
+
"gpt_neox.layers.12.input_layernorm.bias": "pytorch_model-00003-of-00008.bin",
|
78 |
+
"gpt_neox.layers.12.input_layernorm.weight": "pytorch_model-00003-of-00008.bin",
|
79 |
+
"gpt_neox.layers.12.mlp.dense_4h_to_h.bias": "pytorch_model-00003-of-00008.bin",
|
80 |
+
"gpt_neox.layers.12.mlp.dense_4h_to_h.weight": "pytorch_model-00003-of-00008.bin",
|
81 |
+
"gpt_neox.layers.12.mlp.dense_h_to_4h.bias": "pytorch_model-00003-of-00008.bin",
|
82 |
+
"gpt_neox.layers.12.mlp.dense_h_to_4h.weight": "pytorch_model-00003-of-00008.bin",
|
83 |
+
"gpt_neox.layers.12.post_attention_layernorm.bias": "pytorch_model-00003-of-00008.bin",
|
84 |
+
"gpt_neox.layers.12.post_attention_layernorm.weight": "pytorch_model-00003-of-00008.bin",
|
85 |
+
"gpt_neox.layers.13.attention.bias": "pytorch_model-00003-of-00008.bin",
|
86 |
+
"gpt_neox.layers.13.attention.dense.bias": "pytorch_model-00004-of-00008.bin",
|
87 |
+
"gpt_neox.layers.13.attention.dense.weight": "pytorch_model-00004-of-00008.bin",
|
88 |
+
"gpt_neox.layers.13.attention.masked_bias": "pytorch_model-00003-of-00008.bin",
|
89 |
+
"gpt_neox.layers.13.attention.query_key_value.bias": "pytorch_model-00003-of-00008.bin",
|
90 |
+
"gpt_neox.layers.13.attention.query_key_value.weight": "pytorch_model-00003-of-00008.bin",
|
91 |
+
"gpt_neox.layers.13.attention.rotary_emb.inv_freq": "pytorch_model-00003-of-00008.bin",
|
92 |
+
"gpt_neox.layers.13.input_layernorm.bias": "pytorch_model-00003-of-00008.bin",
|
93 |
+
"gpt_neox.layers.13.input_layernorm.weight": "pytorch_model-00003-of-00008.bin",
|
94 |
+
"gpt_neox.layers.13.mlp.dense_4h_to_h.bias": "pytorch_model-00004-of-00008.bin",
|
95 |
+
"gpt_neox.layers.13.mlp.dense_4h_to_h.weight": "pytorch_model-00004-of-00008.bin",
|
96 |
+
"gpt_neox.layers.13.mlp.dense_h_to_4h.bias": "pytorch_model-00004-of-00008.bin",
|
97 |
+
"gpt_neox.layers.13.mlp.dense_h_to_4h.weight": "pytorch_model-00004-of-00008.bin",
|
98 |
+
"gpt_neox.layers.13.post_attention_layernorm.bias": "pytorch_model-00003-of-00008.bin",
|
99 |
+
"gpt_neox.layers.13.post_attention_layernorm.weight": "pytorch_model-00003-of-00008.bin",
|
100 |
+
"gpt_neox.layers.14.attention.bias": "pytorch_model-00004-of-00008.bin",
|
101 |
+
"gpt_neox.layers.14.attention.dense.bias": "pytorch_model-00004-of-00008.bin",
|
102 |
+
"gpt_neox.layers.14.attention.dense.weight": "pytorch_model-00004-of-00008.bin",
|
103 |
+
"gpt_neox.layers.14.attention.masked_bias": "pytorch_model-00004-of-00008.bin",
|
104 |
+
"gpt_neox.layers.14.attention.query_key_value.bias": "pytorch_model-00004-of-00008.bin",
|
105 |
+
"gpt_neox.layers.14.attention.query_key_value.weight": "pytorch_model-00004-of-00008.bin",
|
106 |
+
"gpt_neox.layers.14.attention.rotary_emb.inv_freq": "pytorch_model-00004-of-00008.bin",
|
107 |
+
"gpt_neox.layers.14.input_layernorm.bias": "pytorch_model-00004-of-00008.bin",
|
108 |
+
"gpt_neox.layers.14.input_layernorm.weight": "pytorch_model-00004-of-00008.bin",
|
109 |
+
"gpt_neox.layers.14.mlp.dense_4h_to_h.bias": "pytorch_model-00004-of-00008.bin",
|
110 |
+
"gpt_neox.layers.14.mlp.dense_4h_to_h.weight": "pytorch_model-00004-of-00008.bin",
|
111 |
+
"gpt_neox.layers.14.mlp.dense_h_to_4h.bias": "pytorch_model-00004-of-00008.bin",
|
112 |
+
"gpt_neox.layers.14.mlp.dense_h_to_4h.weight": "pytorch_model-00004-of-00008.bin",
|
113 |
+
"gpt_neox.layers.14.post_attention_layernorm.bias": "pytorch_model-00004-of-00008.bin",
|
114 |
+
"gpt_neox.layers.14.post_attention_layernorm.weight": "pytorch_model-00004-of-00008.bin",
|
115 |
+
"gpt_neox.layers.15.attention.bias": "pytorch_model-00004-of-00008.bin",
|
116 |
+
"gpt_neox.layers.15.attention.dense.bias": "pytorch_model-00004-of-00008.bin",
|
117 |
+
"gpt_neox.layers.15.attention.dense.weight": "pytorch_model-00004-of-00008.bin",
|
118 |
+
"gpt_neox.layers.15.attention.masked_bias": "pytorch_model-00004-of-00008.bin",
|
119 |
+
"gpt_neox.layers.15.attention.query_key_value.bias": "pytorch_model-00004-of-00008.bin",
|
120 |
+
"gpt_neox.layers.15.attention.query_key_value.weight": "pytorch_model-00004-of-00008.bin",
|
121 |
+
"gpt_neox.layers.15.attention.rotary_emb.inv_freq": "pytorch_model-00004-of-00008.bin",
|
122 |
+
"gpt_neox.layers.15.input_layernorm.bias": "pytorch_model-00004-of-00008.bin",
|
123 |
+
"gpt_neox.layers.15.input_layernorm.weight": "pytorch_model-00004-of-00008.bin",
|
124 |
+
"gpt_neox.layers.15.mlp.dense_4h_to_h.bias": "pytorch_model-00004-of-00008.bin",
|
125 |
+
"gpt_neox.layers.15.mlp.dense_4h_to_h.weight": "pytorch_model-00004-of-00008.bin",
|
126 |
+
"gpt_neox.layers.15.mlp.dense_h_to_4h.bias": "pytorch_model-00004-of-00008.bin",
|
127 |
+
"gpt_neox.layers.15.mlp.dense_h_to_4h.weight": "pytorch_model-00004-of-00008.bin",
|
128 |
+
"gpt_neox.layers.15.post_attention_layernorm.bias": "pytorch_model-00004-of-00008.bin",
|
129 |
+
"gpt_neox.layers.15.post_attention_layernorm.weight": "pytorch_model-00004-of-00008.bin",
|
130 |
+
"gpt_neox.layers.16.attention.bias": "pytorch_model-00004-of-00008.bin",
|
131 |
+
"gpt_neox.layers.16.attention.dense.bias": "pytorch_model-00004-of-00008.bin",
|
132 |
+
"gpt_neox.layers.16.attention.dense.weight": "pytorch_model-00004-of-00008.bin",
|
133 |
+
"gpt_neox.layers.16.attention.masked_bias": "pytorch_model-00004-of-00008.bin",
|
134 |
+
"gpt_neox.layers.16.attention.query_key_value.bias": "pytorch_model-00004-of-00008.bin",
|
135 |
+
"gpt_neox.layers.16.attention.query_key_value.weight": "pytorch_model-00004-of-00008.bin",
|
136 |
+
"gpt_neox.layers.16.attention.rotary_emb.inv_freq": "pytorch_model-00004-of-00008.bin",
|
137 |
+
"gpt_neox.layers.16.input_layernorm.bias": "pytorch_model-00004-of-00008.bin",
|
138 |
+
"gpt_neox.layers.16.input_layernorm.weight": "pytorch_model-00004-of-00008.bin",
|
139 |
+
"gpt_neox.layers.16.mlp.dense_4h_to_h.bias": "pytorch_model-00004-of-00008.bin",
|
140 |
+
"gpt_neox.layers.16.mlp.dense_4h_to_h.weight": "pytorch_model-00004-of-00008.bin",
|
141 |
+
"gpt_neox.layers.16.mlp.dense_h_to_4h.bias": "pytorch_model-00004-of-00008.bin",
|
142 |
+
"gpt_neox.layers.16.mlp.dense_h_to_4h.weight": "pytorch_model-00004-of-00008.bin",
|
143 |
+
"gpt_neox.layers.16.post_attention_layernorm.bias": "pytorch_model-00004-of-00008.bin",
|
144 |
+
"gpt_neox.layers.16.post_attention_layernorm.weight": "pytorch_model-00004-of-00008.bin",
|
145 |
+
"gpt_neox.layers.17.attention.bias": "pytorch_model-00004-of-00008.bin",
|
146 |
+
"gpt_neox.layers.17.attention.dense.bias": "pytorch_model-00004-of-00008.bin",
|
147 |
+
"gpt_neox.layers.17.attention.dense.weight": "pytorch_model-00004-of-00008.bin",
|
148 |
+
"gpt_neox.layers.17.attention.masked_bias": "pytorch_model-00004-of-00008.bin",
|
149 |
+
"gpt_neox.layers.17.attention.query_key_value.bias": "pytorch_model-00004-of-00008.bin",
|
150 |
+
"gpt_neox.layers.17.attention.query_key_value.weight": "pytorch_model-00004-of-00008.bin",
|
151 |
+
"gpt_neox.layers.17.attention.rotary_emb.inv_freq": "pytorch_model-00004-of-00008.bin",
|
152 |
+
"gpt_neox.layers.17.input_layernorm.bias": "pytorch_model-00004-of-00008.bin",
|
153 |
+
"gpt_neox.layers.17.input_layernorm.weight": "pytorch_model-00004-of-00008.bin",
|
154 |
+
"gpt_neox.layers.17.mlp.dense_4h_to_h.bias": "pytorch_model-00004-of-00008.bin",
|
155 |
+
"gpt_neox.layers.17.mlp.dense_4h_to_h.weight": "pytorch_model-00004-of-00008.bin",
|
156 |
+
"gpt_neox.layers.17.mlp.dense_h_to_4h.bias": "pytorch_model-00004-of-00008.bin",
|
157 |
+
"gpt_neox.layers.17.mlp.dense_h_to_4h.weight": "pytorch_model-00004-of-00008.bin",
|
158 |
+
"gpt_neox.layers.17.post_attention_layernorm.bias": "pytorch_model-00004-of-00008.bin",
|
159 |
+
"gpt_neox.layers.17.post_attention_layernorm.weight": "pytorch_model-00004-of-00008.bin",
|
160 |
+
"gpt_neox.layers.18.attention.bias": "pytorch_model-00004-of-00008.bin",
|
161 |
+
"gpt_neox.layers.18.attention.dense.bias": "pytorch_model-00005-of-00008.bin",
|
162 |
+
"gpt_neox.layers.18.attention.dense.weight": "pytorch_model-00005-of-00008.bin",
|
163 |
+
"gpt_neox.layers.18.attention.masked_bias": "pytorch_model-00004-of-00008.bin",
|
164 |
+
"gpt_neox.layers.18.attention.query_key_value.bias": "pytorch_model-00005-of-00008.bin",
|
165 |
+
"gpt_neox.layers.18.attention.query_key_value.weight": "pytorch_model-00005-of-00008.bin",
|
166 |
+
"gpt_neox.layers.18.attention.rotary_emb.inv_freq": "pytorch_model-00004-of-00008.bin",
|
167 |
+
"gpt_neox.layers.18.input_layernorm.bias": "pytorch_model-00004-of-00008.bin",
|
168 |
+
"gpt_neox.layers.18.input_layernorm.weight": "pytorch_model-00004-of-00008.bin",
|
169 |
+
"gpt_neox.layers.18.mlp.dense_4h_to_h.bias": "pytorch_model-00005-of-00008.bin",
|
170 |
+
"gpt_neox.layers.18.mlp.dense_4h_to_h.weight": "pytorch_model-00005-of-00008.bin",
|
171 |
+
"gpt_neox.layers.18.mlp.dense_h_to_4h.bias": "pytorch_model-00005-of-00008.bin",
|
172 |
+
"gpt_neox.layers.18.mlp.dense_h_to_4h.weight": "pytorch_model-00005-of-00008.bin",
|
173 |
+
"gpt_neox.layers.18.post_attention_layernorm.bias": "pytorch_model-00004-of-00008.bin",
|
174 |
+
"gpt_neox.layers.18.post_attention_layernorm.weight": "pytorch_model-00004-of-00008.bin",
|
175 |
+
"gpt_neox.layers.19.attention.bias": "pytorch_model-00005-of-00008.bin",
|
176 |
+
"gpt_neox.layers.19.attention.dense.bias": "pytorch_model-00005-of-00008.bin",
|
177 |
+
"gpt_neox.layers.19.attention.dense.weight": "pytorch_model-00005-of-00008.bin",
|
178 |
+
"gpt_neox.layers.19.attention.masked_bias": "pytorch_model-00005-of-00008.bin",
|
179 |
+
"gpt_neox.layers.19.attention.query_key_value.bias": "pytorch_model-00005-of-00008.bin",
|
180 |
+
"gpt_neox.layers.19.attention.query_key_value.weight": "pytorch_model-00005-of-00008.bin",
|
181 |
+
"gpt_neox.layers.19.attention.rotary_emb.inv_freq": "pytorch_model-00005-of-00008.bin",
|
182 |
+
"gpt_neox.layers.19.input_layernorm.bias": "pytorch_model-00005-of-00008.bin",
|
183 |
+
"gpt_neox.layers.19.input_layernorm.weight": "pytorch_model-00005-of-00008.bin",
|
184 |
+
"gpt_neox.layers.19.mlp.dense_4h_to_h.bias": "pytorch_model-00005-of-00008.bin",
|
185 |
+
"gpt_neox.layers.19.mlp.dense_4h_to_h.weight": "pytorch_model-00005-of-00008.bin",
|
186 |
+
"gpt_neox.layers.19.mlp.dense_h_to_4h.bias": "pytorch_model-00005-of-00008.bin",
|
187 |
+
"gpt_neox.layers.19.mlp.dense_h_to_4h.weight": "pytorch_model-00005-of-00008.bin",
|
188 |
+
"gpt_neox.layers.19.post_attention_layernorm.bias": "pytorch_model-00005-of-00008.bin",
|
189 |
+
"gpt_neox.layers.19.post_attention_layernorm.weight": "pytorch_model-00005-of-00008.bin",
|
190 |
+
"gpt_neox.layers.2.attention.bias": "pytorch_model-00001-of-00008.bin",
|
191 |
+
"gpt_neox.layers.2.attention.dense.bias": "pytorch_model-00001-of-00008.bin",
|
192 |
+
"gpt_neox.layers.2.attention.dense.weight": "pytorch_model-00001-of-00008.bin",
|
193 |
+
"gpt_neox.layers.2.attention.masked_bias": "pytorch_model-00001-of-00008.bin",
|
194 |
+
"gpt_neox.layers.2.attention.query_key_value.bias": "pytorch_model-00001-of-00008.bin",
|
195 |
+
"gpt_neox.layers.2.attention.query_key_value.weight": "pytorch_model-00001-of-00008.bin",
|
196 |
+
"gpt_neox.layers.2.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00008.bin",
|
197 |
+
"gpt_neox.layers.2.input_layernorm.bias": "pytorch_model-00001-of-00008.bin",
|
198 |
+
"gpt_neox.layers.2.input_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
199 |
+
"gpt_neox.layers.2.mlp.dense_4h_to_h.bias": "pytorch_model-00001-of-00008.bin",
|
200 |
+
"gpt_neox.layers.2.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00008.bin",
|
201 |
+
"gpt_neox.layers.2.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00008.bin",
|
202 |
+
"gpt_neox.layers.2.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00008.bin",
|
203 |
+
"gpt_neox.layers.2.post_attention_layernorm.bias": "pytorch_model-00001-of-00008.bin",
|
204 |
+
"gpt_neox.layers.2.post_attention_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
205 |
+
"gpt_neox.layers.20.attention.bias": "pytorch_model-00005-of-00008.bin",
|
206 |
+
"gpt_neox.layers.20.attention.dense.bias": "pytorch_model-00005-of-00008.bin",
|
207 |
+
"gpt_neox.layers.20.attention.dense.weight": "pytorch_model-00005-of-00008.bin",
|
208 |
+
"gpt_neox.layers.20.attention.masked_bias": "pytorch_model-00005-of-00008.bin",
|
209 |
+
"gpt_neox.layers.20.attention.query_key_value.bias": "pytorch_model-00005-of-00008.bin",
|
210 |
+
"gpt_neox.layers.20.attention.query_key_value.weight": "pytorch_model-00005-of-00008.bin",
|
211 |
+
"gpt_neox.layers.20.attention.rotary_emb.inv_freq": "pytorch_model-00005-of-00008.bin",
|
212 |
+
"gpt_neox.layers.20.input_layernorm.bias": "pytorch_model-00005-of-00008.bin",
|
213 |
+
"gpt_neox.layers.20.input_layernorm.weight": "pytorch_model-00005-of-00008.bin",
|
214 |
+
"gpt_neox.layers.20.mlp.dense_4h_to_h.bias": "pytorch_model-00005-of-00008.bin",
|
215 |
+
"gpt_neox.layers.20.mlp.dense_4h_to_h.weight": "pytorch_model-00005-of-00008.bin",
|
216 |
+
"gpt_neox.layers.20.mlp.dense_h_to_4h.bias": "pytorch_model-00005-of-00008.bin",
|
217 |
+
"gpt_neox.layers.20.mlp.dense_h_to_4h.weight": "pytorch_model-00005-of-00008.bin",
|
218 |
+
"gpt_neox.layers.20.post_attention_layernorm.bias": "pytorch_model-00005-of-00008.bin",
|
219 |
+
"gpt_neox.layers.20.post_attention_layernorm.weight": "pytorch_model-00005-of-00008.bin",
|
220 |
+
"gpt_neox.layers.21.attention.bias": "pytorch_model-00005-of-00008.bin",
|
221 |
+
"gpt_neox.layers.21.attention.dense.bias": "pytorch_model-00005-of-00008.bin",
|
222 |
+
"gpt_neox.layers.21.attention.dense.weight": "pytorch_model-00005-of-00008.bin",
|
223 |
+
"gpt_neox.layers.21.attention.masked_bias": "pytorch_model-00005-of-00008.bin",
|
224 |
+
"gpt_neox.layers.21.attention.query_key_value.bias": "pytorch_model-00005-of-00008.bin",
|
225 |
+
"gpt_neox.layers.21.attention.query_key_value.weight": "pytorch_model-00005-of-00008.bin",
|
226 |
+
"gpt_neox.layers.21.attention.rotary_emb.inv_freq": "pytorch_model-00005-of-00008.bin",
|
227 |
+
"gpt_neox.layers.21.input_layernorm.bias": "pytorch_model-00005-of-00008.bin",
|
228 |
+
"gpt_neox.layers.21.input_layernorm.weight": "pytorch_model-00005-of-00008.bin",
|
229 |
+
"gpt_neox.layers.21.mlp.dense_4h_to_h.bias": "pytorch_model-00005-of-00008.bin",
|
230 |
+
"gpt_neox.layers.21.mlp.dense_4h_to_h.weight": "pytorch_model-00005-of-00008.bin",
|
231 |
+
"gpt_neox.layers.21.mlp.dense_h_to_4h.bias": "pytorch_model-00005-of-00008.bin",
|
232 |
+
"gpt_neox.layers.21.mlp.dense_h_to_4h.weight": "pytorch_model-00005-of-00008.bin",
|
233 |
+
"gpt_neox.layers.21.post_attention_layernorm.bias": "pytorch_model-00005-of-00008.bin",
|
234 |
+
"gpt_neox.layers.21.post_attention_layernorm.weight": "pytorch_model-00005-of-00008.bin",
|
235 |
+
"gpt_neox.layers.22.attention.bias": "pytorch_model-00005-of-00008.bin",
|
236 |
+
"gpt_neox.layers.22.attention.dense.bias": "pytorch_model-00005-of-00008.bin",
|
237 |
+
"gpt_neox.layers.22.attention.dense.weight": "pytorch_model-00005-of-00008.bin",
|
238 |
+
"gpt_neox.layers.22.attention.masked_bias": "pytorch_model-00005-of-00008.bin",
|
239 |
+
"gpt_neox.layers.22.attention.query_key_value.bias": "pytorch_model-00005-of-00008.bin",
|
240 |
+
"gpt_neox.layers.22.attention.query_key_value.weight": "pytorch_model-00005-of-00008.bin",
|
241 |
+
"gpt_neox.layers.22.attention.rotary_emb.inv_freq": "pytorch_model-00005-of-00008.bin",
|
242 |
+
"gpt_neox.layers.22.input_layernorm.bias": "pytorch_model-00005-of-00008.bin",
|
243 |
+
"gpt_neox.layers.22.input_layernorm.weight": "pytorch_model-00005-of-00008.bin",
|
244 |
+
"gpt_neox.layers.22.mlp.dense_4h_to_h.bias": "pytorch_model-00006-of-00008.bin",
|
245 |
+
"gpt_neox.layers.22.mlp.dense_4h_to_h.weight": "pytorch_model-00006-of-00008.bin",
|
246 |
+
"gpt_neox.layers.22.mlp.dense_h_to_4h.bias": "pytorch_model-00005-of-00008.bin",
|
247 |
+
"gpt_neox.layers.22.mlp.dense_h_to_4h.weight": "pytorch_model-00005-of-00008.bin",
|
248 |
+
"gpt_neox.layers.22.post_attention_layernorm.bias": "pytorch_model-00005-of-00008.bin",
|
249 |
+
"gpt_neox.layers.22.post_attention_layernorm.weight": "pytorch_model-00005-of-00008.bin",
|
250 |
+
"gpt_neox.layers.23.attention.bias": "pytorch_model-00006-of-00008.bin",
|
251 |
+
"gpt_neox.layers.23.attention.dense.bias": "pytorch_model-00006-of-00008.bin",
|
252 |
+
"gpt_neox.layers.23.attention.dense.weight": "pytorch_model-00006-of-00008.bin",
|
253 |
+
"gpt_neox.layers.23.attention.masked_bias": "pytorch_model-00006-of-00008.bin",
|
254 |
+
"gpt_neox.layers.23.attention.query_key_value.bias": "pytorch_model-00006-of-00008.bin",
|
255 |
+
"gpt_neox.layers.23.attention.query_key_value.weight": "pytorch_model-00006-of-00008.bin",
|
256 |
+
"gpt_neox.layers.23.attention.rotary_emb.inv_freq": "pytorch_model-00006-of-00008.bin",
|
257 |
+
"gpt_neox.layers.23.input_layernorm.bias": "pytorch_model-00006-of-00008.bin",
|
258 |
+
"gpt_neox.layers.23.input_layernorm.weight": "pytorch_model-00006-of-00008.bin",
|
259 |
+
"gpt_neox.layers.23.mlp.dense_4h_to_h.bias": "pytorch_model-00006-of-00008.bin",
|
260 |
+
"gpt_neox.layers.23.mlp.dense_4h_to_h.weight": "pytorch_model-00006-of-00008.bin",
|
261 |
+
"gpt_neox.layers.23.mlp.dense_h_to_4h.bias": "pytorch_model-00006-of-00008.bin",
|
262 |
+
"gpt_neox.layers.23.mlp.dense_h_to_4h.weight": "pytorch_model-00006-of-00008.bin",
|
263 |
+
"gpt_neox.layers.23.post_attention_layernorm.bias": "pytorch_model-00006-of-00008.bin",
|
264 |
+
"gpt_neox.layers.23.post_attention_layernorm.weight": "pytorch_model-00006-of-00008.bin",
|
265 |
+
"gpt_neox.layers.24.attention.bias": "pytorch_model-00006-of-00008.bin",
|
266 |
+
"gpt_neox.layers.24.attention.dense.bias": "pytorch_model-00006-of-00008.bin",
|
267 |
+
"gpt_neox.layers.24.attention.dense.weight": "pytorch_model-00006-of-00008.bin",
|
268 |
+
"gpt_neox.layers.24.attention.masked_bias": "pytorch_model-00006-of-00008.bin",
|
269 |
+
"gpt_neox.layers.24.attention.query_key_value.bias": "pytorch_model-00006-of-00008.bin",
|
270 |
+
"gpt_neox.layers.24.attention.query_key_value.weight": "pytorch_model-00006-of-00008.bin",
|
271 |
+
"gpt_neox.layers.24.attention.rotary_emb.inv_freq": "pytorch_model-00006-of-00008.bin",
|
272 |
+
"gpt_neox.layers.24.input_layernorm.bias": "pytorch_model-00006-of-00008.bin",
|
273 |
+
"gpt_neox.layers.24.input_layernorm.weight": "pytorch_model-00006-of-00008.bin",
|
274 |
+
"gpt_neox.layers.24.mlp.dense_4h_to_h.bias": "pytorch_model-00006-of-00008.bin",
|
275 |
+
"gpt_neox.layers.24.mlp.dense_4h_to_h.weight": "pytorch_model-00006-of-00008.bin",
|
276 |
+
"gpt_neox.layers.24.mlp.dense_h_to_4h.bias": "pytorch_model-00006-of-00008.bin",
|
277 |
+
"gpt_neox.layers.24.mlp.dense_h_to_4h.weight": "pytorch_model-00006-of-00008.bin",
|
278 |
+
"gpt_neox.layers.24.post_attention_layernorm.bias": "pytorch_model-00006-of-00008.bin",
|
279 |
+
"gpt_neox.layers.24.post_attention_layernorm.weight": "pytorch_model-00006-of-00008.bin",
|
280 |
+
"gpt_neox.layers.25.attention.bias": "pytorch_model-00006-of-00008.bin",
|
281 |
+
"gpt_neox.layers.25.attention.dense.bias": "pytorch_model-00006-of-00008.bin",
|
282 |
+
"gpt_neox.layers.25.attention.dense.weight": "pytorch_model-00006-of-00008.bin",
|
283 |
+
"gpt_neox.layers.25.attention.masked_bias": "pytorch_model-00006-of-00008.bin",
|
284 |
+
"gpt_neox.layers.25.attention.query_key_value.bias": "pytorch_model-00006-of-00008.bin",
|
285 |
+
"gpt_neox.layers.25.attention.query_key_value.weight": "pytorch_model-00006-of-00008.bin",
|
286 |
+
"gpt_neox.layers.25.attention.rotary_emb.inv_freq": "pytorch_model-00006-of-00008.bin",
|
287 |
+
"gpt_neox.layers.25.input_layernorm.bias": "pytorch_model-00006-of-00008.bin",
|
288 |
+
"gpt_neox.layers.25.input_layernorm.weight": "pytorch_model-00006-of-00008.bin",
|
289 |
+
"gpt_neox.layers.25.mlp.dense_4h_to_h.bias": "pytorch_model-00006-of-00008.bin",
|
290 |
+
"gpt_neox.layers.25.mlp.dense_4h_to_h.weight": "pytorch_model-00006-of-00008.bin",
|
291 |
+
"gpt_neox.layers.25.mlp.dense_h_to_4h.bias": "pytorch_model-00006-of-00008.bin",
|
292 |
+
"gpt_neox.layers.25.mlp.dense_h_to_4h.weight": "pytorch_model-00006-of-00008.bin",
|
293 |
+
"gpt_neox.layers.25.post_attention_layernorm.bias": "pytorch_model-00006-of-00008.bin",
|
294 |
+
"gpt_neox.layers.25.post_attention_layernorm.weight": "pytorch_model-00006-of-00008.bin",
|
295 |
+
"gpt_neox.layers.26.attention.bias": "pytorch_model-00006-of-00008.bin",
|
296 |
+
"gpt_neox.layers.26.attention.dense.bias": "pytorch_model-00006-of-00008.bin",
|
297 |
+
"gpt_neox.layers.26.attention.dense.weight": "pytorch_model-00006-of-00008.bin",
|
298 |
+
"gpt_neox.layers.26.attention.masked_bias": "pytorch_model-00006-of-00008.bin",
|
299 |
+
"gpt_neox.layers.26.attention.query_key_value.bias": "pytorch_model-00006-of-00008.bin",
|
300 |
+
"gpt_neox.layers.26.attention.query_key_value.weight": "pytorch_model-00006-of-00008.bin",
|
301 |
+
"gpt_neox.layers.26.attention.rotary_emb.inv_freq": "pytorch_model-00006-of-00008.bin",
|
302 |
+
"gpt_neox.layers.26.input_layernorm.bias": "pytorch_model-00006-of-00008.bin",
|
303 |
+
"gpt_neox.layers.26.input_layernorm.weight": "pytorch_model-00006-of-00008.bin",
|
304 |
+
"gpt_neox.layers.26.mlp.dense_4h_to_h.bias": "pytorch_model-00006-of-00008.bin",
|
305 |
+
"gpt_neox.layers.26.mlp.dense_4h_to_h.weight": "pytorch_model-00006-of-00008.bin",
|
306 |
+
"gpt_neox.layers.26.mlp.dense_h_to_4h.bias": "pytorch_model-00006-of-00008.bin",
|
307 |
+
"gpt_neox.layers.26.mlp.dense_h_to_4h.weight": "pytorch_model-00006-of-00008.bin",
|
308 |
+
"gpt_neox.layers.26.post_attention_layernorm.bias": "pytorch_model-00006-of-00008.bin",
|
309 |
+
"gpt_neox.layers.26.post_attention_layernorm.weight": "pytorch_model-00006-of-00008.bin",
|
310 |
+
"gpt_neox.layers.27.attention.bias": "pytorch_model-00006-of-00008.bin",
|
311 |
+
"gpt_neox.layers.27.attention.dense.bias": "pytorch_model-00006-of-00008.bin",
|
312 |
+
"gpt_neox.layers.27.attention.dense.weight": "pytorch_model-00006-of-00008.bin",
|
313 |
+
"gpt_neox.layers.27.attention.masked_bias": "pytorch_model-00006-of-00008.bin",
|
314 |
+
"gpt_neox.layers.27.attention.query_key_value.bias": "pytorch_model-00006-of-00008.bin",
|
315 |
+
"gpt_neox.layers.27.attention.query_key_value.weight": "pytorch_model-00006-of-00008.bin",
|
316 |
+
"gpt_neox.layers.27.attention.rotary_emb.inv_freq": "pytorch_model-00006-of-00008.bin",
|
317 |
+
"gpt_neox.layers.27.input_layernorm.bias": "pytorch_model-00006-of-00008.bin",
|
318 |
+
"gpt_neox.layers.27.input_layernorm.weight": "pytorch_model-00006-of-00008.bin",
|
319 |
+
"gpt_neox.layers.27.mlp.dense_4h_to_h.bias": "pytorch_model-00007-of-00008.bin",
|
320 |
+
"gpt_neox.layers.27.mlp.dense_4h_to_h.weight": "pytorch_model-00007-of-00008.bin",
|
321 |
+
"gpt_neox.layers.27.mlp.dense_h_to_4h.bias": "pytorch_model-00007-of-00008.bin",
|
322 |
+
"gpt_neox.layers.27.mlp.dense_h_to_4h.weight": "pytorch_model-00007-of-00008.bin",
|
323 |
+
"gpt_neox.layers.27.post_attention_layernorm.bias": "pytorch_model-00006-of-00008.bin",
|
324 |
+
"gpt_neox.layers.27.post_attention_layernorm.weight": "pytorch_model-00006-of-00008.bin",
|
325 |
+
"gpt_neox.layers.28.attention.bias": "pytorch_model-00007-of-00008.bin",
|
326 |
+
"gpt_neox.layers.28.attention.dense.bias": "pytorch_model-00007-of-00008.bin",
|
327 |
+
"gpt_neox.layers.28.attention.dense.weight": "pytorch_model-00007-of-00008.bin",
|
328 |
+
"gpt_neox.layers.28.attention.masked_bias": "pytorch_model-00007-of-00008.bin",
|
329 |
+
"gpt_neox.layers.28.attention.query_key_value.bias": "pytorch_model-00007-of-00008.bin",
|
330 |
+
"gpt_neox.layers.28.attention.query_key_value.weight": "pytorch_model-00007-of-00008.bin",
|
331 |
+
"gpt_neox.layers.28.attention.rotary_emb.inv_freq": "pytorch_model-00007-of-00008.bin",
|
332 |
+
"gpt_neox.layers.28.input_layernorm.bias": "pytorch_model-00007-of-00008.bin",
|
333 |
+
"gpt_neox.layers.28.input_layernorm.weight": "pytorch_model-00007-of-00008.bin",
|
334 |
+
"gpt_neox.layers.28.mlp.dense_4h_to_h.bias": "pytorch_model-00007-of-00008.bin",
|
335 |
+
"gpt_neox.layers.28.mlp.dense_4h_to_h.weight": "pytorch_model-00007-of-00008.bin",
|
336 |
+
"gpt_neox.layers.28.mlp.dense_h_to_4h.bias": "pytorch_model-00007-of-00008.bin",
|
337 |
+
"gpt_neox.layers.28.mlp.dense_h_to_4h.weight": "pytorch_model-00007-of-00008.bin",
|
338 |
+
"gpt_neox.layers.28.post_attention_layernorm.bias": "pytorch_model-00007-of-00008.bin",
|
339 |
+
"gpt_neox.layers.28.post_attention_layernorm.weight": "pytorch_model-00007-of-00008.bin",
|
340 |
+
"gpt_neox.layers.29.attention.bias": "pytorch_model-00007-of-00008.bin",
|
341 |
+
"gpt_neox.layers.29.attention.dense.bias": "pytorch_model-00007-of-00008.bin",
|
342 |
+
"gpt_neox.layers.29.attention.dense.weight": "pytorch_model-00007-of-00008.bin",
|
343 |
+
"gpt_neox.layers.29.attention.masked_bias": "pytorch_model-00007-of-00008.bin",
|
344 |
+
"gpt_neox.layers.29.attention.query_key_value.bias": "pytorch_model-00007-of-00008.bin",
|
345 |
+
"gpt_neox.layers.29.attention.query_key_value.weight": "pytorch_model-00007-of-00008.bin",
|
346 |
+
"gpt_neox.layers.29.attention.rotary_emb.inv_freq": "pytorch_model-00007-of-00008.bin",
|
347 |
+
"gpt_neox.layers.29.input_layernorm.bias": "pytorch_model-00007-of-00008.bin",
|
348 |
+
"gpt_neox.layers.29.input_layernorm.weight": "pytorch_model-00007-of-00008.bin",
|
349 |
+
"gpt_neox.layers.29.mlp.dense_4h_to_h.bias": "pytorch_model-00007-of-00008.bin",
|
350 |
+
"gpt_neox.layers.29.mlp.dense_4h_to_h.weight": "pytorch_model-00007-of-00008.bin",
|
351 |
+
"gpt_neox.layers.29.mlp.dense_h_to_4h.bias": "pytorch_model-00007-of-00008.bin",
|
352 |
+
"gpt_neox.layers.29.mlp.dense_h_to_4h.weight": "pytorch_model-00007-of-00008.bin",
|
353 |
+
"gpt_neox.layers.29.post_attention_layernorm.bias": "pytorch_model-00007-of-00008.bin",
|
354 |
+
"gpt_neox.layers.29.post_attention_layernorm.weight": "pytorch_model-00007-of-00008.bin",
|
355 |
+
"gpt_neox.layers.3.attention.bias": "pytorch_model-00001-of-00008.bin",
|
356 |
+
"gpt_neox.layers.3.attention.dense.bias": "pytorch_model-00001-of-00008.bin",
|
357 |
+
"gpt_neox.layers.3.attention.dense.weight": "pytorch_model-00001-of-00008.bin",
|
358 |
+
"gpt_neox.layers.3.attention.masked_bias": "pytorch_model-00001-of-00008.bin",
|
359 |
+
"gpt_neox.layers.3.attention.query_key_value.bias": "pytorch_model-00001-of-00008.bin",
|
360 |
+
"gpt_neox.layers.3.attention.query_key_value.weight": "pytorch_model-00001-of-00008.bin",
|
361 |
+
"gpt_neox.layers.3.attention.rotary_emb.inv_freq": "pytorch_model-00001-of-00008.bin",
|
362 |
+
"gpt_neox.layers.3.input_layernorm.bias": "pytorch_model-00001-of-00008.bin",
|
363 |
+
"gpt_neox.layers.3.input_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
364 |
+
"gpt_neox.layers.3.mlp.dense_4h_to_h.bias": "pytorch_model-00002-of-00008.bin",
|
365 |
+
"gpt_neox.layers.3.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00008.bin",
|
366 |
+
"gpt_neox.layers.3.mlp.dense_h_to_4h.bias": "pytorch_model-00001-of-00008.bin",
|
367 |
+
"gpt_neox.layers.3.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00008.bin",
|
368 |
+
"gpt_neox.layers.3.post_attention_layernorm.bias": "pytorch_model-00001-of-00008.bin",
|
369 |
+
"gpt_neox.layers.3.post_attention_layernorm.weight": "pytorch_model-00001-of-00008.bin",
|
370 |
+
"gpt_neox.layers.30.attention.bias": "pytorch_model-00007-of-00008.bin",
|
371 |
+
"gpt_neox.layers.30.attention.dense.bias": "pytorch_model-00007-of-00008.bin",
|
372 |
+
"gpt_neox.layers.30.attention.dense.weight": "pytorch_model-00007-of-00008.bin",
|
373 |
+
"gpt_neox.layers.30.attention.masked_bias": "pytorch_model-00007-of-00008.bin",
|
374 |
+
"gpt_neox.layers.30.attention.query_key_value.bias": "pytorch_model-00007-of-00008.bin",
|
375 |
+
"gpt_neox.layers.30.attention.query_key_value.weight": "pytorch_model-00007-of-00008.bin",
|
376 |
+
"gpt_neox.layers.30.attention.rotary_emb.inv_freq": "pytorch_model-00007-of-00008.bin",
|
377 |
+
"gpt_neox.layers.30.input_layernorm.bias": "pytorch_model-00007-of-00008.bin",
|
378 |
+
"gpt_neox.layers.30.input_layernorm.weight": "pytorch_model-00007-of-00008.bin",
|
379 |
+
"gpt_neox.layers.30.mlp.dense_4h_to_h.bias": "pytorch_model-00007-of-00008.bin",
|
380 |
+
"gpt_neox.layers.30.mlp.dense_4h_to_h.weight": "pytorch_model-00007-of-00008.bin",
|
381 |
+
"gpt_neox.layers.30.mlp.dense_h_to_4h.bias": "pytorch_model-00007-of-00008.bin",
|
382 |
+
"gpt_neox.layers.30.mlp.dense_h_to_4h.weight": "pytorch_model-00007-of-00008.bin",
|
383 |
+
"gpt_neox.layers.30.post_attention_layernorm.bias": "pytorch_model-00007-of-00008.bin",
|
384 |
+
"gpt_neox.layers.30.post_attention_layernorm.weight": "pytorch_model-00007-of-00008.bin",
|
385 |
+
"gpt_neox.layers.31.attention.bias": "pytorch_model-00007-of-00008.bin",
|
386 |
+
"gpt_neox.layers.31.attention.dense.bias": "pytorch_model-00007-of-00008.bin",
|
387 |
+
"gpt_neox.layers.31.attention.dense.weight": "pytorch_model-00007-of-00008.bin",
|
388 |
+
"gpt_neox.layers.31.attention.masked_bias": "pytorch_model-00007-of-00008.bin",
|
389 |
+
"gpt_neox.layers.31.attention.query_key_value.bias": "pytorch_model-00007-of-00008.bin",
|
390 |
+
"gpt_neox.layers.31.attention.query_key_value.weight": "pytorch_model-00007-of-00008.bin",
|
391 |
+
"gpt_neox.layers.31.attention.rotary_emb.inv_freq": "pytorch_model-00007-of-00008.bin",
|
392 |
+
"gpt_neox.layers.31.input_layernorm.bias": "pytorch_model-00007-of-00008.bin",
|
393 |
+
"gpt_neox.layers.31.input_layernorm.weight": "pytorch_model-00007-of-00008.bin",
|
394 |
+
"gpt_neox.layers.31.mlp.dense_4h_to_h.bias": "pytorch_model-00007-of-00008.bin",
|
395 |
+
"gpt_neox.layers.31.mlp.dense_4h_to_h.weight": "pytorch_model-00007-of-00008.bin",
|
396 |
+
"gpt_neox.layers.31.mlp.dense_h_to_4h.bias": "pytorch_model-00007-of-00008.bin",
|
397 |
+
"gpt_neox.layers.31.mlp.dense_h_to_4h.weight": "pytorch_model-00007-of-00008.bin",
|
398 |
+
"gpt_neox.layers.31.post_attention_layernorm.bias": "pytorch_model-00007-of-00008.bin",
|
399 |
+
"gpt_neox.layers.31.post_attention_layernorm.weight": "pytorch_model-00007-of-00008.bin",
|
400 |
+
"gpt_neox.layers.4.attention.bias": "pytorch_model-00002-of-00008.bin",
|
401 |
+
"gpt_neox.layers.4.attention.dense.bias": "pytorch_model-00002-of-00008.bin",
|
402 |
+
"gpt_neox.layers.4.attention.dense.weight": "pytorch_model-00002-of-00008.bin",
|
403 |
+
"gpt_neox.layers.4.attention.masked_bias": "pytorch_model-00002-of-00008.bin",
|
404 |
+
"gpt_neox.layers.4.attention.query_key_value.bias": "pytorch_model-00002-of-00008.bin",
|
405 |
+
"gpt_neox.layers.4.attention.query_key_value.weight": "pytorch_model-00002-of-00008.bin",
|
406 |
+
"gpt_neox.layers.4.attention.rotary_emb.inv_freq": "pytorch_model-00002-of-00008.bin",
|
407 |
+
"gpt_neox.layers.4.input_layernorm.bias": "pytorch_model-00002-of-00008.bin",
|
408 |
+
"gpt_neox.layers.4.input_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
409 |
+
"gpt_neox.layers.4.mlp.dense_4h_to_h.bias": "pytorch_model-00002-of-00008.bin",
|
410 |
+
"gpt_neox.layers.4.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00008.bin",
|
411 |
+
"gpt_neox.layers.4.mlp.dense_h_to_4h.bias": "pytorch_model-00002-of-00008.bin",
|
412 |
+
"gpt_neox.layers.4.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00008.bin",
|
413 |
+
"gpt_neox.layers.4.post_attention_layernorm.bias": "pytorch_model-00002-of-00008.bin",
|
414 |
+
"gpt_neox.layers.4.post_attention_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
415 |
+
"gpt_neox.layers.5.attention.bias": "pytorch_model-00002-of-00008.bin",
|
416 |
+
"gpt_neox.layers.5.attention.dense.bias": "pytorch_model-00002-of-00008.bin",
|
417 |
+
"gpt_neox.layers.5.attention.dense.weight": "pytorch_model-00002-of-00008.bin",
|
418 |
+
"gpt_neox.layers.5.attention.masked_bias": "pytorch_model-00002-of-00008.bin",
|
419 |
+
"gpt_neox.layers.5.attention.query_key_value.bias": "pytorch_model-00002-of-00008.bin",
|
420 |
+
"gpt_neox.layers.5.attention.query_key_value.weight": "pytorch_model-00002-of-00008.bin",
|
421 |
+
"gpt_neox.layers.5.attention.rotary_emb.inv_freq": "pytorch_model-00002-of-00008.bin",
|
422 |
+
"gpt_neox.layers.5.input_layernorm.bias": "pytorch_model-00002-of-00008.bin",
|
423 |
+
"gpt_neox.layers.5.input_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
424 |
+
"gpt_neox.layers.5.mlp.dense_4h_to_h.bias": "pytorch_model-00002-of-00008.bin",
|
425 |
+
"gpt_neox.layers.5.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00008.bin",
|
426 |
+
"gpt_neox.layers.5.mlp.dense_h_to_4h.bias": "pytorch_model-00002-of-00008.bin",
|
427 |
+
"gpt_neox.layers.5.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00008.bin",
|
428 |
+
"gpt_neox.layers.5.post_attention_layernorm.bias": "pytorch_model-00002-of-00008.bin",
|
429 |
+
"gpt_neox.layers.5.post_attention_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
430 |
+
"gpt_neox.layers.6.attention.bias": "pytorch_model-00002-of-00008.bin",
|
431 |
+
"gpt_neox.layers.6.attention.dense.bias": "pytorch_model-00002-of-00008.bin",
|
432 |
+
"gpt_neox.layers.6.attention.dense.weight": "pytorch_model-00002-of-00008.bin",
|
433 |
+
"gpt_neox.layers.6.attention.masked_bias": "pytorch_model-00002-of-00008.bin",
|
434 |
+
"gpt_neox.layers.6.attention.query_key_value.bias": "pytorch_model-00002-of-00008.bin",
|
435 |
+
"gpt_neox.layers.6.attention.query_key_value.weight": "pytorch_model-00002-of-00008.bin",
|
436 |
+
"gpt_neox.layers.6.attention.rotary_emb.inv_freq": "pytorch_model-00002-of-00008.bin",
|
437 |
+
"gpt_neox.layers.6.input_layernorm.bias": "pytorch_model-00002-of-00008.bin",
|
438 |
+
"gpt_neox.layers.6.input_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
439 |
+
"gpt_neox.layers.6.mlp.dense_4h_to_h.bias": "pytorch_model-00002-of-00008.bin",
|
440 |
+
"gpt_neox.layers.6.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00008.bin",
|
441 |
+
"gpt_neox.layers.6.mlp.dense_h_to_4h.bias": "pytorch_model-00002-of-00008.bin",
|
442 |
+
"gpt_neox.layers.6.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00008.bin",
|
443 |
+
"gpt_neox.layers.6.post_attention_layernorm.bias": "pytorch_model-00002-of-00008.bin",
|
444 |
+
"gpt_neox.layers.6.post_attention_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
445 |
+
"gpt_neox.layers.7.attention.bias": "pytorch_model-00002-of-00008.bin",
|
446 |
+
"gpt_neox.layers.7.attention.dense.bias": "pytorch_model-00002-of-00008.bin",
|
447 |
+
"gpt_neox.layers.7.attention.dense.weight": "pytorch_model-00002-of-00008.bin",
|
448 |
+
"gpt_neox.layers.7.attention.masked_bias": "pytorch_model-00002-of-00008.bin",
|
449 |
+
"gpt_neox.layers.7.attention.query_key_value.bias": "pytorch_model-00002-of-00008.bin",
|
450 |
+
"gpt_neox.layers.7.attention.query_key_value.weight": "pytorch_model-00002-of-00008.bin",
|
451 |
+
"gpt_neox.layers.7.attention.rotary_emb.inv_freq": "pytorch_model-00002-of-00008.bin",
|
452 |
+
"gpt_neox.layers.7.input_layernorm.bias": "pytorch_model-00002-of-00008.bin",
|
453 |
+
"gpt_neox.layers.7.input_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
454 |
+
"gpt_neox.layers.7.mlp.dense_4h_to_h.bias": "pytorch_model-00002-of-00008.bin",
|
455 |
+
"gpt_neox.layers.7.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00008.bin",
|
456 |
+
"gpt_neox.layers.7.mlp.dense_h_to_4h.bias": "pytorch_model-00002-of-00008.bin",
|
457 |
+
"gpt_neox.layers.7.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00008.bin",
|
458 |
+
"gpt_neox.layers.7.post_attention_layernorm.bias": "pytorch_model-00002-of-00008.bin",
|
459 |
+
"gpt_neox.layers.7.post_attention_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
460 |
+
"gpt_neox.layers.8.attention.bias": "pytorch_model-00002-of-00008.bin",
|
461 |
+
"gpt_neox.layers.8.attention.dense.bias": "pytorch_model-00002-of-00008.bin",
|
462 |
+
"gpt_neox.layers.8.attention.dense.weight": "pytorch_model-00002-of-00008.bin",
|
463 |
+
"gpt_neox.layers.8.attention.masked_bias": "pytorch_model-00002-of-00008.bin",
|
464 |
+
"gpt_neox.layers.8.attention.query_key_value.bias": "pytorch_model-00002-of-00008.bin",
|
465 |
+
"gpt_neox.layers.8.attention.query_key_value.weight": "pytorch_model-00002-of-00008.bin",
|
466 |
+
"gpt_neox.layers.8.attention.rotary_emb.inv_freq": "pytorch_model-00002-of-00008.bin",
|
467 |
+
"gpt_neox.layers.8.input_layernorm.bias": "pytorch_model-00002-of-00008.bin",
|
468 |
+
"gpt_neox.layers.8.input_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
469 |
+
"gpt_neox.layers.8.mlp.dense_4h_to_h.bias": "pytorch_model-00003-of-00008.bin",
|
470 |
+
"gpt_neox.layers.8.mlp.dense_4h_to_h.weight": "pytorch_model-00003-of-00008.bin",
|
471 |
+
"gpt_neox.layers.8.mlp.dense_h_to_4h.bias": "pytorch_model-00003-of-00008.bin",
|
472 |
+
"gpt_neox.layers.8.mlp.dense_h_to_4h.weight": "pytorch_model-00003-of-00008.bin",
|
473 |
+
"gpt_neox.layers.8.post_attention_layernorm.bias": "pytorch_model-00002-of-00008.bin",
|
474 |
+
"gpt_neox.layers.8.post_attention_layernorm.weight": "pytorch_model-00002-of-00008.bin",
|
475 |
+
"gpt_neox.layers.9.attention.bias": "pytorch_model-00003-of-00008.bin",
|
476 |
+
"gpt_neox.layers.9.attention.dense.bias": "pytorch_model-00003-of-00008.bin",
|
477 |
+
"gpt_neox.layers.9.attention.dense.weight": "pytorch_model-00003-of-00008.bin",
|
478 |
+
"gpt_neox.layers.9.attention.masked_bias": "pytorch_model-00003-of-00008.bin",
|
479 |
+
"gpt_neox.layers.9.attention.query_key_value.bias": "pytorch_model-00003-of-00008.bin",
|
480 |
+
"gpt_neox.layers.9.attention.query_key_value.weight": "pytorch_model-00003-of-00008.bin",
|
481 |
+
"gpt_neox.layers.9.attention.rotary_emb.inv_freq": "pytorch_model-00003-of-00008.bin",
|
482 |
+
"gpt_neox.layers.9.input_layernorm.bias": "pytorch_model-00003-of-00008.bin",
|
483 |
+
"gpt_neox.layers.9.input_layernorm.weight": "pytorch_model-00003-of-00008.bin",
|
484 |
+
"gpt_neox.layers.9.mlp.dense_4h_to_h.bias": "pytorch_model-00003-of-00008.bin",
|
485 |
+
"gpt_neox.layers.9.mlp.dense_4h_to_h.weight": "pytorch_model-00003-of-00008.bin",
|
486 |
+
"gpt_neox.layers.9.mlp.dense_h_to_4h.bias": "pytorch_model-00003-of-00008.bin",
|
487 |
+
"gpt_neox.layers.9.mlp.dense_h_to_4h.weight": "pytorch_model-00003-of-00008.bin",
|
488 |
+
"gpt_neox.layers.9.post_attention_layernorm.bias": "pytorch_model-00003-of-00008.bin",
|
489 |
+
"gpt_neox.layers.9.post_attention_layernorm.weight": "pytorch_model-00003-of-00008.bin"
|
490 |
+
}
|
491 |
+
}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "<|endoftext|>",
|
3 |
+
"eos_token": "<|endoftext|>",
|
4 |
+
"unk_token": "<|endoftext|>"
|
5 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_prefix_space": false,
|
3 |
+
"bos_token": "<|endoftext|>",
|
4 |
+
"eos_token": "<|endoftext|>",
|
5 |
+
"model_max_length": 1000000000000000019884624838656,
|
6 |
+
"name_or_path": "EleutherAI/pythia-6.9b-deduped",
|
7 |
+
"special_tokens_map_file": "/fsx/home-hailey/.cache/huggingface/hub/models--EleutherAI--gpt-neox-20b/snapshots/3523781c8df75f7741687a4284f6f70e1afa12f4/special_tokens_map.json",
|
8 |
+
"tokenizer_class": "GPTNeoXTokenizer",
|
9 |
+
"unk_token": "<|endoftext|>"
|
10 |
+
}
|
train_results.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"epoch": 1.99,
|
3 |
+
"train_loss": 1.1195918215981013,
|
4 |
+
"train_runtime": 35849.6176,
|
5 |
+
"train_samples": 5097,
|
6 |
+
"train_samples_per_second": 0.284,
|
7 |
+
"train_steps_per_second": 0.004
|
8 |
+
}
|
trainer_state.json
ADDED
@@ -0,0 +1,517 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 1.9905956112852663,
|
5 |
+
"global_step": 158,
|
6 |
+
"is_hyper_param_search": false,
|
7 |
+
"is_local_process_zero": true,
|
8 |
+
"is_world_process_zero": true,
|
9 |
+
"log_history": [
|
10 |
+
{
|
11 |
+
"epoch": 0.03,
|
12 |
+
"learning_rate": 2.5e-05,
|
13 |
+
"loss": 1.5684,
|
14 |
+
"step": 2
|
15 |
+
},
|
16 |
+
{
|
17 |
+
"epoch": 0.05,
|
18 |
+
"learning_rate": 5e-05,
|
19 |
+
"loss": 1.7603,
|
20 |
+
"step": 4
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"epoch": 0.08,
|
24 |
+
"learning_rate": 7.500000000000001e-05,
|
25 |
+
"loss": 1.7578,
|
26 |
+
"step": 6
|
27 |
+
},
|
28 |
+
{
|
29 |
+
"epoch": 0.1,
|
30 |
+
"learning_rate": 0.0001,
|
31 |
+
"loss": 1.5327,
|
32 |
+
"step": 8
|
33 |
+
},
|
34 |
+
{
|
35 |
+
"epoch": 0.13,
|
36 |
+
"learning_rate": 9.995614150494293e-05,
|
37 |
+
"loss": 1.5737,
|
38 |
+
"step": 10
|
39 |
+
},
|
40 |
+
{
|
41 |
+
"epoch": 0.15,
|
42 |
+
"learning_rate": 9.982464296247522e-05,
|
43 |
+
"loss": 1.4917,
|
44 |
+
"step": 12
|
45 |
+
},
|
46 |
+
{
|
47 |
+
"epoch": 0.18,
|
48 |
+
"learning_rate": 9.96057350657239e-05,
|
49 |
+
"loss": 1.4312,
|
50 |
+
"step": 14
|
51 |
+
},
|
52 |
+
{
|
53 |
+
"epoch": 0.2,
|
54 |
+
"learning_rate": 9.929980185352526e-05,
|
55 |
+
"loss": 1.4136,
|
56 |
+
"step": 16
|
57 |
+
},
|
58 |
+
{
|
59 |
+
"epoch": 0.23,
|
60 |
+
"learning_rate": 9.890738003669029e-05,
|
61 |
+
"loss": 1.3789,
|
62 |
+
"step": 18
|
63 |
+
},
|
64 |
+
{
|
65 |
+
"epoch": 0.25,
|
66 |
+
"learning_rate": 9.842915805643155e-05,
|
67 |
+
"loss": 1.5537,
|
68 |
+
"step": 20
|
69 |
+
},
|
70 |
+
{
|
71 |
+
"epoch": 0.28,
|
72 |
+
"learning_rate": 9.786597487660337e-05,
|
73 |
+
"loss": 1.6504,
|
74 |
+
"step": 22
|
75 |
+
},
|
76 |
+
{
|
77 |
+
"epoch": 0.3,
|
78 |
+
"learning_rate": 9.721881851187406e-05,
|
79 |
+
"loss": 1.4834,
|
80 |
+
"step": 24
|
81 |
+
},
|
82 |
+
{
|
83 |
+
"epoch": 0.33,
|
84 |
+
"learning_rate": 9.648882429441257e-05,
|
85 |
+
"loss": 1.4912,
|
86 |
+
"step": 26
|
87 |
+
},
|
88 |
+
{
|
89 |
+
"epoch": 0.35,
|
90 |
+
"learning_rate": 9.567727288213005e-05,
|
91 |
+
"loss": 1.4409,
|
92 |
+
"step": 28
|
93 |
+
},
|
94 |
+
{
|
95 |
+
"epoch": 0.38,
|
96 |
+
"learning_rate": 9.478558801197065e-05,
|
97 |
+
"loss": 1.3872,
|
98 |
+
"step": 30
|
99 |
+
},
|
100 |
+
{
|
101 |
+
"epoch": 0.4,
|
102 |
+
"learning_rate": 9.381533400219318e-05,
|
103 |
+
"loss": 1.4736,
|
104 |
+
"step": 32
|
105 |
+
},
|
106 |
+
{
|
107 |
+
"epoch": 0.43,
|
108 |
+
"learning_rate": 9.276821300802534e-05,
|
109 |
+
"loss": 1.4048,
|
110 |
+
"step": 34
|
111 |
+
},
|
112 |
+
{
|
113 |
+
"epoch": 0.45,
|
114 |
+
"learning_rate": 9.164606203550497e-05,
|
115 |
+
"loss": 1.4502,
|
116 |
+
"step": 36
|
117 |
+
},
|
118 |
+
{
|
119 |
+
"epoch": 0.48,
|
120 |
+
"learning_rate": 9.045084971874738e-05,
|
121 |
+
"loss": 1.4141,
|
122 |
+
"step": 38
|
123 |
+
},
|
124 |
+
{
|
125 |
+
"epoch": 0.5,
|
126 |
+
"learning_rate": 8.9184672866292e-05,
|
127 |
+
"loss": 1.3911,
|
128 |
+
"step": 40
|
129 |
+
},
|
130 |
+
{
|
131 |
+
"epoch": 0.53,
|
132 |
+
"learning_rate": 8.784975278258783e-05,
|
133 |
+
"loss": 1.3379,
|
134 |
+
"step": 42
|
135 |
+
},
|
136 |
+
{
|
137 |
+
"epoch": 0.55,
|
138 |
+
"learning_rate": 8.644843137107059e-05,
|
139 |
+
"loss": 1.3379,
|
140 |
+
"step": 44
|
141 |
+
},
|
142 |
+
{
|
143 |
+
"epoch": 0.58,
|
144 |
+
"learning_rate": 8.498316702566828e-05,
|
145 |
+
"loss": 1.3242,
|
146 |
+
"step": 46
|
147 |
+
},
|
148 |
+
{
|
149 |
+
"epoch": 0.6,
|
150 |
+
"learning_rate": 8.345653031794292e-05,
|
151 |
+
"loss": 1.3091,
|
152 |
+
"step": 48
|
153 |
+
},
|
154 |
+
{
|
155 |
+
"epoch": 0.63,
|
156 |
+
"learning_rate": 8.18711994874345e-05,
|
157 |
+
"loss": 1.312,
|
158 |
+
"step": 50
|
159 |
+
},
|
160 |
+
{
|
161 |
+
"epoch": 0.65,
|
162 |
+
"learning_rate": 8.022995574311876e-05,
|
163 |
+
"loss": 1.3018,
|
164 |
+
"step": 52
|
165 |
+
},
|
166 |
+
{
|
167 |
+
"epoch": 0.68,
|
168 |
+
"learning_rate": 7.85356783842216e-05,
|
169 |
+
"loss": 1.3115,
|
170 |
+
"step": 54
|
171 |
+
},
|
172 |
+
{
|
173 |
+
"epoch": 0.7,
|
174 |
+
"learning_rate": 7.679133974894983e-05,
|
175 |
+
"loss": 1.3188,
|
176 |
+
"step": 56
|
177 |
+
},
|
178 |
+
{
|
179 |
+
"epoch": 0.73,
|
180 |
+
"learning_rate": 7.500000000000001e-05,
|
181 |
+
"loss": 1.314,
|
182 |
+
"step": 58
|
183 |
+
},
|
184 |
+
{
|
185 |
+
"epoch": 0.75,
|
186 |
+
"learning_rate": 7.316480175599309e-05,
|
187 |
+
"loss": 1.3062,
|
188 |
+
"step": 60
|
189 |
+
},
|
190 |
+
{
|
191 |
+
"epoch": 0.78,
|
192 |
+
"learning_rate": 7.128896457825364e-05,
|
193 |
+
"loss": 1.3076,
|
194 |
+
"step": 62
|
195 |
+
},
|
196 |
+
{
|
197 |
+
"epoch": 0.8,
|
198 |
+
"learning_rate": 6.937577932260515e-05,
|
199 |
+
"loss": 1.2847,
|
200 |
+
"step": 64
|
201 |
+
},
|
202 |
+
{
|
203 |
+
"epoch": 0.83,
|
204 |
+
"learning_rate": 6.742860236609077e-05,
|
205 |
+
"loss": 1.2837,
|
206 |
+
"step": 66
|
207 |
+
},
|
208 |
+
{
|
209 |
+
"epoch": 0.85,
|
210 |
+
"learning_rate": 6.545084971874738e-05,
|
211 |
+
"loss": 1.2798,
|
212 |
+
"step": 68
|
213 |
+
},
|
214 |
+
{
|
215 |
+
"epoch": 0.88,
|
216 |
+
"learning_rate": 6.344599103076329e-05,
|
217 |
+
"loss": 1.3247,
|
218 |
+
"step": 70
|
219 |
+
},
|
220 |
+
{
|
221 |
+
"epoch": 0.9,
|
222 |
+
"learning_rate": 6.141754350553279e-05,
|
223 |
+
"loss": 1.2842,
|
224 |
+
"step": 72
|
225 |
+
},
|
226 |
+
{
|
227 |
+
"epoch": 0.93,
|
228 |
+
"learning_rate": 5.9369065729286245e-05,
|
229 |
+
"loss": 1.2969,
|
230 |
+
"step": 74
|
231 |
+
},
|
232 |
+
{
|
233 |
+
"epoch": 0.95,
|
234 |
+
"learning_rate": 5.730415142812059e-05,
|
235 |
+
"loss": 1.2866,
|
236 |
+
"step": 76
|
237 |
+
},
|
238 |
+
{
|
239 |
+
"epoch": 0.98,
|
240 |
+
"learning_rate": 5.522642316338268e-05,
|
241 |
+
"loss": 1.2598,
|
242 |
+
"step": 78
|
243 |
+
},
|
244 |
+
{
|
245 |
+
"epoch": 0.99,
|
246 |
+
"eval_accuracy": 0.6496387020106186,
|
247 |
+
"eval_loss": 1.329074740409851,
|
248 |
+
"eval_runtime": 71.5884,
|
249 |
+
"eval_samples_per_second": 3.562,
|
250 |
+
"eval_steps_per_second": 1.788,
|
251 |
+
"step": 79
|
252 |
+
},
|
253 |
+
{
|
254 |
+
"epoch": 1.01,
|
255 |
+
"learning_rate": 5.313952597646568e-05,
|
256 |
+
"loss": 1.6475,
|
257 |
+
"step": 80
|
258 |
+
},
|
259 |
+
{
|
260 |
+
"epoch": 1.04,
|
261 |
+
"learning_rate": 5.104712099416785e-05,
|
262 |
+
"loss": 0.9348,
|
263 |
+
"step": 82
|
264 |
+
},
|
265 |
+
{
|
266 |
+
"epoch": 1.06,
|
267 |
+
"learning_rate": 4.895287900583216e-05,
|
268 |
+
"loss": 0.8953,
|
269 |
+
"step": 84
|
270 |
+
},
|
271 |
+
{
|
272 |
+
"epoch": 1.09,
|
273 |
+
"learning_rate": 4.6860474023534335e-05,
|
274 |
+
"loss": 0.8994,
|
275 |
+
"step": 86
|
276 |
+
},
|
277 |
+
{
|
278 |
+
"epoch": 1.11,
|
279 |
+
"learning_rate": 4.477357683661734e-05,
|
280 |
+
"loss": 0.8591,
|
281 |
+
"step": 88
|
282 |
+
},
|
283 |
+
{
|
284 |
+
"epoch": 1.14,
|
285 |
+
"learning_rate": 4.269584857187943e-05,
|
286 |
+
"loss": 0.8354,
|
287 |
+
"step": 90
|
288 |
+
},
|
289 |
+
{
|
290 |
+
"epoch": 1.16,
|
291 |
+
"learning_rate": 4.063093427071376e-05,
|
292 |
+
"loss": 0.863,
|
293 |
+
"step": 92
|
294 |
+
},
|
295 |
+
{
|
296 |
+
"epoch": 1.19,
|
297 |
+
"learning_rate": 3.858245649446721e-05,
|
298 |
+
"loss": 0.8845,
|
299 |
+
"step": 94
|
300 |
+
},
|
301 |
+
{
|
302 |
+
"epoch": 1.21,
|
303 |
+
"learning_rate": 3.655400896923672e-05,
|
304 |
+
"loss": 0.8325,
|
305 |
+
"step": 96
|
306 |
+
},
|
307 |
+
{
|
308 |
+
"epoch": 1.24,
|
309 |
+
"learning_rate": 3.4549150281252636e-05,
|
310 |
+
"loss": 0.8989,
|
311 |
+
"step": 98
|
312 |
+
},
|
313 |
+
{
|
314 |
+
"epoch": 1.26,
|
315 |
+
"learning_rate": 3.257139763390925e-05,
|
316 |
+
"loss": 0.8782,
|
317 |
+
"step": 100
|
318 |
+
},
|
319 |
+
{
|
320 |
+
"epoch": 1.29,
|
321 |
+
"learning_rate": 3.062422067739485e-05,
|
322 |
+
"loss": 0.8052,
|
323 |
+
"step": 102
|
324 |
+
},
|
325 |
+
{
|
326 |
+
"epoch": 1.31,
|
327 |
+
"learning_rate": 2.8711035421746367e-05,
|
328 |
+
"loss": 0.8518,
|
329 |
+
"step": 104
|
330 |
+
},
|
331 |
+
{
|
332 |
+
"epoch": 1.34,
|
333 |
+
"learning_rate": 2.6835198244006927e-05,
|
334 |
+
"loss": 0.8516,
|
335 |
+
"step": 106
|
336 |
+
},
|
337 |
+
{
|
338 |
+
"epoch": 1.36,
|
339 |
+
"learning_rate": 2.500000000000001e-05,
|
340 |
+
"loss": 0.7979,
|
341 |
+
"step": 108
|
342 |
+
},
|
343 |
+
{
|
344 |
+
"epoch": 1.39,
|
345 |
+
"learning_rate": 2.3208660251050158e-05,
|
346 |
+
"loss": 0.8108,
|
347 |
+
"step": 110
|
348 |
+
},
|
349 |
+
{
|
350 |
+
"epoch": 1.41,
|
351 |
+
"learning_rate": 2.1464321615778422e-05,
|
352 |
+
"loss": 0.8547,
|
353 |
+
"step": 112
|
354 |
+
},
|
355 |
+
{
|
356 |
+
"epoch": 1.44,
|
357 |
+
"learning_rate": 1.977004425688126e-05,
|
358 |
+
"loss": 0.8684,
|
359 |
+
"step": 114
|
360 |
+
},
|
361 |
+
{
|
362 |
+
"epoch": 1.46,
|
363 |
+
"learning_rate": 1.8128800512565513e-05,
|
364 |
+
"loss": 0.8428,
|
365 |
+
"step": 116
|
366 |
+
},
|
367 |
+
{
|
368 |
+
"epoch": 1.49,
|
369 |
+
"learning_rate": 1.6543469682057106e-05,
|
370 |
+
"loss": 0.7878,
|
371 |
+
"step": 118
|
372 |
+
},
|
373 |
+
{
|
374 |
+
"epoch": 1.51,
|
375 |
+
"learning_rate": 1.5016832974331724e-05,
|
376 |
+
"loss": 0.822,
|
377 |
+
"step": 120
|
378 |
+
},
|
379 |
+
{
|
380 |
+
"epoch": 1.54,
|
381 |
+
"learning_rate": 1.3551568628929434e-05,
|
382 |
+
"loss": 0.79,
|
383 |
+
"step": 122
|
384 |
+
},
|
385 |
+
{
|
386 |
+
"epoch": 1.56,
|
387 |
+
"learning_rate": 1.2150247217412186e-05,
|
388 |
+
"loss": 0.7979,
|
389 |
+
"step": 124
|
390 |
+
},
|
391 |
+
{
|
392 |
+
"epoch": 1.59,
|
393 |
+
"learning_rate": 1.0815327133708015e-05,
|
394 |
+
"loss": 0.8081,
|
395 |
+
"step": 126
|
396 |
+
},
|
397 |
+
{
|
398 |
+
"epoch": 1.61,
|
399 |
+
"learning_rate": 9.549150281252633e-06,
|
400 |
+
"loss": 0.7751,
|
401 |
+
"step": 128
|
402 |
+
},
|
403 |
+
{
|
404 |
+
"epoch": 1.64,
|
405 |
+
"learning_rate": 8.353937964495029e-06,
|
406 |
+
"loss": 0.7871,
|
407 |
+
"step": 130
|
408 |
+
},
|
409 |
+
{
|
410 |
+
"epoch": 1.66,
|
411 |
+
"learning_rate": 7.2317869919746705e-06,
|
412 |
+
"loss": 0.7722,
|
413 |
+
"step": 132
|
414 |
+
},
|
415 |
+
{
|
416 |
+
"epoch": 1.69,
|
417 |
+
"learning_rate": 6.184665997806832e-06,
|
418 |
+
"loss": 0.8198,
|
419 |
+
"step": 134
|
420 |
+
},
|
421 |
+
{
|
422 |
+
"epoch": 1.71,
|
423 |
+
"learning_rate": 5.214411988029355e-06,
|
424 |
+
"loss": 0.7859,
|
425 |
+
"step": 136
|
426 |
+
},
|
427 |
+
{
|
428 |
+
"epoch": 1.74,
|
429 |
+
"learning_rate": 4.322727117869951e-06,
|
430 |
+
"loss": 0.7458,
|
431 |
+
"step": 138
|
432 |
+
},
|
433 |
+
{
|
434 |
+
"epoch": 1.76,
|
435 |
+
"learning_rate": 3.511175705587433e-06,
|
436 |
+
"loss": 0.7554,
|
437 |
+
"step": 140
|
438 |
+
},
|
439 |
+
{
|
440 |
+
"epoch": 1.79,
|
441 |
+
"learning_rate": 2.7811814881259503e-06,
|
442 |
+
"loss": 0.7783,
|
443 |
+
"step": 142
|
444 |
+
},
|
445 |
+
{
|
446 |
+
"epoch": 1.82,
|
447 |
+
"learning_rate": 2.134025123396638e-06,
|
448 |
+
"loss": 0.7783,
|
449 |
+
"step": 144
|
450 |
+
},
|
451 |
+
{
|
452 |
+
"epoch": 1.84,
|
453 |
+
"learning_rate": 1.5708419435684462e-06,
|
454 |
+
"loss": 0.7793,
|
455 |
+
"step": 146
|
456 |
+
},
|
457 |
+
{
|
458 |
+
"epoch": 1.87,
|
459 |
+
"learning_rate": 1.0926199633097157e-06,
|
460 |
+
"loss": 0.8064,
|
461 |
+
"step": 148
|
462 |
+
},
|
463 |
+
{
|
464 |
+
"epoch": 1.89,
|
465 |
+
"learning_rate": 7.001981464747565e-07,
|
466 |
+
"loss": 0.8042,
|
467 |
+
"step": 150
|
468 |
+
},
|
469 |
+
{
|
470 |
+
"epoch": 1.92,
|
471 |
+
"learning_rate": 3.9426493427611177e-07,
|
472 |
+
"loss": 0.791,
|
473 |
+
"step": 152
|
474 |
+
},
|
475 |
+
{
|
476 |
+
"epoch": 1.94,
|
477 |
+
"learning_rate": 1.753570375247815e-07,
|
478 |
+
"loss": 0.8147,
|
479 |
+
"step": 154
|
480 |
+
},
|
481 |
+
{
|
482 |
+
"epoch": 1.97,
|
483 |
+
"learning_rate": 4.385849505708084e-08,
|
484 |
+
"loss": 0.7617,
|
485 |
+
"step": 156
|
486 |
+
},
|
487 |
+
{
|
488 |
+
"epoch": 1.99,
|
489 |
+
"learning_rate": 0.0,
|
490 |
+
"loss": 0.7446,
|
491 |
+
"step": 158
|
492 |
+
},
|
493 |
+
{
|
494 |
+
"epoch": 1.99,
|
495 |
+
"eval_accuracy": 0.6768941789814655,
|
496 |
+
"eval_loss": 1.2372242212295532,
|
497 |
+
"eval_runtime": 71.61,
|
498 |
+
"eval_samples_per_second": 3.561,
|
499 |
+
"eval_steps_per_second": 1.787,
|
500 |
+
"step": 158
|
501 |
+
},
|
502 |
+
{
|
503 |
+
"epoch": 1.99,
|
504 |
+
"step": 158,
|
505 |
+
"total_flos": 4.14872908733612e+17,
|
506 |
+
"train_loss": 1.1195918215981013,
|
507 |
+
"train_runtime": 35849.6176,
|
508 |
+
"train_samples_per_second": 0.284,
|
509 |
+
"train_steps_per_second": 0.004
|
510 |
+
}
|
511 |
+
],
|
512 |
+
"max_steps": 158,
|
513 |
+
"num_train_epochs": 2,
|
514 |
+
"total_flos": 4.14872908733612e+17,
|
515 |
+
"trial_name": null,
|
516 |
+
"trial_params": null
|
517 |
+
}
|