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

Model: HuggingFaceH4/starchat-alpha
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-05-11 15:06:33 +08:00
commit b72fb3d1ab
33 changed files with 148721 additions and 0 deletions

42
.gitattributes vendored Normal file
View File

@@ -0,0 +1,42 @@
*.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
model-00001-of-00004.safetensors filter=lfs diff=lfs merge=lfs -text
model-00002-of-00004.safetensors filter=lfs diff=lfs merge=lfs -text
model-00003-of-00004.safetensors filter=lfs diff=lfs merge=lfs -text
model-00004-of-00004.safetensors filter=lfs diff=lfs merge=lfs -text
pytorch_model-00001-of-00004.bin filter=lfs diff=lfs merge=lfs -text
pytorch_model-00002-of-00004.bin filter=lfs diff=lfs merge=lfs -text
pytorch_model-00003-of-00004.bin filter=lfs diff=lfs merge=lfs -text
pytorch_model-00004-of-00004.bin filter=lfs diff=lfs merge=lfs -text

95
README.md Normal file
View File

@@ -0,0 +1,95 @@
---
license: bigcode-openrail-m
datasets:
- OpenAssistant/oasst1
- databricks/databricks-dolly-15k
language:
- en
library_name: transformers
tags:
- code
---
# Model Card for StarChat Alpha
<!-- Provide a quick summary of what the model is/does. -->
_Note, you may be interested in the Beta version of StarChat [here](https://huggingface.co/HuggingFaceH4/starchat-beta)._
StarChat is a series of language models that are fine-tuned from StarCoder to act as helpful coding assistants. StarChat Alpha is the first of these models, and as an alpha release is only intended for educational or research purpopses. In particular, the model has not been aligned to human preferences with techniques like RLHF, so may generate problematic content (especially when prompted to do so).
## Model Details
### Model Description
<!-- Provide a longer summary of what this model is. -->
- **Model type:** A 16B parameter GPT-like model fine-tuned on a blend of the [`oasst1`](https://huggingface.co/datasets/OpenAssistant/oasst1) and [`databricks-dolly-15k`](https://huggingface.co/datasets/databricks/databricks-dolly-15k) datasets.
- **Language(s) (NLP):** English
- **License:** BigCode Open RAIL-M v1
- **Finetuned from model:** [bigcode/starcoderbase](https://huggingface.co/bigcode/starcoderbase)
### Model Sources [optional]
<!-- Provide the basic links for the model. -->
- **Repository:** https://github.com/bigcode-project/starcoder
- **Demo:** https://huggingface.co/spaces/HuggingFaceH4/starchat-playground
## Uses
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
StarChat Alpha is intended for educational and/or research purposes and in that respect can be used to probe the programming capabilities of open-source language models.
## Bias, Risks, and Limitations
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
StarChat Alpha has not been aligned to human preferences with techniques like RLHF or deployed with in-the-loop filtering of responses like ChatGPT, so the model can produce problematic outputs (especially when prompted to do so).
Models trained primarily on code data will also have a more skewed demographic bias commensurate with the demographics of the GitHub community, for more on this see the [StarCoder dataset](https://huggingface.co/datasets/bigcode/starcoderdata) which is derived from The Stack.
Since the base model was pretrained on a large corpus of code, it may produce code snippets that are syntactically valid but semantically incorrect.
For example, it may produce code that does not compile or that produces incorrect results.
It may also produce code that is vulnerable to security exploits.
We have observed the model also has a tendency to produce false URLs which should be carefully inspected before clicking.
StarChat Alpha was fine-tuned from the base model [StarCoder Base](https://huggingface.co/bigcode/starcoderbase), please refer to its model card's [Limitations Section](https://huggingface.co/bigcode/starcoderbase#limitations) for relevant information.
In particular, the model was evaluated on some categories of gender biases, propensity for toxicity, and risk of suggesting code completions with known security flaws; these evaluations are reported in its [technical report](https://drive.google.com/file/d/1cN-b9GnWtHzQRoE7M7gAEyivY0kl4BYs/view).
## How to Get Started with the Model
Use the code below to get started with the model.
Here's how you can run the model using the `pipeline()` function from 🤗 Transformers:
```python
import torch
from transformers import pipeline
pipe = pipeline("text-generation", model="HuggingFaceH4/starchat-alpha", torch_dtype=torch.bfloat16, device_map="auto")
prompt_template = "<|system|>\n<|end|>\n<|user|>\n{query}<|end|>\n<|assistant|>"
prompt = prompt_template.format(query="How do I sort a list in Python?")
# We use a special <|end|> token with ID 49155 to denote ends of a turn
outputs = pipe(prompt, max_new_tokens=256, do_sample=True, temperature=0.2, top_k=50, top_p=0.95, eos_token_id=49155)
# You can sort a list in Python by using the sort() method. Here's an example:\n\n```\nnumbers = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5]\nnumbers.sort()\nprint(numbers)\n```\n\nThis will sort the list in place and print the sorted list.
```
## Citation
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
**BibTeX:**
```
@article{Tunstall2023starchat-alpha,
author = {Tunstall, Lewis and Lambert, Nathan and Rajani, Nazneen and Beeching, Edward and Le Scao, Teven and von Werra, Leandro and Han, Sheon and Schmid, Philipp and Rush, Alexander},
title = {Creating a Coding Assistant with StarCoder},
journal = {Hugging Face Blog},
year = {2023},
note = {https://huggingface.co/blog/starchat},
}
```

63
TRAINER_README.md Normal file
View File

@@ -0,0 +1,63 @@
---
tags:
- generated_from_trainer
model-index:
- name: starcoder-ift
results: []
---
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->
# starcoder-ift
This model is a fine-tuned version of [bigcode/large-model](https://huggingface.co/bigcode/large-model) on the None dataset.
It achieves the following results on the evaluation set:
- Loss: 1.4943
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 2e-05
- train_batch_size: 2
- eval_batch_size: 2
- seed: 42
- distributed_type: multi-GPU
- num_devices: 8
- gradient_accumulation_steps: 8
- total_train_batch_size: 128
- total_eval_batch_size: 16
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: cosine
- lr_scheduler_warmup_ratio: 0.03
- num_epochs: 3
### Training results
| Training Loss | Epoch | Step | Validation Loss |
|:-------------:|:-----:|:----:|:---------------:|
| 1.6668 | 0.99 | 65 | 1.6167 |
| 1.3584 | 2.0 | 131 | 1.5126 |
| 1.0949 | 2.98 | 195 | 1.4943 |
### Framework versions
- Transformers 4.28.1
- Pytorch 1.13.1+cu117
- Datasets 2.12.0
- Tokenizers 0.13.3

6
added_tokens.json Normal file
View File

@@ -0,0 +1,6 @@
{
"<|assistant|>": 49154,
"<|end|>": 49155,
"<|system|>": 49152,
"<|user|>": 49153
}

14
all_results.json Normal file
View File

@@ -0,0 +1,14 @@
{
"epoch": 2.98,
"eval_loss": 1.4942539930343628,
"eval_runtime": 22.3723,
"eval_samples": 879,
"eval_samples_per_second": 39.29,
"eval_steps_per_second": 2.458,
"perplexity": 4.456011097278015,
"train_loss": 1.4244933299529248,
"train_runtime": 3089.4842,
"train_samples": 8372,
"train_samples_per_second": 8.13,
"train_steps_per_second": 0.063
}

39
config.json Normal file
View File

@@ -0,0 +1,39 @@
{
"_name_or_path": "/fsx/h4/checkpoints/starchat",
"activation_function": "gelu",
"architectures": [
"GPTBigCodeForCausalLM"
],
"attention_softmax_in_fp32": true,
"attn_pdrop": 0.1,
"bos_token_id": 0,
"embd_pdrop": 0.1,
"eos_token_id": 0,
"inference_runner": 0,
"initializer_range": 0.02,
"layer_norm_epsilon": 1e-05,
"max_batch_size": null,
"max_sequence_length": null,
"model_type": "gpt_bigcode",
"multi_query": true,
"n_embd": 6144,
"n_head": 48,
"n_inner": 24576,
"n_layer": 40,
"n_positions": 8192,
"pad_key_length": true,
"pre_allocate_kv_cache": false,
"resid_pdrop": 0.1,
"scale_attention_softmax_in_fp32": true,
"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": "float16",
"transformers_version": "4.28.1",
"use_cache": true,
"validate_runner_input": true,
"vocab_size": 49156
}

1
configuration.json Normal file
View File

@@ -0,0 +1 @@
{"framework": "pytorch", "task": "text-generation", "allow_remote": true}

8
dialogue_template.json Normal file
View File

@@ -0,0 +1,8 @@
{
"system": "",
"messages": null,
"system_token": "<|system|>",
"user_token": "<|user|>",
"assistant_token": "<|assistant|>",
"end_token": "<|end|>"
}

9
eval_results.json Normal file
View File

@@ -0,0 +1,9 @@
{
"epoch": 2.98,
"eval_loss": 1.4942539930343628,
"eval_runtime": 22.3723,
"eval_samples": 879,
"eval_samples_per_second": 39.29,
"eval_steps_per_second": 2.458,
"perplexity": 4.456011097278015
}

6
generation_config.json Normal file
View File

@@ -0,0 +1,6 @@
{
"_from_model_config": true,
"bos_token_id": 0,
"eos_token_id": 0,
"transformers_version": "4.28.1"
}

51
handler.py Normal file
View File

@@ -0,0 +1,51 @@
from typing import Any, Dict
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftConfig, PeftModel
class EndpointHandler:
def __init__(self, path=""):
# load model and processor from path
self.tokenizer = AutoTokenizer.from_pretrained(path)
try:
config = PeftConfig.from_pretrained(path)
model = AutoModelForCausalLM.from_pretrained(
config.base_model_name_or_path,
return_dict=True,
load_in_8bit=True,
device_map="auto",
torch_dtype=torch.float16,
)
model.resize_token_embeddings(len(self.tokenizer))
model = PeftModel.from_pretrained(model, path)
except Exception:
model = AutoModelForCausalLM.from_pretrained(
path,
device_map="auto",
load_in_8bit=True,
torch_dtype=torch.float16,
)
self.model = model
self.device = "cuda" if torch.cuda.is_available() else "cpu"
def __call__(self, data: Dict[str, Any]) -> Dict[str, str]:
# process input
inputs = data.pop("inputs", data)
parameters = data.pop("parameters", None)
# preprocess
inputs = self.tokenizer(inputs, return_tensors="pt").to(self.device)
# pass inputs with all kwargs in data
if parameters is not None:
outputs = self.model.generate(**inputs, **parameters)
else:
outputs = self.model.generate(**inputs)
# postprocess the prediction
prediction = self.tokenizer.decode(outputs[0], skip_special_tokens=True)
return [{"generated_text": prediction}]

48892
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:566fe0b19d76fa6bbb734712f785aa1b65dc2a81236d7e1ec44e03a3e5458d5a
size 9957996824

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

5
requirements.txt Normal file
View File

@@ -0,0 +1,5 @@
transformers==4.28.1
accelerate>=0.16.0
bitsandbytes
sentencepiece
git+https://github.com/huggingface/peft.git@632997d1fb776c3cf05d8c2537ac9a98a7ce9435

View File

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

View File

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

View File

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

11
special_tokens_map.json Normal file
View File

@@ -0,0 +1,11 @@
{
"additional_special_tokens": [
"<|system|>",
"<|user|>",
"<|assistant|>",
"<|end|>"
],
"bos_token": "<|endoftext|>",
"eos_token": "<|endoftext|>",
"unk_token": "<|endoftext|>"
}

98293
tokenizer.json Normal file

File diff suppressed because it is too large Load Diff

31
tokenizer_config.json Normal file
View File

@@ -0,0 +1,31 @@
{
"add_prefix_space": false,
"additional_special_tokens": [
"<|endoftext|>",
"<fim_prefix>",
"<fim_middle>",
"<fim_suffix>",
"<fim_pad>",
"<filename>",
"<gh_stars>",
"<issue_start>",
"<issue_comment>",
"<issue_closed>",
"<jupyter_start>",
"<jupyter_text>",
"<jupyter_code>",
"<jupyter_output>",
"<empty_output>",
"<commit_before>",
"<commit_msg>",
"<commit_after>",
"<reponame>"
],
"bos_token": "<|endoftext|>",
"clean_up_tokenization_spaces": true,
"eos_token": "<|endoftext|>",
"model_max_length": 1000000000000000019884624838656,
"tokenizer_class": "GPT2Tokenizer",
"unk_token": "<|endoftext|>",
"vocab_size": 49152
}

8
train_results.json Normal file
View File

@@ -0,0 +1,8 @@
{
"epoch": 2.98,
"train_loss": 1.4244933299529248,
"train_runtime": 3089.4842,
"train_samples": 8372,
"train_samples_per_second": 8.13,
"train_steps_per_second": 0.063
}

127
trainer_state.json Normal file
View File

@@ -0,0 +1,127 @@
{
"best_metric": null,
"best_model_checkpoint": null,
"epoch": 2.9770992366412212,
"global_step": 195,
"is_hyper_param_search": false,
"is_local_process_zero": true,
"is_world_process_zero": true,
"log_history": [
{
"epoch": 0.02,
"learning_rate": 0.0,
"loss": 2.2517,
"step": 1
},
{
"epoch": 0.24,
"learning_rate": 2e-05,
"loss": 1.9184,
"step": 16
},
{
"epoch": 0.49,
"learning_rate": 2e-05,
"loss": 1.7725,
"step": 32
},
{
"epoch": 0.73,
"learning_rate": 2e-05,
"loss": 1.7075,
"step": 48
},
{
"epoch": 0.98,
"learning_rate": 2e-05,
"loss": 1.6668,
"step": 64
},
{
"epoch": 0.99,
"eval_loss": 1.6166764497756958,
"eval_runtime": 22.5473,
"eval_samples_per_second": 38.985,
"eval_steps_per_second": 2.439,
"step": 65
},
{
"epoch": 1.22,
"learning_rate": 2e-05,
"loss": 1.4567,
"step": 80
},
{
"epoch": 1.47,
"learning_rate": 2e-05,
"loss": 1.4109,
"step": 96
},
{
"epoch": 1.71,
"learning_rate": 2e-05,
"loss": 1.3875,
"step": 112
},
{
"epoch": 1.95,
"learning_rate": 2e-05,
"loss": 1.3584,
"step": 128
},
{
"epoch": 2.0,
"eval_loss": 1.512587547302246,
"eval_runtime": 22.5311,
"eval_samples_per_second": 39.013,
"eval_steps_per_second": 2.441,
"step": 131
},
{
"epoch": 2.2,
"learning_rate": 2e-05,
"loss": 1.1651,
"step": 144
},
{
"epoch": 2.44,
"learning_rate": 2e-05,
"loss": 1.1092,
"step": 160
},
{
"epoch": 2.69,
"learning_rate": 2e-05,
"loss": 1.0948,
"step": 176
},
{
"epoch": 2.93,
"learning_rate": 2e-05,
"loss": 1.0949,
"step": 192
},
{
"epoch": 2.98,
"eval_loss": 1.4942539930343628,
"eval_runtime": 22.489,
"eval_samples_per_second": 39.086,
"eval_steps_per_second": 2.446,
"step": 195
},
{
"epoch": 2.98,
"step": 195,
"total_flos": 417490551177216.0,
"train_loss": 1.4244933299529248,
"train_runtime": 3089.4842,
"train_samples_per_second": 8.13,
"train_steps_per_second": 0.063
}
],
"max_steps": 195,
"num_train_epochs": 3,
"total_flos": 417490551177216.0,
"trial_name": null,
"trial_params": null
}

3
training_args.bin Normal file
View File

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

1
vocab.json Normal file

File diff suppressed because one or more lines are too long