初始化项目,由ModelHub XC社区提供模型
Model: GeorgiaTechResearchInstitute/galactica-6.7b-evol-instruct-70k Source: Original Platform
This commit is contained in:
34
.gitattributes
vendored
Normal file
34
.gitattributes
vendored
Normal 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
|
||||||
151
README.md
Normal file
151
README.md
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
---
|
||||||
|
license: cc-by-nc-4.0
|
||||||
|
datasets:
|
||||||
|
- victor123/evol_instruct_70k
|
||||||
|
library_name: transformers
|
||||||
|
pipeline_tag: text-generation
|
||||||
|
tags:
|
||||||
|
- galactica
|
||||||
|
- wizardlm
|
||||||
|
- alpaca
|
||||||
|
- opt
|
||||||
|
inference: false
|
||||||
|
---
|
||||||
|
|
||||||
|
# GALACTICA 6.7B Evol-Instruct
|
||||||
|
|
||||||
|
GALACTICA 6.7B fine-tuned on the Evol-Instruct 70k dataset.
|
||||||
|
|
||||||
|
The model card from the original Galactica repo can be found [here](https://github.com/paperswithcode/galai/blob/main/docs/model_card.md), and the original paper [here](https://galactica.org/paper.pdf).
|
||||||
|
|
||||||
|
The HF dataset for Evol-Instruct-70k can be found [here](https://huggingface.co/datasets/victor123/evol_instruct_70k), and the original GitHub repo for WizardLM is [here](https://github.com/nlpxucan/WizardLM).
|
||||||
|
|
||||||
|
## Model Details
|
||||||
|
|
||||||
|
The GALACTICA models are trained on a large-scale scientific corpus and are designed to perform scientific tasks.
|
||||||
|
|
||||||
|
## Model Use
|
||||||
|
|
||||||
|
The GALACTICA model card specifies that the primary indended users of the GALACTICA models are researchers studying language models applied to the scientific domain, and it cautions against production use of GALACTICA without safeguards due to the potential for the model to produce inaccurate information.
|
||||||
|
The original GALACTICA models are available under a non-commercial CC BY-NC 4.0 license, and models based on the Evol-Instruct-70k dataset are additionally subject to the [OpenAI Terms of Service](https://openai.com/policies/terms-of-use).
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary> Example Outputs </summary>
|
||||||
|
|
||||||
|
*__Full Prompt:__*
|
||||||
|
```
|
||||||
|
Below is an instruction that describes a task. Write a response that appropriately completes the request.
|
||||||
|
|
||||||
|
### Instruction:
|
||||||
|
Write out Maxwell's equations and explain each one.
|
||||||
|
|
||||||
|
### Response:
|
||||||
|
```
|
||||||
|
|
||||||
|
*__Response:__*
|
||||||
|
|
||||||
|
Maxwell's equations are a set of four equations that describe the behavior of electromagnetic fields. These equations were developed by James Clerk Maxwell in 1864 and are widely used in the study of electromagnetism.
|
||||||
|
|
||||||
|
1. Gauss's Law: This equation states that the electric charge inside a closed surface is equal to the flux of electric field through the surface. Mathematically, it can be expressed as:
|
||||||
|
|
||||||
|
$$\nabla \bullet \textbf{E} = \frac{\rho}{\epsilon_0}$$
|
||||||
|
|
||||||
|
where E is the electric field, ρ is the charge density, ε0 is the electric constant, and ∇ is the divergence operator.
|
||||||
|
|
||||||
|
2. Faraday's Law: This equation states that the electric field around a closed loop is proportional to the time rate of change of magnetic flux through the loop. Mathematically, it can be expressed as:
|
||||||
|
|
||||||
|
$$\nabla \times \textbf{E} = -\frac{\partial\textbf{B}}{\partial t}$$
|
||||||
|
|
||||||
|
where B is the magnetic field, t is time, and ∇ × is the curl operator.
|
||||||
|
|
||||||
|
3. Gauss's Law for Magnetism: This equation states that the magnetic charge inside a closed surface is equal to the flux of magnetic field through the surface. Mathematically, it can be expressed as:
|
||||||
|
|
||||||
|
$$\nabla \bullet \textbf{B} = 0$$
|
||||||
|
|
||||||
|
where B is the magnetic field.
|
||||||
|
|
||||||
|
4. Ampere's Law: This equation states that the magnetic field around a closed loop is proportional to the current through the loop. Mathematically, it can be expressed as:
|
||||||
|
|
||||||
|
$$\nabla \times \textbf{B} = \mu_0\textbf{J} + \mu_0\epsilon_0\frac{\partial \textbf{E}}{\partial t}$$
|
||||||
|
|
||||||
|
where J is the current density, μ0 is the magnetic constant, and ε0 is the electric constant.
|
||||||
|
|
||||||
|
These equations form the foundation of all electromagnetic theory and are used to describe the behavior of electromagnetic fields in a wide range of applications, from radio waves to high-energy particles.
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
## Training Data
|
||||||
|
|
||||||
|
This model was trained by fine-tuning pre-trained GALACTICA 6.7B on the Evol-Instruct-70k dataset. GALACTICA models were trained on 106 billion tokens of open-access scientific text and data, including papers, textbooks, scientific websites, encyclopedias, and more.
|
||||||
|
Fine-tuning the base GALACTICA models on the 70k instruction-response pairs in the Evol-Instruct-70k dataset allows users to query the resulting model in an instruct-response fashion.
|
||||||
|
|
||||||
|
## How to Use
|
||||||
|
|
||||||
|
The GALACTICA Evol-Instruct-70K weights are made available for use with the `transformers` library.
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary> Click to expand </summary>
|
||||||
|
|
||||||
|
```python
|
||||||
|
# pip install accelerate
|
||||||
|
from transformers import AutoTokenizer, AutoModelForCausalLM
|
||||||
|
|
||||||
|
tokenizer = AutoTokenizer.from_pretrained("GeorgiaTechResearchInstitute/galactica-6.7b-evol-instruct-70k")
|
||||||
|
model = AutoModelForCausalLM.from_pretrained("GeorgiaTechResearchInstitute/galactica-6.7b-evol-instruct-70k", device_map="auto", torch_dtype=torch.float16)
|
||||||
|
|
||||||
|
# the evol-instruct models were fine-tuned with the same hidden prompts as the Alpaca project
|
||||||
|
no_input_prompt_template = ("Below is an instruction that describes a task. "
|
||||||
|
"Write a response that appropriately completes the request.\n\n"
|
||||||
|
"### Instruction:\n{instruction}\n\n### Response:")
|
||||||
|
prompt = "Write out Maxwell's equations and explain the meaning of each one."
|
||||||
|
formatted_prompt = no_input_prompt_template.format_map({'instruction': prompt})
|
||||||
|
|
||||||
|
tokenized_prompt = tokenizer(formatted_prompt, return_tensors="pt").input_ids.to(model.device)
|
||||||
|
out_tokens = model.generate(tokenized_prompt)
|
||||||
|
|
||||||
|
print(tokenizer.batch_decode(out_tokens, skip_special_tokens=False, clean_up_tokenization_spaces=False))
|
||||||
|
```
|
||||||
|
</details>
|
||||||
|
|
||||||
|
## Training Resources
|
||||||
|
|
||||||
|
GALACTICA 6.7B Evol-Instruct was fine-tuned in about 22 hours using 8 A100 80GB GPUS, 16-bit mixed-precision, an effective batch-size of 64, and with a maximum context window of 2048 tokens. This model was trained using full-shard data parallelism.
|
||||||
|
|
||||||
|
## Performance and Limitations
|
||||||
|
|
||||||
|
Qualitative evaluation suggests that the evol-instruct-70k fine-tuned Galactica models are signficantly more controllable and attentive to user prompts than the Alpaca fine-tuned GALPACA models.
|
||||||
|
|
||||||
|
## Works Cited
|
||||||
|
|
||||||
|
```bibtex
|
||||||
|
@inproceedings{GALACTICA,
|
||||||
|
title={GALACTICA: A Large Language Model for Science},
|
||||||
|
author={Ross Taylor and Marcin Kardas and Guillem Cucurull and Thomas Scialom and Anthony Hartshorn and Elvis Saravia and Andrew Poulton and Viktor Kerkez and Robert Stojnic},
|
||||||
|
year={2022}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
```bibtex
|
||||||
|
@misc{xu2023wizardlm,
|
||||||
|
title={WizardLM: Empowering Large Language Models to Follow Complex Instructions},
|
||||||
|
author={Can Xu and Qingfeng Sun and Kai Zheng and Xiubo Geng and Pu Zhao and Jiazhan Feng and Chongyang Tao and Daxin Jiang},
|
||||||
|
year={2023},
|
||||||
|
eprint={2304.12244},
|
||||||
|
archivePrefix={arXiv},
|
||||||
|
primaryClass={cs.CL}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
# [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_GeorgiaTechResearchInstitute__galactica-6.7b-evol-instruct-70k)
|
||||||
|
|
||||||
|
| Metric | Value |
|
||||||
|
|-----------------------|---------------------------|
|
||||||
|
| Avg. | 33.68 |
|
||||||
|
| ARC (25-shot) | 42.58 |
|
||||||
|
| HellaSwag (10-shot) | 49.3 |
|
||||||
|
| MMLU (5-shot) | 32.96 |
|
||||||
|
| TruthfulQA (0-shot) | 42.1 |
|
||||||
|
| Winogrande (5-shot) | 56.27 |
|
||||||
|
| GSM8K (5-shot) | 0.38 |
|
||||||
|
| DROP (3-shot) | 12.16 |
|
||||||
32
config.json
Normal file
32
config.json
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"_name_or_path": "facebook/galactica-6.7b",
|
||||||
|
"_remove_final_layer_norm": false,
|
||||||
|
"activation_dropout": 0.0,
|
||||||
|
"activation_function": "gelu",
|
||||||
|
"architectures": [
|
||||||
|
"OPTForCausalLM"
|
||||||
|
],
|
||||||
|
"attention_dropout": 0.1,
|
||||||
|
"bos_token_id": 0,
|
||||||
|
"do_layer_norm_before": true,
|
||||||
|
"dropout": 0.1,
|
||||||
|
"enable_bias": true,
|
||||||
|
"eos_token_id": 2,
|
||||||
|
"ffn_dim": 16384,
|
||||||
|
"hidden_size": 4096,
|
||||||
|
"init_std": 0.02,
|
||||||
|
"layer_norm_elementwise_affine": true,
|
||||||
|
"layerdrop": 0.0,
|
||||||
|
"learned_embeddings": true,
|
||||||
|
"max_position_embeddings": 2048,
|
||||||
|
"model_type": "opt",
|
||||||
|
"num_attention_heads": 32,
|
||||||
|
"num_hidden_layers": 32,
|
||||||
|
"pad_token_id": 1,
|
||||||
|
"scale_embeddings": false,
|
||||||
|
"torch_dtype": "float32",
|
||||||
|
"transformers_version": "4.28.0.dev0",
|
||||||
|
"use_cache": true,
|
||||||
|
"vocab_size": 50000,
|
||||||
|
"word_embed_proj_dim": 4096
|
||||||
|
}
|
||||||
7
generation_config.json
Normal file
7
generation_config.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"_from_model_config": true,
|
||||||
|
"bos_token_id": 0,
|
||||||
|
"eos_token_id": 2,
|
||||||
|
"pad_token_id": 1,
|
||||||
|
"transformers_version": "4.28.0.dev0"
|
||||||
|
}
|
||||||
3
pytorch_model-00001-of-00003.bin
Normal file
3
pytorch_model-00001-of-00003.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0db58a499090cd93b8971d11030a5528eb2d9b9925c9d0c05ffd1c8f4e01b83b
|
||||||
|
size 9982132549
|
||||||
3
pytorch_model-00002-of-00003.bin
Normal file
3
pytorch_model-00002-of-00003.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:87387e3ea53eb8f7271281e3f0fae8e47c00bf8d287da01e42a5c59aad9a5c42
|
||||||
|
size 9934800489
|
||||||
3
pytorch_model-00003-of-00003.bin
Normal file
3
pytorch_model-00003-of-00003.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c90cc101559887c0c5e7aa6189f618461b7d4e74665ab949bcdde11fe794cd6a
|
||||||
|
size 7531885354
|
||||||
524
pytorch_model.bin.index.json
Normal file
524
pytorch_model.bin.index.json
Normal file
@@ -0,0 +1,524 @@
|
|||||||
|
{
|
||||||
|
"metadata": {
|
||||||
|
"total_size": 27448639488
|
||||||
|
},
|
||||||
|
"weight_map": {
|
||||||
|
"lm_head.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.embed_positions.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.embed_tokens.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.final_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.final_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.fc1.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.fc1.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.fc2.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.fc2.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.final_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.final_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.self_attn.k_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.self_attn.k_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.self_attn.out_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.self_attn.out_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.self_attn.q_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.self_attn.q_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.self_attn.v_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.self_attn.v_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.self_attn_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.0.self_attn_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.fc1.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.fc1.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.fc2.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.fc2.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.final_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.final_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.self_attn.k_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.self_attn.k_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.self_attn.out_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.self_attn.out_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.self_attn.q_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.self_attn.q_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.self_attn.v_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.self_attn.v_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.self_attn_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.1.self_attn_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.fc1.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.fc1.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.fc2.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.fc2.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.final_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.final_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.self_attn.k_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.self_attn.k_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.self_attn.out_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.self_attn.out_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.self_attn.q_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.self_attn.q_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.self_attn.v_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.self_attn.v_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.self_attn_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.10.self_attn_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.fc1.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.fc1.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.fc2.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.fc2.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.final_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.final_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.self_attn.k_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.self_attn.k_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.self_attn.out_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.self_attn.out_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.self_attn.q_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.self_attn.q_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.self_attn.v_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.self_attn.v_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.self_attn_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.11.self_attn_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.fc1.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.fc1.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.fc2.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.fc2.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.final_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.final_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.self_attn.k_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.self_attn.k_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.self_attn.out_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.self_attn.out_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.self_attn.q_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.self_attn.q_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.self_attn.v_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.self_attn.v_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.self_attn_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.12.self_attn_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.fc1.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.fc1.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.fc2.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.fc2.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.final_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.final_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.self_attn.k_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.self_attn.k_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.self_attn.out_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.self_attn.out_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.self_attn.q_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.self_attn.q_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.self_attn.v_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.self_attn.v_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.self_attn_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.13.self_attn_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.fc1.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.fc1.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.fc2.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.fc2.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.final_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.final_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.self_attn.k_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.self_attn.k_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.self_attn.out_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.self_attn.out_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.self_attn.q_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.self_attn.q_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.self_attn.v_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.self_attn.v_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.self_attn_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.14.self_attn_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.fc1.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.fc1.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.fc2.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.fc2.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.final_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.final_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.self_attn.k_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.self_attn.k_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.self_attn.out_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.self_attn.out_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.self_attn.q_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.self_attn.q_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.self_attn.v_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.self_attn.v_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.self_attn_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.15.self_attn_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.fc1.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.fc1.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.fc2.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.fc2.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.final_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.final_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.self_attn.k_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.self_attn.k_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.self_attn.out_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.self_attn.out_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.self_attn.q_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.self_attn.q_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.self_attn.v_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.self_attn.v_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.self_attn_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.16.self_attn_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.fc1.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.fc1.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.fc2.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.fc2.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.final_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.final_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.self_attn.k_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.self_attn.k_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.self_attn.out_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.self_attn.out_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.self_attn.q_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.self_attn.q_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.self_attn.v_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.self_attn.v_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.self_attn_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.17.self_attn_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.fc1.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.fc1.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.fc2.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.fc2.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.final_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.final_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.self_attn.k_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.self_attn.k_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.self_attn.out_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.self_attn.out_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.self_attn.q_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.self_attn.q_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.self_attn.v_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.self_attn.v_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.self_attn_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.18.self_attn_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.fc1.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.fc1.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.fc2.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.fc2.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.final_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.final_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.self_attn.k_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.self_attn.k_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.self_attn.out_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.self_attn.out_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.self_attn.q_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.self_attn.q_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.self_attn.v_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.self_attn.v_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.self_attn_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.19.self_attn_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.fc1.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.fc1.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.fc2.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.fc2.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.final_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.final_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.self_attn.k_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.self_attn.k_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.self_attn.out_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.self_attn.out_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.self_attn.q_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.self_attn.q_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.self_attn.v_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.self_attn.v_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.self_attn_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.2.self_attn_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.fc1.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.fc1.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.fc2.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.fc2.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.final_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.final_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.self_attn.k_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.self_attn.k_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.self_attn.out_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.self_attn.out_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.self_attn.q_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.self_attn.q_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.self_attn.v_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.self_attn.v_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.self_attn_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.20.self_attn_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.fc1.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.fc1.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.fc2.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.fc2.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.final_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.final_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.self_attn.k_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.self_attn.k_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.self_attn.out_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.self_attn.out_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.self_attn.q_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.self_attn.q_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.self_attn.v_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.self_attn.v_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.self_attn_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.21.self_attn_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.fc1.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.fc1.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.fc2.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.fc2.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.final_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.final_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.self_attn.k_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.self_attn.k_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.self_attn.out_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.self_attn.out_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.self_attn.q_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.self_attn.q_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.self_attn.v_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.self_attn.v_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.self_attn_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.22.self_attn_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.fc1.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.fc1.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.fc2.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.fc2.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.final_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.final_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.self_attn.k_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.self_attn.k_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.self_attn.out_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.self_attn.out_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.self_attn.q_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.self_attn.q_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.self_attn.v_proj.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.self_attn.v_proj.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.self_attn_layer_norm.bias": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.23.self_attn_layer_norm.weight": "pytorch_model-00002-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.fc1.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.fc1.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.fc2.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.fc2.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.final_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.final_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.self_attn.k_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.self_attn.k_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.self_attn.out_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.self_attn.out_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.self_attn.q_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.self_attn.q_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.self_attn.v_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.self_attn.v_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.self_attn_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.24.self_attn_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.fc1.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.fc1.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.fc2.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.fc2.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.final_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.final_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.self_attn.k_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.self_attn.k_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.self_attn.out_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.self_attn.out_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.self_attn.q_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.self_attn.q_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.self_attn.v_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.self_attn.v_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.self_attn_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.25.self_attn_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.fc1.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.fc1.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.fc2.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.fc2.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.final_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.final_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.self_attn.k_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.self_attn.k_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.self_attn.out_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.self_attn.out_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.self_attn.q_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.self_attn.q_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.self_attn.v_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.self_attn.v_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.self_attn_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.26.self_attn_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.fc1.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.fc1.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.fc2.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.fc2.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.final_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.final_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.self_attn.k_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.self_attn.k_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.self_attn.out_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.self_attn.out_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.self_attn.q_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.self_attn.q_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.self_attn.v_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.self_attn.v_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.self_attn_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.27.self_attn_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.fc1.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.fc1.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.fc2.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.fc2.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.final_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.final_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.self_attn.k_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.self_attn.k_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.self_attn.out_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.self_attn.out_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.self_attn.q_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.self_attn.q_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.self_attn.v_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.self_attn.v_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.self_attn_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.28.self_attn_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.fc1.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.fc1.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.fc2.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.fc2.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.final_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.final_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.self_attn.k_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.self_attn.k_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.self_attn.out_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.self_attn.out_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.self_attn.q_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.self_attn.q_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.self_attn.v_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.self_attn.v_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.self_attn_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.29.self_attn_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.fc1.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.fc1.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.fc2.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.fc2.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.final_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.final_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.self_attn.k_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.self_attn.k_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.self_attn.out_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.self_attn.out_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.self_attn.q_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.self_attn.q_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.self_attn.v_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.self_attn.v_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.self_attn_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.3.self_attn_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.fc1.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.fc1.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.fc2.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.fc2.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.final_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.final_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.self_attn.k_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.self_attn.k_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.self_attn.out_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.self_attn.out_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.self_attn.q_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.self_attn.q_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.self_attn.v_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.self_attn.v_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.self_attn_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.30.self_attn_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.fc1.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.fc1.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.fc2.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.fc2.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.final_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.final_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.self_attn.k_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.self_attn.k_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.self_attn.out_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.self_attn.out_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.self_attn.q_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.self_attn.q_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.self_attn.v_proj.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.self_attn.v_proj.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.self_attn_layer_norm.bias": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.31.self_attn_layer_norm.weight": "pytorch_model-00003-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.fc1.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.fc1.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.fc2.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.fc2.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.final_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.final_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.self_attn.k_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.self_attn.k_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.self_attn.out_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.self_attn.out_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.self_attn.q_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.self_attn.q_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.self_attn.v_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.self_attn.v_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.self_attn_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.4.self_attn_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.fc1.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.fc1.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.fc2.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.fc2.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.final_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.final_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.self_attn.k_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.self_attn.k_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.self_attn.out_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.self_attn.out_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.self_attn.q_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.self_attn.q_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.self_attn.v_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.self_attn.v_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.self_attn_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.5.self_attn_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.fc1.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.fc1.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.fc2.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.fc2.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.final_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.final_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.self_attn.k_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.self_attn.k_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.self_attn.out_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.self_attn.out_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.self_attn.q_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.self_attn.q_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.self_attn.v_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.self_attn.v_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.self_attn_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.6.self_attn_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.fc1.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.fc1.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.fc2.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.fc2.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.final_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.final_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.self_attn.k_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.self_attn.k_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.self_attn.out_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.self_attn.out_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.self_attn.q_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.self_attn.q_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.self_attn.v_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.self_attn.v_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.self_attn_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.7.self_attn_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.fc1.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.fc1.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.fc2.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.fc2.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.final_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.final_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.self_attn.k_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.self_attn.k_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.self_attn.out_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.self_attn.out_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.self_attn.q_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.self_attn.q_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.self_attn.v_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.self_attn.v_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.self_attn_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.8.self_attn_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.fc1.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.fc1.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.fc2.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.fc2.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.final_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.final_layer_norm.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.self_attn.k_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.self_attn.k_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.self_attn.out_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.self_attn.out_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.self_attn.q_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.self_attn.q_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.self_attn.v_proj.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.self_attn.v_proj.weight": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.self_attn_layer_norm.bias": "pytorch_model-00001-of-00003.bin",
|
||||||
|
"model.decoder.layers.9.self_attn_layer_norm.weight": "pytorch_model-00001-of-00003.bin"
|
||||||
|
}
|
||||||
|
}
|
||||||
6
special_tokens_map.json
Normal file
6
special_tokens_map.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"bos_token": "<s>",
|
||||||
|
"eos_token": "</s>",
|
||||||
|
"pad_token": "<pad>",
|
||||||
|
"unk_token": "<unk>"
|
||||||
|
}
|
||||||
100008
tokenizer.json
Normal file
100008
tokenizer.json
Normal file
File diff suppressed because it is too large
Load Diff
6
tokenizer_config.json
Normal file
6
tokenizer_config.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"model_max_length": 2048,
|
||||||
|
"padding_side": "left",
|
||||||
|
"special_tokens_map_file": "special_tokens_map.json",
|
||||||
|
"tokenizer_class": "PreTrainedTokenizerFast"
|
||||||
|
}
|
||||||
19699
trainer_state.json
Normal file
19699
trainer_state.json
Normal file
File diff suppressed because it is too large
Load Diff
3
training_args.bin
Normal file
3
training_args.bin
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:fff8ce0092ff70976a2ad72f7231e757702ff583199bd7c3b3717fe2105f9100
|
||||||
|
size 3707
|
||||||
Reference in New Issue
Block a user