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

Model: bertin-project/bertin-gpt-j-6B-alpaca
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-07-26 21:14:12 +08:00
commit 05688ccec8
24 changed files with 152787 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

181
README.md Normal file
View File

@@ -0,0 +1,181 @@
---
license: openrail
datasets:
- bertin-project/alpaca-spanish
library_name: transformers
language:
- es
pipeline_tag: text-generation
tags:
- alpaca
- ggml
widget:
- text: >-
A continuación hay una instrucción que describe una tarea. Escribe una
respuesta que complete adecuadamente lo que se pide.
### Instrucción: Escribe un correo electrónico dando la bienvenida a un
nuevo empleado llamado Manolo.
### Respuesta:
example_title: E-mail
- text: >-
A continuación hay una instrucción que describe una tarea. Escribe una
respuesta que complete adecuadamente lo que se pide.
### Instrucción: Cuéntame algo sobre las alpacas.
### Respuesta:
example_title: Alpacas
- text: >-
A continuación hay una instrucción que describe una tarea. Escribe una
respuesta que complete adecuadamente lo que se pide.
### Instrucción: Inventa una excusa creativa para decir que no tengo que ir
a la fiesta.
### Respuesta:
example_title: Excusa
---
# BERTIN-GPT-J-6B Alpaca
This is a [BERTIN GPT-J-6B](https://huggingface.co/bertin-project/bertin-gpt-j-6B) Spanish model fine-tuned on the [Spanish Alpaca](https://huggingface.co/datasets/bertin-project/alpaca-spanish) dataset.
## Usage
```python
from transformers import AutoModelForCausalLM, AutoTokenizer, GenerationConfig, pipeline
base_model = "bertin-project/bertin-gpt-j-6B-alpaca"
tokenizer = AutoTokenizer.from_pretrained(base_model)
model = AutoModelForCausalLM.from_pretrained(base_model).cuda()
```
For generation, we can either use `pipeline()` or the model's `.generate()` method. Remember that the prompt needs a **Spanish** template:
```python
# Generate responses
def generate(instruction, input=None):
if input:
prompt = f"""A continuación hay una instrucción que describe una tarea, junto con una entrada que proporciona más contexto. Escribe una respuesta que complete adecuadamente lo que se pide.
### Instrucción:
{instruction}
### Entrada:
{input}
### Respuesta:"""
else:
prompt = f""""A continuación hay una instrucción que describe una tarea. Escribe una respuesta que complete adecuadamente lo que se pide.
### Instrucción:
{instruction}
### Respuesta:
"""
inputs = tokenizer(prompt, return_tensors="pt")
input_ids = inputs["input_ids"].cuda()
generation_output = model.generate(
input_ids=input_ids,
generation_config=GenerationConfig(temperature=0.2, top_p=0.75, num_beams=4),
return_dict_in_generate=True,
output_scores=True,
max_new_tokens=256
)
for seq in generation_output.sequences:
output = tokenizer.decode(seq, skip_special_tokens=True)
print(output.split("### Respuesta:")[-1].strip())
generate("Escribe un correo electrónico dando la bienvenida a un nuevo empleado llamado Manolo.")
# Estimado Manolo,
#
# ¡Bienvenido a tu nuevo trabajo como Representante de Servicio al Cliente en nuestra empresa! Estamos emocionados de tenerte a bordo y esperamos que tengas un gran año trabajando con nosotros.
#
# En nombre de todos en esta empresa, queremos darte la bienvenida al equipo y desearte lo mejor en tus nuevas funciones.
#
# ¡Estamos ansiosos por escuchar tus historias y ayudarte a tener éxito en tu nuevo rol!
#
# Sinceramente,
# El equipo de Servicio al Cliente
```
## Data
The dataset is a translation to Spanish of [alpaca_data_cleaned.json](https://github.com/tloen/alpaca-lora/blob/main/alpaca_data_cleaned.json) (a clean version of the [Alpaca dataset made at Stanford](https://huggingface.co/datasets/tatsu-lab/alpaca)) using OpenAI's `gpt-3.5-turbo` model. We translated using a full-sample prompt instead of per strings, which resulted in more coherent tuples of `(instruction, input, output)` and costed around $60.0.
**This dataset cannot be used to create models that compete in any way with OpenAI.**
## Finetuning
To fine-tune the BERTIN GPT-J-6B model we used the code available on [BERTIN's fork of `mesh-transformer-jax`](https://github.com/bertin-project/mesh-transformer-jax/blob/master/prepare_dataset_alpaca.py), which provides code adapt an Alpaca dataset to finetune any GPT-J-6B model. We run finetuning for 3 epochs using sequence length of 2048 on a single TPUv3-8 for 3 hours on top of BERTIN GPT-J-6B.
## Example outputs
Stanford Alpaca:
```
Instruction: Inventa una excusa creativa para decir que no tengo que ir a la fiesta.
Response: I'm sorry, I can't make it to the party. I have to stay home and take care of my sick pet.
```
BERTIN Alpaca LoRA:
```
Instruction: Inventa una excusa creativa para decir que no tengo que ir a la fiesta.
Response: No puedo ir a la fiesta porque tengo que terminar un proyecto urgente.
```
BERTIN GPT-J-6B Alpaca:
```
Instruction: Inventa una excusa creativa para decir que no tengo que ir a la fiesta.
Response: Lo siento, pero tengo una cita inesperada a la que necesito asistir.
```
Stanford Alpaca:
```
Instruction: ¿Cómo puedo comenzar una carrera como científico de datos? Responde con una lista de pasos a seguir.
Response: To begin a career as a data scientist, there are a few steps to take. First, you should have a bachelor's degree in a STEM-related field, such as computer science, mathematics, statistics, or engineering. You should also have experience with programming languages such as Python, R, or Java. Additionally, it is helpful to have knowledge of machine learning, data visualization, and data analytics. Finally, it is important to stay up to date with the latest trends and technologies in the field.
```
BERTIN Alpaca LoRA:
```
Instruction: ¿Cómo puedo comenzar una carrera como científico de datos? Responde con una lista de pasos a seguir.
Response: Para comenzar una carrera como científico de datos, hay varios pasos a seguir. Primero, obtener una licenciatura en matemáticas, informática o ciencias de la computación. Luego, obtener una maestría o doctorado en ciencias de la computación, informática o alguna otra área relacionada. Finalmente, obtener experiencia en el campo trabajando en proyectos de investigación o desarrollando aplicaciones.
```
BERTIN GPT-J-6B Alpaca:
```
Instruction: ¿Cómo puedo comenzar una carrera como científico de datos? Responde con una lista de pasos a seguir.
Response: Comenzar una carrera como científico de datos requiere una sólida formación en matemáticas, estadística e informática. También es importante tener experiencia en análisis de datos, aprendizaje automático y visualización de datos. Para prepararse para una carrera como científico de datos, considere tomar cursos en estadística, aprendizaje automático, visualización de datos y otros temas relevantes. Además, asegúrese de obtener experiencia práctica trabajando en proyectos de análisis de datos o tomando roles de aprendiz de científico de datos.
```
You can test it using the eval notebook [here](https://colab.research.google.com/github/22-hours/cabrita/blob/main/notebooks/cabrita-lora.ipynb).
## References
- [LLaMA](https://ai.facebook.com/blog/large-language-model-llama-meta-ai/)
- [Stanford Alpaca](https://github.com/tatsu-lab/stanford_alpaca)
- [BERTIN Alpaca](https://huggingface.co/datasets/bertin-project/alpaca-spanish)
- [ChatGPT](https://openai.com/blog/chatgpt)
- [Hugging Face](https://huggingface.co/)
## Hardware Requirements
For training we have used a Google Cloud TPUv3-8 VM. For eval, you can use a T4.
# [Open LLM Leaderboard Evaluation Results](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)
Detailed results can be found [here](https://huggingface.co/datasets/open-llm-leaderboard/details_bertin-project__bertin-gpt-j-6B-alpaca)
| Metric | Value |
|-----------------------|---------------------------|
| Avg. | 32.11 |
| ARC (25-shot) | 36.01 |
| HellaSwag (10-shot) | 54.3 |
| MMLU (5-shot) | 27.66 |
| TruthfulQA (0-shot) | 43.38 |
| Winogrande (5-shot) | 55.8 |
| GSM8K (5-shot) | 0.0 |
| DROP (3-shot) | 7.59 |

145
added_tokens.json Normal file
View File

@@ -0,0 +1,145 @@
{
"<|extratoken_100|>": 50356,
"<|extratoken_101|>": 50357,
"<|extratoken_102|>": 50358,
"<|extratoken_103|>": 50359,
"<|extratoken_104|>": 50360,
"<|extratoken_105|>": 50361,
"<|extratoken_106|>": 50362,
"<|extratoken_107|>": 50363,
"<|extratoken_108|>": 50364,
"<|extratoken_109|>": 50365,
"<|extratoken_10|>": 50266,
"<|extratoken_110|>": 50366,
"<|extratoken_111|>": 50367,
"<|extratoken_112|>": 50368,
"<|extratoken_113|>": 50369,
"<|extratoken_114|>": 50370,
"<|extratoken_115|>": 50371,
"<|extratoken_116|>": 50372,
"<|extratoken_117|>": 50373,
"<|extratoken_118|>": 50374,
"<|extratoken_119|>": 50375,
"<|extratoken_11|>": 50267,
"<|extratoken_120|>": 50376,
"<|extratoken_121|>": 50377,
"<|extratoken_122|>": 50378,
"<|extratoken_123|>": 50379,
"<|extratoken_124|>": 50380,
"<|extratoken_125|>": 50381,
"<|extratoken_126|>": 50382,
"<|extratoken_127|>": 50383,
"<|extratoken_128|>": 50384,
"<|extratoken_129|>": 50385,
"<|extratoken_12|>": 50268,
"<|extratoken_130|>": 50386,
"<|extratoken_131|>": 50387,
"<|extratoken_132|>": 50388,
"<|extratoken_133|>": 50389,
"<|extratoken_134|>": 50390,
"<|extratoken_135|>": 50391,
"<|extratoken_136|>": 50392,
"<|extratoken_137|>": 50393,
"<|extratoken_138|>": 50394,
"<|extratoken_139|>": 50395,
"<|extratoken_13|>": 50269,
"<|extratoken_140|>": 50396,
"<|extratoken_141|>": 50397,
"<|extratoken_142|>": 50398,
"<|extratoken_143|>": 50399,
"<|extratoken_14|>": 50270,
"<|extratoken_15|>": 50271,
"<|extratoken_16|>": 50272,
"<|extratoken_17|>": 50273,
"<|extratoken_18|>": 50274,
"<|extratoken_19|>": 50275,
"<|extratoken_1|>": 50257,
"<|extratoken_20|>": 50276,
"<|extratoken_21|>": 50277,
"<|extratoken_22|>": 50278,
"<|extratoken_23|>": 50279,
"<|extratoken_24|>": 50280,
"<|extratoken_25|>": 50281,
"<|extratoken_26|>": 50282,
"<|extratoken_27|>": 50283,
"<|extratoken_28|>": 50284,
"<|extratoken_29|>": 50285,
"<|extratoken_2|>": 50258,
"<|extratoken_30|>": 50286,
"<|extratoken_31|>": 50287,
"<|extratoken_32|>": 50288,
"<|extratoken_33|>": 50289,
"<|extratoken_34|>": 50290,
"<|extratoken_35|>": 50291,
"<|extratoken_36|>": 50292,
"<|extratoken_37|>": 50293,
"<|extratoken_38|>": 50294,
"<|extratoken_39|>": 50295,
"<|extratoken_3|>": 50259,
"<|extratoken_40|>": 50296,
"<|extratoken_41|>": 50297,
"<|extratoken_42|>": 50298,
"<|extratoken_43|>": 50299,
"<|extratoken_44|>": 50300,
"<|extratoken_45|>": 50301,
"<|extratoken_46|>": 50302,
"<|extratoken_47|>": 50303,
"<|extratoken_48|>": 50304,
"<|extratoken_49|>": 50305,
"<|extratoken_4|>": 50260,
"<|extratoken_50|>": 50306,
"<|extratoken_51|>": 50307,
"<|extratoken_52|>": 50308,
"<|extratoken_53|>": 50309,
"<|extratoken_54|>": 50310,
"<|extratoken_55|>": 50311,
"<|extratoken_56|>": 50312,
"<|extratoken_57|>": 50313,
"<|extratoken_58|>": 50314,
"<|extratoken_59|>": 50315,
"<|extratoken_5|>": 50261,
"<|extratoken_60|>": 50316,
"<|extratoken_61|>": 50317,
"<|extratoken_62|>": 50318,
"<|extratoken_63|>": 50319,
"<|extratoken_64|>": 50320,
"<|extratoken_65|>": 50321,
"<|extratoken_66|>": 50322,
"<|extratoken_67|>": 50323,
"<|extratoken_68|>": 50324,
"<|extratoken_69|>": 50325,
"<|extratoken_6|>": 50262,
"<|extratoken_70|>": 50326,
"<|extratoken_71|>": 50327,
"<|extratoken_72|>": 50328,
"<|extratoken_73|>": 50329,
"<|extratoken_74|>": 50330,
"<|extratoken_75|>": 50331,
"<|extratoken_76|>": 50332,
"<|extratoken_77|>": 50333,
"<|extratoken_78|>": 50334,
"<|extratoken_79|>": 50335,
"<|extratoken_7|>": 50263,
"<|extratoken_80|>": 50336,
"<|extratoken_81|>": 50337,
"<|extratoken_82|>": 50338,
"<|extratoken_83|>": 50339,
"<|extratoken_84|>": 50340,
"<|extratoken_85|>": 50341,
"<|extratoken_86|>": 50342,
"<|extratoken_87|>": 50343,
"<|extratoken_88|>": 50344,
"<|extratoken_89|>": 50345,
"<|extratoken_8|>": 50264,
"<|extratoken_90|>": 50346,
"<|extratoken_91|>": 50347,
"<|extratoken_92|>": 50348,
"<|extratoken_93|>": 50349,
"<|extratoken_94|>": 50350,
"<|extratoken_95|>": 50351,
"<|extratoken_96|>": 50352,
"<|extratoken_97|>": 50353,
"<|extratoken_98|>": 50354,
"<|extratoken_99|>": 50355,
"<|extratoken_9|>": 50265
}

40
config.json Normal file
View File

@@ -0,0 +1,40 @@
{
"_name_or_path": "./",
"activation_function": "gelu_new",
"architectures": [
"GPTJForCausalLM"
],
"attn_pdrop": 0.0,
"bos_token_id": 50256,
"embd_pdrop": 0.0,
"eos_token_id": 50256,
"gradient_checkpointing": false,
"initializer_range": 0.02,
"layer_norm_epsilon": 1e-05,
"model_type": "gptj",
"n_embd": 4096,
"n_head": 16,
"n_inner": null,
"n_layer": 28,
"n_positions": 2048,
"resid_pdrop": 0.0,
"rotary_dim": 64,
"summary_activation": null,
"summary_first_dropout": 0.1,
"summary_proj_to_labels": true,
"summary_type": "cls_index",
"summary_use_proj": true,
"task_specific_params": {
"text-generation": {
"do_sample": true,
"max_length": 50,
"temperature": 1.0
}
},
"tie_word_embeddings": false,
"tokenizer_class": "GPT2Tokenizer",
"torch_dtype": "float32",
"transformers_version": "4.27.3",
"use_cache": true,
"vocab_size": 50400
}

6
generation_config.json Normal file
View File

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

3
ggml-model-f16.bin Normal file
View File

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

3
ggml-model-f32.bin Normal file
View File

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

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:fe6ceed454eb7f371f77c3bc135c22791f8618ba7f81ee159d837baa5a8c4689
size 5012282400

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,348 @@
{
"metadata": {
"total_size": 24218211312.0
},
"weight_map": {
"lm_head.bias": "model-00005-of-00005.safetensors",
"lm_head.weight": "model-00005-of-00005.safetensors",
"transformer.h.0.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.0.attn.k_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.0.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.0.attn.out_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.0.attn.q_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.0.attn.v_proj.weight": "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.mlp.fc_in.bias": "model-00001-of-00005.safetensors",
"transformer.h.0.mlp.fc_in.weight": "model-00001-of-00005.safetensors",
"transformer.h.0.mlp.fc_out.bias": "model-00001-of-00005.safetensors",
"transformer.h.0.mlp.fc_out.weight": "model-00001-of-00005.safetensors",
"transformer.h.1.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.1.attn.k_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.1.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.1.attn.out_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.1.attn.q_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.1.attn.v_proj.weight": "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.mlp.fc_in.bias": "model-00001-of-00005.safetensors",
"transformer.h.1.mlp.fc_in.weight": "model-00001-of-00005.safetensors",
"transformer.h.1.mlp.fc_out.bias": "model-00001-of-00005.safetensors",
"transformer.h.1.mlp.fc_out.weight": "model-00001-of-00005.safetensors",
"transformer.h.10.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.10.attn.k_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.10.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.10.attn.out_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.10.attn.q_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.10.attn.v_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.10.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.10.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.10.mlp.fc_in.bias": "model-00002-of-00005.safetensors",
"transformer.h.10.mlp.fc_in.weight": "model-00002-of-00005.safetensors",
"transformer.h.10.mlp.fc_out.bias": "model-00002-of-00005.safetensors",
"transformer.h.10.mlp.fc_out.weight": "model-00002-of-00005.safetensors",
"transformer.h.11.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.11.attn.k_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.11.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.11.attn.out_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.11.attn.q_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.11.attn.v_proj.weight": "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.mlp.fc_in.bias": "model-00003-of-00005.safetensors",
"transformer.h.11.mlp.fc_in.weight": "model-00003-of-00005.safetensors",
"transformer.h.11.mlp.fc_out.bias": "model-00003-of-00005.safetensors",
"transformer.h.11.mlp.fc_out.weight": "model-00003-of-00005.safetensors",
"transformer.h.12.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.12.attn.k_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.12.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.12.attn.out_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.12.attn.q_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.12.attn.v_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.12.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.12.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.12.mlp.fc_in.bias": "model-00003-of-00005.safetensors",
"transformer.h.12.mlp.fc_in.weight": "model-00003-of-00005.safetensors",
"transformer.h.12.mlp.fc_out.bias": "model-00003-of-00005.safetensors",
"transformer.h.12.mlp.fc_out.weight": "model-00003-of-00005.safetensors",
"transformer.h.13.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.13.attn.k_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.13.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.13.attn.out_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.13.attn.q_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.13.attn.v_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.13.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.13.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.13.mlp.fc_in.bias": "model-00003-of-00005.safetensors",
"transformer.h.13.mlp.fc_in.weight": "model-00003-of-00005.safetensors",
"transformer.h.13.mlp.fc_out.bias": "model-00003-of-00005.safetensors",
"transformer.h.13.mlp.fc_out.weight": "model-00003-of-00005.safetensors",
"transformer.h.14.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.14.attn.k_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.14.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.14.attn.out_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.14.attn.q_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.14.attn.v_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.14.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.14.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.14.mlp.fc_in.bias": "model-00003-of-00005.safetensors",
"transformer.h.14.mlp.fc_in.weight": "model-00003-of-00005.safetensors",
"transformer.h.14.mlp.fc_out.bias": "model-00003-of-00005.safetensors",
"transformer.h.14.mlp.fc_out.weight": "model-00003-of-00005.safetensors",
"transformer.h.15.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.15.attn.k_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.15.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.15.attn.out_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.15.attn.q_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.15.attn.v_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.15.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.15.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.15.mlp.fc_in.bias": "model-00003-of-00005.safetensors",
"transformer.h.15.mlp.fc_in.weight": "model-00003-of-00005.safetensors",
"transformer.h.15.mlp.fc_out.bias": "model-00003-of-00005.safetensors",
"transformer.h.15.mlp.fc_out.weight": "model-00003-of-00005.safetensors",
"transformer.h.16.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.16.attn.k_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.16.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.16.attn.out_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.16.attn.q_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.16.attn.v_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.16.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.16.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.16.mlp.fc_in.bias": "model-00003-of-00005.safetensors",
"transformer.h.16.mlp.fc_in.weight": "model-00003-of-00005.safetensors",
"transformer.h.16.mlp.fc_out.bias": "model-00003-of-00005.safetensors",
"transformer.h.16.mlp.fc_out.weight": "model-00003-of-00005.safetensors",
"transformer.h.17.attn.bias": "model-00003-of-00005.safetensors",
"transformer.h.17.attn.k_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.17.attn.masked_bias": "model-00003-of-00005.safetensors",
"transformer.h.17.attn.out_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.17.attn.q_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.17.attn.v_proj.weight": "model-00003-of-00005.safetensors",
"transformer.h.17.ln_1.bias": "model-00003-of-00005.safetensors",
"transformer.h.17.ln_1.weight": "model-00003-of-00005.safetensors",
"transformer.h.17.mlp.fc_in.bias": "model-00004-of-00005.safetensors",
"transformer.h.17.mlp.fc_in.weight": "model-00004-of-00005.safetensors",
"transformer.h.17.mlp.fc_out.bias": "model-00004-of-00005.safetensors",
"transformer.h.17.mlp.fc_out.weight": "model-00004-of-00005.safetensors",
"transformer.h.18.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.18.attn.k_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.18.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.18.attn.out_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.18.attn.q_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.18.attn.v_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.18.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.18.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.18.mlp.fc_in.bias": "model-00004-of-00005.safetensors",
"transformer.h.18.mlp.fc_in.weight": "model-00004-of-00005.safetensors",
"transformer.h.18.mlp.fc_out.bias": "model-00004-of-00005.safetensors",
"transformer.h.18.mlp.fc_out.weight": "model-00004-of-00005.safetensors",
"transformer.h.19.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.19.attn.k_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.19.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.19.attn.out_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.19.attn.q_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.19.attn.v_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.19.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.19.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.19.mlp.fc_in.bias": "model-00004-of-00005.safetensors",
"transformer.h.19.mlp.fc_in.weight": "model-00004-of-00005.safetensors",
"transformer.h.19.mlp.fc_out.bias": "model-00004-of-00005.safetensors",
"transformer.h.19.mlp.fc_out.weight": "model-00004-of-00005.safetensors",
"transformer.h.2.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.2.attn.k_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.2.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.2.attn.out_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.2.attn.q_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.2.attn.v_proj.weight": "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.mlp.fc_in.bias": "model-00001-of-00005.safetensors",
"transformer.h.2.mlp.fc_in.weight": "model-00001-of-00005.safetensors",
"transformer.h.2.mlp.fc_out.bias": "model-00001-of-00005.safetensors",
"transformer.h.2.mlp.fc_out.weight": "model-00001-of-00005.safetensors",
"transformer.h.20.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.20.attn.k_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.20.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.20.attn.out_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.20.attn.q_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.20.attn.v_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.20.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.20.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.20.mlp.fc_in.bias": "model-00004-of-00005.safetensors",
"transformer.h.20.mlp.fc_in.weight": "model-00004-of-00005.safetensors",
"transformer.h.20.mlp.fc_out.bias": "model-00004-of-00005.safetensors",
"transformer.h.20.mlp.fc_out.weight": "model-00004-of-00005.safetensors",
"transformer.h.21.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.21.attn.k_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.21.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.21.attn.out_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.21.attn.q_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.21.attn.v_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.21.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.21.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.21.mlp.fc_in.bias": "model-00004-of-00005.safetensors",
"transformer.h.21.mlp.fc_in.weight": "model-00004-of-00005.safetensors",
"transformer.h.21.mlp.fc_out.bias": "model-00004-of-00005.safetensors",
"transformer.h.21.mlp.fc_out.weight": "model-00004-of-00005.safetensors",
"transformer.h.22.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.22.attn.k_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.22.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.22.attn.out_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.22.attn.q_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.22.attn.v_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.22.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.22.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.22.mlp.fc_in.bias": "model-00004-of-00005.safetensors",
"transformer.h.22.mlp.fc_in.weight": "model-00004-of-00005.safetensors",
"transformer.h.22.mlp.fc_out.bias": "model-00004-of-00005.safetensors",
"transformer.h.22.mlp.fc_out.weight": "model-00004-of-00005.safetensors",
"transformer.h.23.attn.bias": "model-00004-of-00005.safetensors",
"transformer.h.23.attn.k_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.23.attn.masked_bias": "model-00004-of-00005.safetensors",
"transformer.h.23.attn.out_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.23.attn.q_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.23.attn.v_proj.weight": "model-00004-of-00005.safetensors",
"transformer.h.23.ln_1.bias": "model-00004-of-00005.safetensors",
"transformer.h.23.ln_1.weight": "model-00004-of-00005.safetensors",
"transformer.h.23.mlp.fc_in.bias": "model-00005-of-00005.safetensors",
"transformer.h.23.mlp.fc_in.weight": "model-00005-of-00005.safetensors",
"transformer.h.23.mlp.fc_out.bias": "model-00005-of-00005.safetensors",
"transformer.h.23.mlp.fc_out.weight": "model-00005-of-00005.safetensors",
"transformer.h.24.attn.bias": "model-00005-of-00005.safetensors",
"transformer.h.24.attn.k_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.24.attn.masked_bias": "model-00005-of-00005.safetensors",
"transformer.h.24.attn.out_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.24.attn.q_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.24.attn.v_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.24.ln_1.bias": "model-00005-of-00005.safetensors",
"transformer.h.24.ln_1.weight": "model-00005-of-00005.safetensors",
"transformer.h.24.mlp.fc_in.bias": "model-00005-of-00005.safetensors",
"transformer.h.24.mlp.fc_in.weight": "model-00005-of-00005.safetensors",
"transformer.h.24.mlp.fc_out.bias": "model-00005-of-00005.safetensors",
"transformer.h.24.mlp.fc_out.weight": "model-00005-of-00005.safetensors",
"transformer.h.25.attn.bias": "model-00005-of-00005.safetensors",
"transformer.h.25.attn.k_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.25.attn.masked_bias": "model-00005-of-00005.safetensors",
"transformer.h.25.attn.out_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.25.attn.q_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.25.attn.v_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.25.ln_1.bias": "model-00005-of-00005.safetensors",
"transformer.h.25.ln_1.weight": "model-00005-of-00005.safetensors",
"transformer.h.25.mlp.fc_in.bias": "model-00005-of-00005.safetensors",
"transformer.h.25.mlp.fc_in.weight": "model-00005-of-00005.safetensors",
"transformer.h.25.mlp.fc_out.bias": "model-00005-of-00005.safetensors",
"transformer.h.25.mlp.fc_out.weight": "model-00005-of-00005.safetensors",
"transformer.h.26.attn.bias": "model-00005-of-00005.safetensors",
"transformer.h.26.attn.k_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.26.attn.masked_bias": "model-00005-of-00005.safetensors",
"transformer.h.26.attn.out_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.26.attn.q_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.26.attn.v_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.26.ln_1.bias": "model-00005-of-00005.safetensors",
"transformer.h.26.ln_1.weight": "model-00005-of-00005.safetensors",
"transformer.h.26.mlp.fc_in.bias": "model-00005-of-00005.safetensors",
"transformer.h.26.mlp.fc_in.weight": "model-00005-of-00005.safetensors",
"transformer.h.26.mlp.fc_out.bias": "model-00005-of-00005.safetensors",
"transformer.h.26.mlp.fc_out.weight": "model-00005-of-00005.safetensors",
"transformer.h.27.attn.bias": "model-00005-of-00005.safetensors",
"transformer.h.27.attn.k_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.27.attn.masked_bias": "model-00005-of-00005.safetensors",
"transformer.h.27.attn.out_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.27.attn.q_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.27.attn.v_proj.weight": "model-00005-of-00005.safetensors",
"transformer.h.27.ln_1.bias": "model-00005-of-00005.safetensors",
"transformer.h.27.ln_1.weight": "model-00005-of-00005.safetensors",
"transformer.h.27.mlp.fc_in.bias": "model-00005-of-00005.safetensors",
"transformer.h.27.mlp.fc_in.weight": "model-00005-of-00005.safetensors",
"transformer.h.27.mlp.fc_out.bias": "model-00005-of-00005.safetensors",
"transformer.h.27.mlp.fc_out.weight": "model-00005-of-00005.safetensors",
"transformer.h.3.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.3.attn.k_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.3.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.3.attn.out_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.3.attn.q_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.3.attn.v_proj.weight": "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.mlp.fc_in.bias": "model-00001-of-00005.safetensors",
"transformer.h.3.mlp.fc_in.weight": "model-00001-of-00005.safetensors",
"transformer.h.3.mlp.fc_out.bias": "model-00001-of-00005.safetensors",
"transformer.h.3.mlp.fc_out.weight": "model-00001-of-00005.safetensors",
"transformer.h.4.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.4.attn.k_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.4.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.4.attn.out_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.4.attn.q_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.4.attn.v_proj.weight": "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.mlp.fc_in.bias": "model-00001-of-00005.safetensors",
"transformer.h.4.mlp.fc_in.weight": "model-00001-of-00005.safetensors",
"transformer.h.4.mlp.fc_out.bias": "model-00001-of-00005.safetensors",
"transformer.h.4.mlp.fc_out.weight": "model-00001-of-00005.safetensors",
"transformer.h.5.attn.bias": "model-00001-of-00005.safetensors",
"transformer.h.5.attn.k_proj.weight": "model-00001-of-00005.safetensors",
"transformer.h.5.attn.masked_bias": "model-00001-of-00005.safetensors",
"transformer.h.5.attn.out_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.5.attn.q_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.5.attn.v_proj.weight": "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.mlp.fc_in.bias": "model-00002-of-00005.safetensors",
"transformer.h.5.mlp.fc_in.weight": "model-00002-of-00005.safetensors",
"transformer.h.5.mlp.fc_out.bias": "model-00002-of-00005.safetensors",
"transformer.h.5.mlp.fc_out.weight": "model-00002-of-00005.safetensors",
"transformer.h.6.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.6.attn.k_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.6.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.6.attn.out_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.6.attn.q_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.6.attn.v_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.6.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.6.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.6.mlp.fc_in.bias": "model-00002-of-00005.safetensors",
"transformer.h.6.mlp.fc_in.weight": "model-00002-of-00005.safetensors",
"transformer.h.6.mlp.fc_out.bias": "model-00002-of-00005.safetensors",
"transformer.h.6.mlp.fc_out.weight": "model-00002-of-00005.safetensors",
"transformer.h.7.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.7.attn.k_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.7.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.7.attn.out_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.7.attn.q_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.7.attn.v_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.7.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.7.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.7.mlp.fc_in.bias": "model-00002-of-00005.safetensors",
"transformer.h.7.mlp.fc_in.weight": "model-00002-of-00005.safetensors",
"transformer.h.7.mlp.fc_out.bias": "model-00002-of-00005.safetensors",
"transformer.h.7.mlp.fc_out.weight": "model-00002-of-00005.safetensors",
"transformer.h.8.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.8.attn.k_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.8.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.8.attn.out_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.8.attn.q_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.8.attn.v_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.8.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.8.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.8.mlp.fc_in.bias": "model-00002-of-00005.safetensors",
"transformer.h.8.mlp.fc_in.weight": "model-00002-of-00005.safetensors",
"transformer.h.8.mlp.fc_out.bias": "model-00002-of-00005.safetensors",
"transformer.h.8.mlp.fc_out.weight": "model-00002-of-00005.safetensors",
"transformer.h.9.attn.bias": "model-00002-of-00005.safetensors",
"transformer.h.9.attn.k_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.9.attn.masked_bias": "model-00002-of-00005.safetensors",
"transformer.h.9.attn.out_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.9.attn.q_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.9.attn.v_proj.weight": "model-00002-of-00005.safetensors",
"transformer.h.9.ln_1.bias": "model-00002-of-00005.safetensors",
"transformer.h.9.ln_1.weight": "model-00002-of-00005.safetensors",
"transformer.h.9.mlp.fc_in.bias": "model-00002-of-00005.safetensors",
"transformer.h.9.mlp.fc_in.weight": "model-00002-of-00005.safetensors",
"transformer.h.9.mlp.fc_out.bias": "model-00002-of-00005.safetensors",
"transformer.h.9.mlp.fc_out.weight": "model-00002-of-00005.safetensors",
"transformer.ln_f.bias": "model-00005-of-00005.safetensors",
"transformer.ln_f.weight": "model-00005-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:1b14a8d228bd76d313a6de2b58861cc76d8aedd6f5e31615a43c19a8140330d7
size 5012297245

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,348 @@
{
"metadata": {
"total_size": 24218211312.0
},
"weight_map": {
"lm_head.bias": "pytorch_model-00005-of-00005.bin",
"lm_head.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.0.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.attn.v_proj.weight": "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.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.0.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.attn.v_proj.weight": "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.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.1.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.10.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.10.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.11.attn.v_proj.weight": "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.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.11.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.11.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.11.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.12.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.12.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.12.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.12.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.12.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.12.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.12.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.12.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.12.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.12.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.12.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.12.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.13.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.13.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.13.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.13.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.13.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.13.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.13.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.13.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.13.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.13.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.13.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.13.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.14.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.14.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.14.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.14.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.14.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.14.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.14.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.14.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.14.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.14.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.14.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.14.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.15.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.15.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.15.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.15.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.15.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.15.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.15.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.15.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.15.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.15.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.15.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.15.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.16.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.16.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.16.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.16.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.16.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.16.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.16.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.16.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.16.mlp.fc_in.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.16.mlp.fc_in.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.16.mlp.fc_out.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.16.mlp.fc_out.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.17.attn.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.17.attn.k_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.17.attn.masked_bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.17.attn.out_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.17.attn.q_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.17.attn.v_proj.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.17.ln_1.bias": "pytorch_model-00003-of-00005.bin",
"transformer.h.17.ln_1.weight": "pytorch_model-00003-of-00005.bin",
"transformer.h.17.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.17.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.17.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.17.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.18.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.18.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.18.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.18.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.18.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.18.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.18.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.18.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.18.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.18.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.18.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.18.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.19.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.19.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.19.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.19.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.19.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.19.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.19.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.19.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.19.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.19.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.19.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.19.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.2.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.attn.v_proj.weight": "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.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.2.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.20.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.20.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.20.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.20.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.20.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.20.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.20.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.20.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.20.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.20.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.20.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.20.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.21.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.21.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.21.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.21.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.21.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.21.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.21.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.21.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.21.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.21.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.21.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.21.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.22.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.22.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.22.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.22.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.22.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.22.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.22.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.22.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.22.mlp.fc_in.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.22.mlp.fc_in.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.22.mlp.fc_out.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.22.mlp.fc_out.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.23.attn.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.23.attn.k_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.23.attn.masked_bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.23.attn.out_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.23.attn.q_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.23.attn.v_proj.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.23.ln_1.bias": "pytorch_model-00004-of-00005.bin",
"transformer.h.23.ln_1.weight": "pytorch_model-00004-of-00005.bin",
"transformer.h.23.mlp.fc_in.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.23.mlp.fc_in.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.23.mlp.fc_out.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.23.mlp.fc_out.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.24.attn.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.24.attn.k_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.24.attn.masked_bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.24.attn.out_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.24.attn.q_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.24.attn.v_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.24.ln_1.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.24.ln_1.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.24.mlp.fc_in.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.24.mlp.fc_in.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.24.mlp.fc_out.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.24.mlp.fc_out.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.25.attn.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.25.attn.k_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.25.attn.masked_bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.25.attn.out_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.25.attn.q_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.25.attn.v_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.25.ln_1.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.25.ln_1.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.25.mlp.fc_in.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.25.mlp.fc_in.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.25.mlp.fc_out.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.25.mlp.fc_out.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.26.attn.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.26.attn.k_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.26.attn.masked_bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.26.attn.out_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.26.attn.q_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.26.attn.v_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.26.ln_1.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.26.ln_1.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.26.mlp.fc_in.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.26.mlp.fc_in.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.26.mlp.fc_out.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.26.mlp.fc_out.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.27.attn.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.27.attn.k_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.27.attn.masked_bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.27.attn.out_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.27.attn.q_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.27.attn.v_proj.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.27.ln_1.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.27.ln_1.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.27.mlp.fc_in.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.27.mlp.fc_in.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.27.mlp.fc_out.bias": "pytorch_model-00005-of-00005.bin",
"transformer.h.27.mlp.fc_out.weight": "pytorch_model-00005-of-00005.bin",
"transformer.h.3.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.attn.v_proj.weight": "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.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.3.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.attn.out_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.attn.q_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.attn.v_proj.weight": "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.mlp.fc_in.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.mlp.fc_in.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.mlp.fc_out.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.4.mlp.fc_out.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.attn.bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.attn.k_proj.weight": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.attn.masked_bias": "pytorch_model-00001-of-00005.bin",
"transformer.h.5.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.5.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.5.attn.v_proj.weight": "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.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.5.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.5.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.5.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.6.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.6.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.6.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.6.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.6.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.6.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.6.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.6.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.6.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.6.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.6.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.6.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.7.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.7.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.7.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.7.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.7.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.7.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.7.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.7.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.7.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.7.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.7.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.7.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.8.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.8.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.8.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.8.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.8.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.8.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.8.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.8.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.8.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.8.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.8.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.8.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.9.attn.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.9.attn.k_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.9.attn.masked_bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.9.attn.out_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.9.attn.q_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.9.attn.v_proj.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.9.ln_1.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.9.ln_1.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.9.mlp.fc_in.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.9.mlp.fc_in.weight": "pytorch_model-00002-of-00005.bin",
"transformer.h.9.mlp.fc_out.bias": "pytorch_model-00002-of-00005.bin",
"transformer.h.9.mlp.fc_out.weight": "pytorch_model-00002-of-00005.bin",
"transformer.ln_f.bias": "pytorch_model-00005-of-00005.bin",
"transformer.ln_f.weight": "pytorch_model-00005-of-00005.bin",
"transformer.wte.weight": "pytorch_model-00001-of-00005.bin"
}
}

23
special_tokens_map.json Normal file
View File

@@ -0,0 +1,23 @@
{
"bos_token": {
"content": "<|endoftext|>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
},
"eos_token": {
"content": "<|endoftext|>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
},
"unk_token": {
"content": "<|endoftext|>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
}
}

101591
tokenizer.json Normal file

File diff suppressed because it is too large Load Diff

33
tokenizer_config.json Normal file
View File

@@ -0,0 +1,33 @@
{
"add_bos_token": false,
"add_prefix_space": false,
"bos_token": {
"__type": "AddedToken",
"content": "<|endoftext|>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
},
"eos_token": {
"__type": "AddedToken",
"content": "<|endoftext|>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
},
"errors": "replace",
"model_max_length": 2048,
"pad_token": null,
"special_tokens_map_file": null,
"tokenizer_class": "GPT2Tokenizer",
"unk_token": {
"__type": "AddedToken",
"content": "<|endoftext|>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
}
}

1
vocab.json Normal file

File diff suppressed because one or more lines are too long