初始化项目,由ModelHub XC社区提供模型

Model: Writer/palmyra-large
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-05-19 17:48:41 +08:00
commit c77dd7243a
20 changed files with 151812 additions and 0 deletions

34
.gitattributes vendored Normal file
View File

@@ -0,0 +1,34 @@
*.7z filter=lfs diff=lfs merge=lfs -text
*.arrow filter=lfs diff=lfs merge=lfs -text
*.bin filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.ckpt filter=lfs diff=lfs merge=lfs -text
*.ftz filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.h5 filter=lfs diff=lfs merge=lfs -text
*.joblib filter=lfs diff=lfs merge=lfs -text
*.lfs.* filter=lfs diff=lfs merge=lfs -text
*.mlmodel filter=lfs diff=lfs merge=lfs -text
*.model filter=lfs diff=lfs merge=lfs -text
*.msgpack filter=lfs diff=lfs merge=lfs -text
*.npy filter=lfs diff=lfs merge=lfs -text
*.npz filter=lfs diff=lfs merge=lfs -text
*.onnx filter=lfs diff=lfs merge=lfs -text
*.ot filter=lfs diff=lfs merge=lfs -text
*.parquet filter=lfs diff=lfs merge=lfs -text
*.pb filter=lfs diff=lfs merge=lfs -text
*.pickle filter=lfs diff=lfs merge=lfs -text
*.pkl filter=lfs diff=lfs merge=lfs -text
*.pt filter=lfs diff=lfs merge=lfs -text
*.pth filter=lfs diff=lfs merge=lfs -text
*.rar filter=lfs diff=lfs merge=lfs -text
*.safetensors filter=lfs diff=lfs merge=lfs -text
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.tar.* filter=lfs diff=lfs merge=lfs -text
*.tflite filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.wasm filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text

140
README.md Normal file
View File

@@ -0,0 +1,140 @@
---
language:
- en
datasets:
- English
- Writer/palmyra-data-index
tags:
- text generation
- pytorch
- causal-lm
- Writer-data
- gpt
- palmyra
pipeline_tag: text-generation
library_name: transformers
license: apache-2.0
---
**DEPRECATED MODEL NOTICE**
==========================
Please note that this model is no longer maintained or supported by our team. We strongly advise against using it in production or for any critical applications.
Instead, we recommend using our latest and greatest models, which can be found at:
https://huggingface.co/collections/Writer/palmyra-writer-license-66476fa8156169f8720a2c89
# Palmyra Large 20B
**Palmyra-Large is a 20B parameters causal decoder-only model built by [Writer](https://www.Writer.com) and trained on +800B tokens of [Palmyra-Index-Data](https://huggingface.co/datasets/Writer/palmyra-data-index) enhanced with curated corpora.**
<style>
img {
display: inline;
}
</style>
|[![Model architecture](https://img.shields.io/badge/Model%20Arch-Transformer%20Decoder-green)](#model-architecture)|[![Model size](https://img.shields.io/badge/Params-20B-green)](#model-architecture)|[![Language](https://img.shields.io/badge/Language-en--US-lightgrey#model-badge)](#datasets)
## Model Details
Palmyra Large was primarily pre-trained with English text. Note that there is still a trace amount of non-English data present within the training corpus that was accessed through CommonCrawl. A causal language modeling (CLM) objective was utilized during the process of the model's pretraining. Similar to GPT-3, Palmyra Large is a member of the same family of models that only contain a decoder. As a result, it was pre-trained utilizing the objective of self-supervised causal language modeling.
### Model Description
- **Developed by:** [https://www.writer.com](https://www.writer.com);
- **Model type:** Causal decoder-only;
- **Language(s) (NLP):** English (and limited capabilities in German, Spanish, French, Swedish);
- **License:** Apache 2.0 license.
## Uses
### Direct Use
Research on large language models; as a foundation for further specialization and finetuning for specific usecases (e.g., summarization, text generation, chatbot, etc.)
### Out-of-Scope Use
Production use without adequate assessment of risks and mitigation; any use cases which may be considered irresponsible or harmful.
## Bias, Risks, and Limitations
Palmyra-large-20B is trained mostly on English with limited capabilities also in German, Spanish, French, Swedish. It will not generalize appropriately to other languages. Furthermore, as it is trained on a large-scale corpora representative of the web, it will carry the stereotypes and biases commonly encountered online.
### Recommendations
We recommend users of Palmyra-Large-20B to consider finetuning it for the specific set of tasks of interest, and for guardrails and appropriate precautions to be taken for any production use.
### Use case
Palmyra Large is extremely powerful while being extremely fast. This model excels at many nuanced tasks such as sentiment classification and summarization.
## Training data
Palmyra Large (20b) was trained on Writers custom dataset.
## Intended Use and Limitations
Palmyra Large learns an inner representation of the English language that can be used to extract features useful for downstream tasks. However, the model is best at what it was pre-trained for which is generating text from a prompt.
### How to use
This model can be easily loaded using the `AutoModelForCausalLM` functionality:
```python
import os
from transformers import AutoModelForCausalLM, AutoTokenizer
# set HF environment variable
auth_token = os.environ.get("HF_TOKEN", True)
model = AutoModelForCausalLM.from_pretrained(
"Writer/palmyra-large",
device_map="auto",
torch_dtype=torch.float16,
use_auth_token=auth_token,
)
tokenizer = AutoTokenizer.from_pretrained(
"Writer/palmyra-large", use_auth_token=auth_token
)
```
It can also be used with text-generation-inference
```sh
model=Writer/palmyra-large
volume=$PWD/data
docker run --gpus all --shm-size 1g -p 8080:80 -v $volume:/data ghcr.io/huggingface/text-generation-inference --model-id $model
```
### Limitations and Biases
Palmyra Larges core functionality is to take a string of text and predict the next token. While language models are widely used for other tasks, there are many unknowns in this work. When prompting Palmyra Large, keep in mind that the next statistically likely token is not always the token that produces the most "accurate" text. Never rely on Palmyra Large to produce factually correct results.
Palmyra Large was trained on Writers custom data. As with all language models, it is difficult to predict how Palmyra Large will respond to specific prompts, and offensive content may appear unexpectedly. We recommend that the outputs be curated or filtered by humans before they are released, both to censor undesirable content and to improve the quality of the results.
## Citation and Related Information
To cite this model:
```
@misc{Palmyra,
author = {Writer Engineering team},
title = {{Palmyra-Large Parameter Autoregressive Language Model}},
howpublished = {\url{https://dev.writer.com}},
year = 2023,
month = March
}
```
## Contact
Hello@writer.com

31
config.json Normal file
View File

@@ -0,0 +1,31 @@
{
"activation_function": "gelu",
"architectures": [
"GPT2LMHeadModel"
],
"attn_pdrop": 0.1,
"bos_token_id": 50256,
"embd_pdrop": 0.1,
"eos_token_id": 50256,
"initializer_range": 0.008165,
"layer_norm_epsilon": 1e-05,
"model_type": "gpt2",
"n_embd": 6144,
"n_head": 48,
"n_inner": 24576,
"n_layer": 44,
"n_positions": 2048,
"reorder_and_upcast_attn": false,
"resid_pdrop": 0.1,
"scale_attn_by_inverse_layer_idx": false,
"scale_attn_weights": true,
"summary_activation": null,
"summary_first_dropout": 0.1,
"summary_proj_to_labels": true,
"summary_type": "cls_index",
"summary_use_proj": true,
"torch_dtype": "bfloat16",
"transformers_version": "4.21.2",
"use_cache": true,
"vocab_size": 50257
}

50001
merges.txt Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ce4feb0d7e94c4c43e051b3abb8fb7fac0f12f4b6fdbf6a0a969f42f341dd7cd
size 9796332646

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:668e7182ea6dfd18229a82a0cc5e5ea4890d1933b797a13c3b1f74a7b0e82214
size 9749298668

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eb7c35901f6e1a723c609982a364495a9376428d2795d455a41d298491eff0d4
size 9757675406

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f4c2c6aa5069a1653948791925249c82c2c7d2e2e42bc699a7316c4f31a5139c
size 9984179902

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e7eb50a1a7332ce321c769bb58da4302c3eda9b09b10808e9c201b95534496ec
size 2211678826

View File

@@ -0,0 +1,628 @@
{
"metadata": {
"total_size": 41499099224
},
"weight_map": {
"lm_head.weight": "model-00005-of-00005.safetensors",
"transformer.h.0.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.0.attn.c_attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.0.attn.c_attn.weight": "model-00001-of-00005.safetensors",
"transformer.h.0.attn.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.0.attn.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.0.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.0.ln_1.bias": "model-00001-of-00005.safetensors",
"transformer.h.0.ln_1.weight": "model-00001-of-00005.safetensors",
"transformer.h.0.ln_2.bias": "model-00001-of-00005.safetensors",
"transformer.h.0.ln_2.weight": "model-00001-of-00005.safetensors",
"transformer.h.0.mlp.c_fc.bias": "model-00001-of-00005.safetensors",
"transformer.h.0.mlp.c_fc.weight": "model-00001-of-00005.safetensors",
"transformer.h.0.mlp.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.0.mlp.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.1.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.1.attn.c_attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.1.attn.c_attn.weight": "model-00001-of-00005.safetensors",
"transformer.h.1.attn.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.1.attn.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.1.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.1.ln_1.bias": "model-00001-of-00005.safetensors",
"transformer.h.1.ln_1.weight": "model-00001-of-00005.safetensors",
"transformer.h.1.ln_2.bias": "model-00001-of-00005.safetensors",
"transformer.h.1.ln_2.weight": "model-00001-of-00005.safetensors",
"transformer.h.1.mlp.c_fc.bias": "model-00001-of-00005.safetensors",
"transformer.h.1.mlp.c_fc.weight": "model-00001-of-00005.safetensors",
"transformer.h.1.mlp.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.1.mlp.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.10.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.10.attn.c_attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.10.attn.c_attn.weight": "model-00002-of-00005.safetensors",
"transformer.h.10.attn.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.10.attn.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.10.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.10.ln_1.bias": "model-00001-of-00005.safetensors",
"transformer.h.10.ln_1.weight": "model-00001-of-00005.safetensors",
"transformer.h.10.ln_2.bias": "model-00002-of-00005.safetensors",
"transformer.h.10.ln_2.weight": "model-00002-of-00005.safetensors",
"transformer.h.10.mlp.c_fc.bias": "model-00002-of-00005.safetensors",
"transformer.h.10.mlp.c_fc.weight": "model-00002-of-00005.safetensors",
"transformer.h.10.mlp.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.10.mlp.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.11.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.11.attn.c_attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.11.attn.c_attn.weight": "model-00002-of-00005.safetensors",
"transformer.h.11.attn.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.11.attn.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.11.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.11.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.11.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.11.ln_2.bias": "model-00002-of-00005.safetensors",
"transformer.h.11.ln_2.weight": "model-00002-of-00005.safetensors",
"transformer.h.11.mlp.c_fc.bias": "model-00002-of-00005.safetensors",
"transformer.h.11.mlp.c_fc.weight": "model-00002-of-00005.safetensors",
"transformer.h.11.mlp.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.11.mlp.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.12.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.12.attn.c_attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.12.attn.c_attn.weight": "model-00002-of-00005.safetensors",
"transformer.h.12.attn.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.12.attn.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.12.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.12.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.12.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.12.ln_2.bias": "model-00002-of-00005.safetensors",
"transformer.h.12.ln_2.weight": "model-00002-of-00005.safetensors",
"transformer.h.12.mlp.c_fc.bias": "model-00002-of-00005.safetensors",
"transformer.h.12.mlp.c_fc.weight": "model-00002-of-00005.safetensors",
"transformer.h.12.mlp.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.12.mlp.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.13.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.13.attn.c_attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.13.attn.c_attn.weight": "model-00002-of-00005.safetensors",
"transformer.h.13.attn.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.13.attn.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.13.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.13.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.13.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.13.ln_2.bias": "model-00002-of-00005.safetensors",
"transformer.h.13.ln_2.weight": "model-00002-of-00005.safetensors",
"transformer.h.13.mlp.c_fc.bias": "model-00002-of-00005.safetensors",
"transformer.h.13.mlp.c_fc.weight": "model-00002-of-00005.safetensors",
"transformer.h.13.mlp.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.13.mlp.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.14.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.14.attn.c_attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.14.attn.c_attn.weight": "model-00002-of-00005.safetensors",
"transformer.h.14.attn.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.14.attn.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.14.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.14.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.14.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.14.ln_2.bias": "model-00002-of-00005.safetensors",
"transformer.h.14.ln_2.weight": "model-00002-of-00005.safetensors",
"transformer.h.14.mlp.c_fc.bias": "model-00002-of-00005.safetensors",
"transformer.h.14.mlp.c_fc.weight": "model-00002-of-00005.safetensors",
"transformer.h.14.mlp.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.14.mlp.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.15.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.15.attn.c_attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.15.attn.c_attn.weight": "model-00002-of-00005.safetensors",
"transformer.h.15.attn.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.15.attn.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.15.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.15.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.15.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.15.ln_2.bias": "model-00002-of-00005.safetensors",
"transformer.h.15.ln_2.weight": "model-00002-of-00005.safetensors",
"transformer.h.15.mlp.c_fc.bias": "model-00002-of-00005.safetensors",
"transformer.h.15.mlp.c_fc.weight": "model-00002-of-00005.safetensors",
"transformer.h.15.mlp.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.15.mlp.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.16.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.16.attn.c_attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.16.attn.c_attn.weight": "model-00002-of-00005.safetensors",
"transformer.h.16.attn.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.16.attn.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.16.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.16.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.16.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.16.ln_2.bias": "model-00002-of-00005.safetensors",
"transformer.h.16.ln_2.weight": "model-00002-of-00005.safetensors",
"transformer.h.16.mlp.c_fc.bias": "model-00002-of-00005.safetensors",
"transformer.h.16.mlp.c_fc.weight": "model-00002-of-00005.safetensors",
"transformer.h.16.mlp.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.16.mlp.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.17.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.17.attn.c_attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.17.attn.c_attn.weight": "model-00002-of-00005.safetensors",
"transformer.h.17.attn.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.17.attn.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.17.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.17.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.17.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.17.ln_2.bias": "model-00002-of-00005.safetensors",
"transformer.h.17.ln_2.weight": "model-00002-of-00005.safetensors",
"transformer.h.17.mlp.c_fc.bias": "model-00002-of-00005.safetensors",
"transformer.h.17.mlp.c_fc.weight": "model-00002-of-00005.safetensors",
"transformer.h.17.mlp.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.17.mlp.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.18.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.18.attn.c_attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.18.attn.c_attn.weight": "model-00002-of-00005.safetensors",
"transformer.h.18.attn.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.18.attn.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.18.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.18.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.18.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.18.ln_2.bias": "model-00002-of-00005.safetensors",
"transformer.h.18.ln_2.weight": "model-00002-of-00005.safetensors",
"transformer.h.18.mlp.c_fc.bias": "model-00002-of-00005.safetensors",
"transformer.h.18.mlp.c_fc.weight": "model-00002-of-00005.safetensors",
"transformer.h.18.mlp.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.18.mlp.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.19.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.19.attn.c_attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.19.attn.c_attn.weight": "model-00002-of-00005.safetensors",
"transformer.h.19.attn.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.19.attn.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.19.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.19.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.19.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.19.ln_2.bias": "model-00002-of-00005.safetensors",
"transformer.h.19.ln_2.weight": "model-00002-of-00005.safetensors",
"transformer.h.19.mlp.c_fc.bias": "model-00002-of-00005.safetensors",
"transformer.h.19.mlp.c_fc.weight": "model-00002-of-00005.safetensors",
"transformer.h.19.mlp.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.19.mlp.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.2.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.2.attn.c_attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.2.attn.c_attn.weight": "model-00001-of-00005.safetensors",
"transformer.h.2.attn.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.2.attn.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.2.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.2.ln_1.bias": "model-00001-of-00005.safetensors",
"transformer.h.2.ln_1.weight": "model-00001-of-00005.safetensors",
"transformer.h.2.ln_2.bias": "model-00001-of-00005.safetensors",
"transformer.h.2.ln_2.weight": "model-00001-of-00005.safetensors",
"transformer.h.2.mlp.c_fc.bias": "model-00001-of-00005.safetensors",
"transformer.h.2.mlp.c_fc.weight": "model-00001-of-00005.safetensors",
"transformer.h.2.mlp.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.2.mlp.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.20.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.20.attn.c_attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.20.attn.c_attn.weight": "model-00002-of-00005.safetensors",
"transformer.h.20.attn.c_proj.bias": "model-00002-of-00005.safetensors",
"transformer.h.20.attn.c_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.20.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.20.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.20.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.20.ln_2.bias": "model-00002-of-00005.safetensors",
"transformer.h.20.ln_2.weight": "model-00002-of-00005.safetensors",
"transformer.h.20.mlp.c_fc.bias": "model-00002-of-00005.safetensors",
"transformer.h.20.mlp.c_fc.weight": "model-00002-of-00005.safetensors",
"transformer.h.20.mlp.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.20.mlp.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.21.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.21.attn.c_attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.21.attn.c_attn.weight": "model-00003-of-00005.safetensors",
"transformer.h.21.attn.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.21.attn.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.21.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.21.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.21.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.21.ln_2.bias": "model-00003-of-00005.safetensors",
"transformer.h.21.ln_2.weight": "model-00003-of-00005.safetensors",
"transformer.h.21.mlp.c_fc.bias": "model-00003-of-00005.safetensors",
"transformer.h.21.mlp.c_fc.weight": "model-00003-of-00005.safetensors",
"transformer.h.21.mlp.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.21.mlp.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.22.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.22.attn.c_attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.22.attn.c_attn.weight": "model-00003-of-00005.safetensors",
"transformer.h.22.attn.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.22.attn.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.22.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.22.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.22.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.22.ln_2.bias": "model-00003-of-00005.safetensors",
"transformer.h.22.ln_2.weight": "model-00003-of-00005.safetensors",
"transformer.h.22.mlp.c_fc.bias": "model-00003-of-00005.safetensors",
"transformer.h.22.mlp.c_fc.weight": "model-00003-of-00005.safetensors",
"transformer.h.22.mlp.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.22.mlp.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.23.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.23.attn.c_attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.23.attn.c_attn.weight": "model-00003-of-00005.safetensors",
"transformer.h.23.attn.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.23.attn.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.23.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.23.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.23.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.23.ln_2.bias": "model-00003-of-00005.safetensors",
"transformer.h.23.ln_2.weight": "model-00003-of-00005.safetensors",
"transformer.h.23.mlp.c_fc.bias": "model-00003-of-00005.safetensors",
"transformer.h.23.mlp.c_fc.weight": "model-00003-of-00005.safetensors",
"transformer.h.23.mlp.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.23.mlp.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.24.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.24.attn.c_attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.24.attn.c_attn.weight": "model-00003-of-00005.safetensors",
"transformer.h.24.attn.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.24.attn.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.24.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.24.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.24.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.24.ln_2.bias": "model-00003-of-00005.safetensors",
"transformer.h.24.ln_2.weight": "model-00003-of-00005.safetensors",
"transformer.h.24.mlp.c_fc.bias": "model-00003-of-00005.safetensors",
"transformer.h.24.mlp.c_fc.weight": "model-00003-of-00005.safetensors",
"transformer.h.24.mlp.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.24.mlp.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.25.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.25.attn.c_attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.25.attn.c_attn.weight": "model-00003-of-00005.safetensors",
"transformer.h.25.attn.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.25.attn.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.25.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.25.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.25.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.25.ln_2.bias": "model-00003-of-00005.safetensors",
"transformer.h.25.ln_2.weight": "model-00003-of-00005.safetensors",
"transformer.h.25.mlp.c_fc.bias": "model-00003-of-00005.safetensors",
"transformer.h.25.mlp.c_fc.weight": "model-00003-of-00005.safetensors",
"transformer.h.25.mlp.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.25.mlp.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.26.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.26.attn.c_attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.26.attn.c_attn.weight": "model-00003-of-00005.safetensors",
"transformer.h.26.attn.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.26.attn.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.26.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.26.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.26.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.26.ln_2.bias": "model-00003-of-00005.safetensors",
"transformer.h.26.ln_2.weight": "model-00003-of-00005.safetensors",
"transformer.h.26.mlp.c_fc.bias": "model-00003-of-00005.safetensors",
"transformer.h.26.mlp.c_fc.weight": "model-00003-of-00005.safetensors",
"transformer.h.26.mlp.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.26.mlp.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.27.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.27.attn.c_attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.27.attn.c_attn.weight": "model-00003-of-00005.safetensors",
"transformer.h.27.attn.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.27.attn.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.27.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.27.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.27.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.27.ln_2.bias": "model-00003-of-00005.safetensors",
"transformer.h.27.ln_2.weight": "model-00003-of-00005.safetensors",
"transformer.h.27.mlp.c_fc.bias": "model-00003-of-00005.safetensors",
"transformer.h.27.mlp.c_fc.weight": "model-00003-of-00005.safetensors",
"transformer.h.27.mlp.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.27.mlp.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.28.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.28.attn.c_attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.28.attn.c_attn.weight": "model-00003-of-00005.safetensors",
"transformer.h.28.attn.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.28.attn.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.28.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.28.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.28.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.28.ln_2.bias": "model-00003-of-00005.safetensors",
"transformer.h.28.ln_2.weight": "model-00003-of-00005.safetensors",
"transformer.h.28.mlp.c_fc.bias": "model-00003-of-00005.safetensors",
"transformer.h.28.mlp.c_fc.weight": "model-00003-of-00005.safetensors",
"transformer.h.28.mlp.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.28.mlp.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.29.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.29.attn.c_attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.29.attn.c_attn.weight": "model-00003-of-00005.safetensors",
"transformer.h.29.attn.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.29.attn.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.29.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.29.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.29.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.29.ln_2.bias": "model-00003-of-00005.safetensors",
"transformer.h.29.ln_2.weight": "model-00003-of-00005.safetensors",
"transformer.h.29.mlp.c_fc.bias": "model-00003-of-00005.safetensors",
"transformer.h.29.mlp.c_fc.weight": "model-00003-of-00005.safetensors",
"transformer.h.29.mlp.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.29.mlp.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.3.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.3.attn.c_attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.3.attn.c_attn.weight": "model-00001-of-00005.safetensors",
"transformer.h.3.attn.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.3.attn.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.3.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.3.ln_1.bias": "model-00001-of-00005.safetensors",
"transformer.h.3.ln_1.weight": "model-00001-of-00005.safetensors",
"transformer.h.3.ln_2.bias": "model-00001-of-00005.safetensors",
"transformer.h.3.ln_2.weight": "model-00001-of-00005.safetensors",
"transformer.h.3.mlp.c_fc.bias": "model-00001-of-00005.safetensors",
"transformer.h.3.mlp.c_fc.weight": "model-00001-of-00005.safetensors",
"transformer.h.3.mlp.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.3.mlp.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.30.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.30.attn.c_attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.30.attn.c_attn.weight": "model-00003-of-00005.safetensors",
"transformer.h.30.attn.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.30.attn.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.30.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.30.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.30.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.30.ln_2.bias": "model-00003-of-00005.safetensors",
"transformer.h.30.ln_2.weight": "model-00003-of-00005.safetensors",
"transformer.h.30.mlp.c_fc.bias": "model-00003-of-00005.safetensors",
"transformer.h.30.mlp.c_fc.weight": "model-00003-of-00005.safetensors",
"transformer.h.30.mlp.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.30.mlp.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.31.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.31.attn.c_attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.31.attn.c_attn.weight": "model-00003-of-00005.safetensors",
"transformer.h.31.attn.c_proj.bias": "model-00003-of-00005.safetensors",
"transformer.h.31.attn.c_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.31.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.31.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.31.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.31.ln_2.bias": "model-00003-of-00005.safetensors",
"transformer.h.31.ln_2.weight": "model-00003-of-00005.safetensors",
"transformer.h.31.mlp.c_fc.bias": "model-00004-of-00005.safetensors",
"transformer.h.31.mlp.c_fc.weight": "model-00004-of-00005.safetensors",
"transformer.h.31.mlp.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.31.mlp.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.32.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.32.attn.c_attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.32.attn.c_attn.weight": "model-00004-of-00005.safetensors",
"transformer.h.32.attn.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.32.attn.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.32.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.32.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.32.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.32.ln_2.bias": "model-00004-of-00005.safetensors",
"transformer.h.32.ln_2.weight": "model-00004-of-00005.safetensors",
"transformer.h.32.mlp.c_fc.bias": "model-00004-of-00005.safetensors",
"transformer.h.32.mlp.c_fc.weight": "model-00004-of-00005.safetensors",
"transformer.h.32.mlp.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.32.mlp.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.33.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.33.attn.c_attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.33.attn.c_attn.weight": "model-00004-of-00005.safetensors",
"transformer.h.33.attn.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.33.attn.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.33.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.33.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.33.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.33.ln_2.bias": "model-00004-of-00005.safetensors",
"transformer.h.33.ln_2.weight": "model-00004-of-00005.safetensors",
"transformer.h.33.mlp.c_fc.bias": "model-00004-of-00005.safetensors",
"transformer.h.33.mlp.c_fc.weight": "model-00004-of-00005.safetensors",
"transformer.h.33.mlp.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.33.mlp.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.34.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.34.attn.c_attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.34.attn.c_attn.weight": "model-00004-of-00005.safetensors",
"transformer.h.34.attn.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.34.attn.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.34.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.34.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.34.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.34.ln_2.bias": "model-00004-of-00005.safetensors",
"transformer.h.34.ln_2.weight": "model-00004-of-00005.safetensors",
"transformer.h.34.mlp.c_fc.bias": "model-00004-of-00005.safetensors",
"transformer.h.34.mlp.c_fc.weight": "model-00004-of-00005.safetensors",
"transformer.h.34.mlp.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.34.mlp.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.35.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.35.attn.c_attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.35.attn.c_attn.weight": "model-00004-of-00005.safetensors",
"transformer.h.35.attn.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.35.attn.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.35.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.35.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.35.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.35.ln_2.bias": "model-00004-of-00005.safetensors",
"transformer.h.35.ln_2.weight": "model-00004-of-00005.safetensors",
"transformer.h.35.mlp.c_fc.bias": "model-00004-of-00005.safetensors",
"transformer.h.35.mlp.c_fc.weight": "model-00004-of-00005.safetensors",
"transformer.h.35.mlp.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.35.mlp.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.36.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.36.attn.c_attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.36.attn.c_attn.weight": "model-00004-of-00005.safetensors",
"transformer.h.36.attn.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.36.attn.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.36.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.36.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.36.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.36.ln_2.bias": "model-00004-of-00005.safetensors",
"transformer.h.36.ln_2.weight": "model-00004-of-00005.safetensors",
"transformer.h.36.mlp.c_fc.bias": "model-00004-of-00005.safetensors",
"transformer.h.36.mlp.c_fc.weight": "model-00004-of-00005.safetensors",
"transformer.h.36.mlp.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.36.mlp.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.37.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.37.attn.c_attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.37.attn.c_attn.weight": "model-00004-of-00005.safetensors",
"transformer.h.37.attn.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.37.attn.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.37.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.37.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.37.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.37.ln_2.bias": "model-00004-of-00005.safetensors",
"transformer.h.37.ln_2.weight": "model-00004-of-00005.safetensors",
"transformer.h.37.mlp.c_fc.bias": "model-00004-of-00005.safetensors",
"transformer.h.37.mlp.c_fc.weight": "model-00004-of-00005.safetensors",
"transformer.h.37.mlp.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.37.mlp.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.38.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.38.attn.c_attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.38.attn.c_attn.weight": "model-00004-of-00005.safetensors",
"transformer.h.38.attn.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.38.attn.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.38.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.38.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.38.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.38.ln_2.bias": "model-00004-of-00005.safetensors",
"transformer.h.38.ln_2.weight": "model-00004-of-00005.safetensors",
"transformer.h.38.mlp.c_fc.bias": "model-00004-of-00005.safetensors",
"transformer.h.38.mlp.c_fc.weight": "model-00004-of-00005.safetensors",
"transformer.h.38.mlp.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.38.mlp.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.39.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.39.attn.c_attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.39.attn.c_attn.weight": "model-00004-of-00005.safetensors",
"transformer.h.39.attn.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.39.attn.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.39.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.39.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.39.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.39.ln_2.bias": "model-00004-of-00005.safetensors",
"transformer.h.39.ln_2.weight": "model-00004-of-00005.safetensors",
"transformer.h.39.mlp.c_fc.bias": "model-00004-of-00005.safetensors",
"transformer.h.39.mlp.c_fc.weight": "model-00004-of-00005.safetensors",
"transformer.h.39.mlp.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.39.mlp.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.4.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.4.attn.c_attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.4.attn.c_attn.weight": "model-00001-of-00005.safetensors",
"transformer.h.4.attn.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.4.attn.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.4.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.4.ln_1.bias": "model-00001-of-00005.safetensors",
"transformer.h.4.ln_1.weight": "model-00001-of-00005.safetensors",
"transformer.h.4.ln_2.bias": "model-00001-of-00005.safetensors",
"transformer.h.4.ln_2.weight": "model-00001-of-00005.safetensors",
"transformer.h.4.mlp.c_fc.bias": "model-00001-of-00005.safetensors",
"transformer.h.4.mlp.c_fc.weight": "model-00001-of-00005.safetensors",
"transformer.h.4.mlp.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.4.mlp.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.40.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.40.attn.c_attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.40.attn.c_attn.weight": "model-00004-of-00005.safetensors",
"transformer.h.40.attn.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.40.attn.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.40.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.40.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.40.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.40.ln_2.bias": "model-00004-of-00005.safetensors",
"transformer.h.40.ln_2.weight": "model-00004-of-00005.safetensors",
"transformer.h.40.mlp.c_fc.bias": "model-00004-of-00005.safetensors",
"transformer.h.40.mlp.c_fc.weight": "model-00004-of-00005.safetensors",
"transformer.h.40.mlp.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.40.mlp.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.41.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.41.attn.c_attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.41.attn.c_attn.weight": "model-00004-of-00005.safetensors",
"transformer.h.41.attn.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.41.attn.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.41.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.41.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.41.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.41.ln_2.bias": "model-00004-of-00005.safetensors",
"transformer.h.41.ln_2.weight": "model-00004-of-00005.safetensors",
"transformer.h.41.mlp.c_fc.bias": "model-00004-of-00005.safetensors",
"transformer.h.41.mlp.c_fc.weight": "model-00004-of-00005.safetensors",
"transformer.h.41.mlp.c_proj.bias": "model-00004-of-00005.safetensors",
"transformer.h.41.mlp.c_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.42.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.42.attn.c_attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.42.attn.c_attn.weight": "model-00004-of-00005.safetensors",
"transformer.h.42.attn.c_proj.bias": "model-00005-of-00005.safetensors",
"transformer.h.42.attn.c_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.42.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.42.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.42.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.42.ln_2.bias": "model-00005-of-00005.safetensors",
"transformer.h.42.ln_2.weight": "model-00005-of-00005.safetensors",
"transformer.h.42.mlp.c_fc.bias": "model-00005-of-00005.safetensors",
"transformer.h.42.mlp.c_fc.weight": "model-00005-of-00005.safetensors",
"transformer.h.42.mlp.c_proj.bias": "model-00005-of-00005.safetensors",
"transformer.h.42.mlp.c_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.43.attn.bias": "model-00005-of-00005.safetensors",
"transformer.h.43.attn.c_attn.bias": "model-00005-of-00005.safetensors",
"transformer.h.43.attn.c_attn.weight": "model-00005-of-00005.safetensors",
"transformer.h.43.attn.c_proj.bias": "model-00005-of-00005.safetensors",
"transformer.h.43.attn.c_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.43.attn.masked_bias": "model-00005-of-00005.safetensors",
"transformer.h.43.ln_1.bias": "model-00005-of-00005.safetensors",
"transformer.h.43.ln_1.weight": "model-00005-of-00005.safetensors",
"transformer.h.43.ln_2.bias": "model-00005-of-00005.safetensors",
"transformer.h.43.ln_2.weight": "model-00005-of-00005.safetensors",
"transformer.h.43.mlp.c_fc.bias": "model-00005-of-00005.safetensors",
"transformer.h.43.mlp.c_fc.weight": "model-00005-of-00005.safetensors",
"transformer.h.43.mlp.c_proj.bias": "model-00005-of-00005.safetensors",
"transformer.h.43.mlp.c_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.5.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.5.attn.c_attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.5.attn.c_attn.weight": "model-00001-of-00005.safetensors",
"transformer.h.5.attn.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.5.attn.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.5.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.5.ln_1.bias": "model-00001-of-00005.safetensors",
"transformer.h.5.ln_1.weight": "model-00001-of-00005.safetensors",
"transformer.h.5.ln_2.bias": "model-00001-of-00005.safetensors",
"transformer.h.5.ln_2.weight": "model-00001-of-00005.safetensors",
"transformer.h.5.mlp.c_fc.bias": "model-00001-of-00005.safetensors",
"transformer.h.5.mlp.c_fc.weight": "model-00001-of-00005.safetensors",
"transformer.h.5.mlp.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.5.mlp.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.6.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.6.attn.c_attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.6.attn.c_attn.weight": "model-00001-of-00005.safetensors",
"transformer.h.6.attn.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.6.attn.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.6.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.6.ln_1.bias": "model-00001-of-00005.safetensors",
"transformer.h.6.ln_1.weight": "model-00001-of-00005.safetensors",
"transformer.h.6.ln_2.bias": "model-00001-of-00005.safetensors",
"transformer.h.6.ln_2.weight": "model-00001-of-00005.safetensors",
"transformer.h.6.mlp.c_fc.bias": "model-00001-of-00005.safetensors",
"transformer.h.6.mlp.c_fc.weight": "model-00001-of-00005.safetensors",
"transformer.h.6.mlp.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.6.mlp.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.7.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.7.attn.c_attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.7.attn.c_attn.weight": "model-00001-of-00005.safetensors",
"transformer.h.7.attn.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.7.attn.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.7.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.7.ln_1.bias": "model-00001-of-00005.safetensors",
"transformer.h.7.ln_1.weight": "model-00001-of-00005.safetensors",
"transformer.h.7.ln_2.bias": "model-00001-of-00005.safetensors",
"transformer.h.7.ln_2.weight": "model-00001-of-00005.safetensors",
"transformer.h.7.mlp.c_fc.bias": "model-00001-of-00005.safetensors",
"transformer.h.7.mlp.c_fc.weight": "model-00001-of-00005.safetensors",
"transformer.h.7.mlp.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.7.mlp.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.8.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.8.attn.c_attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.8.attn.c_attn.weight": "model-00001-of-00005.safetensors",
"transformer.h.8.attn.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.8.attn.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.8.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.8.ln_1.bias": "model-00001-of-00005.safetensors",
"transformer.h.8.ln_1.weight": "model-00001-of-00005.safetensors",
"transformer.h.8.ln_2.bias": "model-00001-of-00005.safetensors",
"transformer.h.8.ln_2.weight": "model-00001-of-00005.safetensors",
"transformer.h.8.mlp.c_fc.bias": "model-00001-of-00005.safetensors",
"transformer.h.8.mlp.c_fc.weight": "model-00001-of-00005.safetensors",
"transformer.h.8.mlp.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.8.mlp.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.9.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.9.attn.c_attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.9.attn.c_attn.weight": "model-00001-of-00005.safetensors",
"transformer.h.9.attn.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.9.attn.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.9.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.9.ln_1.bias": "model-00001-of-00005.safetensors",
"transformer.h.9.ln_1.weight": "model-00001-of-00005.safetensors",
"transformer.h.9.ln_2.bias": "model-00001-of-00005.safetensors",
"transformer.h.9.ln_2.weight": "model-00001-of-00005.safetensors",
"transformer.h.9.mlp.c_fc.bias": "model-00001-of-00005.safetensors",
"transformer.h.9.mlp.c_fc.weight": "model-00001-of-00005.safetensors",
"transformer.h.9.mlp.c_proj.bias": "model-00001-of-00005.safetensors",
"transformer.h.9.mlp.c_proj.weight": "model-00001-of-00005.safetensors",
"transformer.ln_f.bias": "model-00005-of-00005.safetensors",
"transformer.ln_f.weight": "model-00005-of-00005.safetensors",
"transformer.wpe.weight": "model-00001-of-00005.safetensors",
"transformer.wte.weight": "model-00001-of-00005.safetensors"
}
}

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5ca5ead6219aec9de6f9998a02d96a0255a5ddb124e30bad96aed3759f84a38c
size 9796367749

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3e0a268a5649a7bb92f21277b38b5394f7e18e206dfc591dc7e649d6c65eac02
size 9749334187

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1738929b9c9619c1d46052e325f8e097ec0f44c2d71d3958e6e6954b3e2ed27c
size 9757711879

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f027d0036aa4638596266872f61b64aba4d001a2491e7ffcf0d7297b014f99c7
size 9984215989

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4a122fd074db804adc8a424367b02b1db77ecfefefcc29a02b9096c641e48540
size 2211684561

View File

@@ -0,0 +1,628 @@
{
"metadata": {
"total_size": 41499099224
},
"weight_map": {
"lm_head.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.0.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.attn.c_attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.attn.c_attn.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.attn.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.attn.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.ln_1.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.ln_1.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.ln_2.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.ln_2.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.mlp.c_fc.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.mlp.c_fc.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.mlp.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.mlp.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.attn.c_attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.attn.c_attn.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.attn.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.attn.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.ln_1.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.ln_1.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.ln_2.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.ln_2.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.mlp.c_fc.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.mlp.c_fc.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.mlp.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.mlp.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.10.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.10.attn.c_attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.attn.c_attn.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.attn.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.attn.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.10.ln_1.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.10.ln_1.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.10.ln_2.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.ln_2.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.mlp.c_fc.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.mlp.c_fc.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.mlp.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.mlp.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.attn.c_attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.attn.c_attn.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.attn.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.attn.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.ln_2.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.ln_2.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.mlp.c_fc.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.mlp.c_fc.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.mlp.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.mlp.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.12.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.12.attn.c_attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.12.attn.c_attn.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.12.attn.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.12.attn.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.12.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.12.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.12.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.12.ln_2.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.12.ln_2.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.12.mlp.c_fc.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.12.mlp.c_fc.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.12.mlp.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.12.mlp.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.13.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.13.attn.c_attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.13.attn.c_attn.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.13.attn.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.13.attn.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.13.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.13.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.13.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.13.ln_2.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.13.ln_2.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.13.mlp.c_fc.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.13.mlp.c_fc.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.13.mlp.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.13.mlp.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.14.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.14.attn.c_attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.14.attn.c_attn.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.14.attn.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.14.attn.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.14.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.14.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.14.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.14.ln_2.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.14.ln_2.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.14.mlp.c_fc.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.14.mlp.c_fc.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.14.mlp.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.14.mlp.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.15.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.15.attn.c_attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.15.attn.c_attn.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.15.attn.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.15.attn.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.15.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.15.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.15.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.15.ln_2.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.15.ln_2.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.15.mlp.c_fc.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.15.mlp.c_fc.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.15.mlp.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.15.mlp.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.16.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.16.attn.c_attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.16.attn.c_attn.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.16.attn.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.16.attn.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.16.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.16.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.16.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.16.ln_2.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.16.ln_2.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.16.mlp.c_fc.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.16.mlp.c_fc.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.16.mlp.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.16.mlp.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.17.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.17.attn.c_attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.17.attn.c_attn.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.17.attn.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.17.attn.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.17.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.17.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.17.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.17.ln_2.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.17.ln_2.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.17.mlp.c_fc.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.17.mlp.c_fc.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.17.mlp.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.17.mlp.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.18.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.18.attn.c_attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.18.attn.c_attn.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.18.attn.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.18.attn.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.18.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.18.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.18.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.18.ln_2.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.18.ln_2.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.18.mlp.c_fc.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.18.mlp.c_fc.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.18.mlp.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.18.mlp.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.19.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.19.attn.c_attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.19.attn.c_attn.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.19.attn.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.19.attn.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.19.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.19.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.19.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.19.ln_2.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.19.ln_2.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.19.mlp.c_fc.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.19.mlp.c_fc.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.19.mlp.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.19.mlp.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.2.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.attn.c_attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.attn.c_attn.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.attn.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.attn.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.ln_1.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.ln_1.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.ln_2.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.ln_2.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.mlp.c_fc.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.mlp.c_fc.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.mlp.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.mlp.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.20.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.20.attn.c_attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.20.attn.c_attn.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.20.attn.c_proj.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.20.attn.c_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.20.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.20.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.20.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.20.ln_2.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.20.ln_2.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.20.mlp.c_fc.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.20.mlp.c_fc.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.20.mlp.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.20.mlp.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.21.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.21.attn.c_attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.21.attn.c_attn.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.21.attn.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.21.attn.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.21.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.21.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.21.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.21.ln_2.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.21.ln_2.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.21.mlp.c_fc.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.21.mlp.c_fc.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.21.mlp.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.21.mlp.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.22.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.22.attn.c_attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.22.attn.c_attn.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.22.attn.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.22.attn.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.22.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.22.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.22.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.22.ln_2.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.22.ln_2.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.22.mlp.c_fc.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.22.mlp.c_fc.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.22.mlp.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.22.mlp.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.23.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.23.attn.c_attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.23.attn.c_attn.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.23.attn.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.23.attn.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.23.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.23.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.23.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.23.ln_2.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.23.ln_2.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.23.mlp.c_fc.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.23.mlp.c_fc.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.23.mlp.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.23.mlp.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.24.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.24.attn.c_attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.24.attn.c_attn.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.24.attn.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.24.attn.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.24.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.24.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.24.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.24.ln_2.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.24.ln_2.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.24.mlp.c_fc.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.24.mlp.c_fc.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.24.mlp.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.24.mlp.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.25.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.25.attn.c_attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.25.attn.c_attn.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.25.attn.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.25.attn.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.25.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.25.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.25.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.25.ln_2.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.25.ln_2.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.25.mlp.c_fc.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.25.mlp.c_fc.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.25.mlp.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.25.mlp.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.26.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.26.attn.c_attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.26.attn.c_attn.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.26.attn.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.26.attn.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.26.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.26.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.26.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.26.ln_2.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.26.ln_2.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.26.mlp.c_fc.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.26.mlp.c_fc.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.26.mlp.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.26.mlp.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.27.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.27.attn.c_attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.27.attn.c_attn.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.27.attn.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.27.attn.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.27.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.27.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.27.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.27.ln_2.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.27.ln_2.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.27.mlp.c_fc.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.27.mlp.c_fc.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.27.mlp.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.27.mlp.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.28.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.28.attn.c_attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.28.attn.c_attn.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.28.attn.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.28.attn.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.28.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.28.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.28.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.28.ln_2.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.28.ln_2.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.28.mlp.c_fc.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.28.mlp.c_fc.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.28.mlp.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.28.mlp.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.29.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.29.attn.c_attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.29.attn.c_attn.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.29.attn.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.29.attn.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.29.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.29.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.29.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.29.ln_2.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.29.ln_2.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.29.mlp.c_fc.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.29.mlp.c_fc.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.29.mlp.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.29.mlp.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.3.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.attn.c_attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.attn.c_attn.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.attn.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.attn.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.ln_1.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.ln_1.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.ln_2.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.ln_2.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.mlp.c_fc.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.mlp.c_fc.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.mlp.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.mlp.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.30.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.30.attn.c_attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.30.attn.c_attn.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.30.attn.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.30.attn.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.30.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.30.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.30.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.30.ln_2.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.30.ln_2.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.30.mlp.c_fc.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.30.mlp.c_fc.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.30.mlp.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.30.mlp.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.31.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.31.attn.c_attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.31.attn.c_attn.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.31.attn.c_proj.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.31.attn.c_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.31.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.31.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.31.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.31.ln_2.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.31.ln_2.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.31.mlp.c_fc.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.31.mlp.c_fc.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.31.mlp.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.31.mlp.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.32.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.32.attn.c_attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.32.attn.c_attn.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.32.attn.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.32.attn.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.32.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.32.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.32.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.32.ln_2.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.32.ln_2.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.32.mlp.c_fc.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.32.mlp.c_fc.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.32.mlp.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.32.mlp.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.33.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.33.attn.c_attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.33.attn.c_attn.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.33.attn.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.33.attn.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.33.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.33.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.33.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.33.ln_2.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.33.ln_2.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.33.mlp.c_fc.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.33.mlp.c_fc.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.33.mlp.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.33.mlp.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.34.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.34.attn.c_attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.34.attn.c_attn.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.34.attn.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.34.attn.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.34.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.34.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.34.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.34.ln_2.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.34.ln_2.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.34.mlp.c_fc.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.34.mlp.c_fc.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.34.mlp.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.34.mlp.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.35.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.35.attn.c_attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.35.attn.c_attn.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.35.attn.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.35.attn.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.35.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.35.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.35.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.35.ln_2.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.35.ln_2.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.35.mlp.c_fc.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.35.mlp.c_fc.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.35.mlp.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.35.mlp.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.36.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.36.attn.c_attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.36.attn.c_attn.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.36.attn.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.36.attn.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.36.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.36.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.36.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.36.ln_2.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.36.ln_2.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.36.mlp.c_fc.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.36.mlp.c_fc.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.36.mlp.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.36.mlp.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.37.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.37.attn.c_attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.37.attn.c_attn.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.37.attn.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.37.attn.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.37.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.37.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.37.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.37.ln_2.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.37.ln_2.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.37.mlp.c_fc.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.37.mlp.c_fc.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.37.mlp.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.37.mlp.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.38.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.38.attn.c_attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.38.attn.c_attn.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.38.attn.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.38.attn.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.38.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.38.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.38.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.38.ln_2.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.38.ln_2.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.38.mlp.c_fc.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.38.mlp.c_fc.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.38.mlp.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.38.mlp.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.39.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.39.attn.c_attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.39.attn.c_attn.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.39.attn.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.39.attn.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.39.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.39.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.39.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.39.ln_2.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.39.ln_2.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.39.mlp.c_fc.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.39.mlp.c_fc.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.39.mlp.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.39.mlp.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.4.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.attn.c_attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.attn.c_attn.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.attn.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.attn.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.ln_1.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.ln_1.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.ln_2.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.ln_2.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.mlp.c_fc.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.mlp.c_fc.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.mlp.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.mlp.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.40.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.40.attn.c_attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.40.attn.c_attn.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.40.attn.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.40.attn.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.40.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.40.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.40.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.40.ln_2.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.40.ln_2.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.40.mlp.c_fc.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.40.mlp.c_fc.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.40.mlp.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.40.mlp.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.41.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.41.attn.c_attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.41.attn.c_attn.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.41.attn.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.41.attn.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.41.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.41.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.41.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.41.ln_2.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.41.ln_2.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.41.mlp.c_fc.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.41.mlp.c_fc.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.41.mlp.c_proj.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.41.mlp.c_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.42.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.42.attn.c_attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.42.attn.c_attn.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.42.attn.c_proj.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.42.attn.c_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.42.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.42.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.42.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.42.ln_2.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.42.ln_2.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.42.mlp.c_fc.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.42.mlp.c_fc.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.42.mlp.c_proj.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.42.mlp.c_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.43.attn.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.43.attn.c_attn.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.43.attn.c_attn.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.43.attn.c_proj.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.43.attn.c_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.43.attn.masked_bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.43.ln_1.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.43.ln_1.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.43.ln_2.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.43.ln_2.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.43.mlp.c_fc.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.43.mlp.c_fc.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.43.mlp.c_proj.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.43.mlp.c_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.5.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.attn.c_attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.attn.c_attn.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.attn.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.attn.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.ln_1.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.ln_1.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.ln_2.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.ln_2.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.mlp.c_fc.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.mlp.c_fc.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.mlp.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.mlp.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.6.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.6.attn.c_attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.6.attn.c_attn.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.6.attn.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.6.attn.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.6.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.6.ln_1.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.6.ln_1.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.6.ln_2.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.6.ln_2.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.6.mlp.c_fc.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.6.mlp.c_fc.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.6.mlp.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.6.mlp.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.7.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.7.attn.c_attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.7.attn.c_attn.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.7.attn.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.7.attn.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.7.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.7.ln_1.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.7.ln_1.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.7.ln_2.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.7.ln_2.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.7.mlp.c_fc.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.7.mlp.c_fc.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.7.mlp.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.7.mlp.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.8.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.8.attn.c_attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.8.attn.c_attn.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.8.attn.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.8.attn.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.8.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.8.ln_1.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.8.ln_1.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.8.ln_2.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.8.ln_2.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.8.mlp.c_fc.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.8.mlp.c_fc.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.8.mlp.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.8.mlp.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.9.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.9.attn.c_attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.9.attn.c_attn.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.9.attn.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.9.attn.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.9.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.9.ln_1.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.9.ln_1.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.9.ln_2.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.9.ln_2.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.9.mlp.c_fc.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.9.mlp.c_fc.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.9.mlp.c_proj.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.9.mlp.c_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.ln_f.bias": "pytorch_model-00005-of-00005.bin",
"transformer.ln_f.weight": "pytorch_model-00005-of-00005.bin",
"transformer.wpe.weight": "pytorch_model-00001-of-00005.bin",
"transformer.wte.weight": "pytorch_model-00001-of-00005.bin"
}
}

5
special_tokens_map.json Normal file
View File

@@ -0,0 +1,5 @@
{
"bos_token": "<|endoftext|>",
"eos_token": "<|endoftext|>",
"unk_token": "<|endoftext|>"
}

100304
tokenizer.json Normal file

File diff suppressed because it is too large Load Diff

10
tokenizer_config.json Normal file
View File

@@ -0,0 +1,10 @@
{
"add_prefix_space": false,
"bos_token": "<|endoftext|>",
"eos_token": "<|endoftext|>",
"model_max_length": 1024,
"name_or_path": "gpt2",
"special_tokens_map_file": null,
"tokenizer_class": "GPT2Tokenizer",
"unk_token": "<|endoftext|>"
}

1
vocab.json Normal file

File diff suppressed because one or more lines are too long