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

Model: OpenAssistant/llama2-13b-orca-8k-3319
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-06-13 23:55:04 +08:00
commit 34377fa5d7
23 changed files with 95975 additions and 0 deletions

35
.gitattributes vendored Normal file
View File

@@ -0,0 +1,35 @@
*.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
*.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

177
README.md Normal file
View File

@@ -0,0 +1,177 @@
---
license: other
datasets:
- ehartford/dolphin
- shahules786/orca-chat
- togethercomputer/RedPajama-Data-1T
- atom-in-the-universe/fanfics-10k-50k
language:
- en
tags:
- sft
pipeline_tag: text-generation
widget:
- text: <|system|>You are an AI assistant. You will be given a task. You must generate a detailed and long answer.</s><|prompter|>What is a meme, and what's the history behind this word?</s><|assistant|>
- text: <|system|>You are an AI assistant that helps people find information.</s><|prompter|>What's the Earth total population</s><|assistant|>
- text: <|system|>You are an AI assistant that follows instruction extremely well. Help as much as you can.</s><|prompter|>Write a story about future of AI development</s><|assistant|>
---
# llama2-13b-orca-8k-3319
## Model Description
This model is a fine-tuning of Meta's Llama2 13B model with 8K context size on a long-conversation variant of the Dolphin dataset ([orca-chat](https://huggingface.co/datasets/shahules786/orca-chat)).
Note: **At least Huggingface Transformers [4.31.0](https://pypi.org/project/transformers/4.31.0/) is required to load this model!**
## Usage
```python
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("OpenAssistant/llama2-13b-orca-8k-3319", use_fast=False)
model = AutoModelForCausalLM.from_pretrained("OpenAssistant/llama2-13b-orca-8k-3319", torch_dtype=torch.float16, low_cpu_mem_usage=True, device_map="auto")
system_message = "You are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe. Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature. If a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don't know the answer to a question, please don't share false information."
user_prompt = "Write me a poem please"
prompt = f"""<|system|>{system_message}</s><|prompter|>{user_prompt}</s><|assistant|>"""
inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
output = model.generate(**inputs, do_sample=True, top_p=0.95, top_k=0, max_new_tokens=256)
print(tokenizer.decode(output[0], skip_special_tokens=True))
```
## Model Details
- base model: [meta-llama/Llama-2-13b](https://huggingface.co/meta-llama/Llama-2-13b)
- License: [Llama 2 Community License Agreement](https://ai.meta.com/resources/models-and-libraries/llama-downloads/)
- sampling report: [2023-07-25_OpenAssistant_llama2-13b-orca-8k-3319_sampling_llama2_prompt.json](https://open-assistant.github.io/oasst-model-eval/?f=https%3A%2F%2Fraw.githubusercontent.com%2FOpen-Assistant%2Foasst-model-eval%2Fmain%2Fsampling_reports%2Foasst-pretrained%2F2023-07-25_OpenAssistant_llama2-13b-orca-8k-3319_sampling_llama2_prompt.json)
- wandb: [public-sft/runs/2jfazjt9](https://wandb.ai/open-assistant/public-sft/runs/2jfazjt9)
- checkpoint: 3319 steps
- datatpye: fp16
- sponsored by: [Redmond.ai](https://redmond.ai/)
## Long context (RoPE Scaling)
This model was fine-tuned with a context size of 8192 tokens using linear scaling of RoPE embeddings. This feature was recently
added to [Huggingface transformers](https://github.com/huggingface/transformers/). Before loading this model please make sure
HF transformers >=4.31.0 is installed (`pip install transformers>=4.31.0`).
## Conversation Template
For the initial response use (e.g. the [llama2 default system prompt](https://github.com/facebookresearch/llama/blob/6c7fe276574e78057f917549435a2554000a876d/llama/generation.py#L46) works well):
```
<|system|>system message</s><|prompter|>user prompt</s><|assistant|>
```
For multi-turn conversations use:
```
<|system|>system message</s><|prompter|>Q1</s><|assistant|>A1</s><|prompter|>Q2</s><|assistant|>
```
The model was trained with the following 15 system messages used to generate the training examples (see [ORCA paper](https://arxiv.org/abs/2306.02707)):
1. You are an AI assistant. Provide a detailed answer so user dont need to search outside to understand the answer.
2. You are an AI assistant. You will be given a task. You must generate a detailed and long answer.
3. You are a helpful assistant, who always provide explanation. Think like you are answering to a five year old.
4. You are an AI assistant that follows instruction extremely well. Help as much as you can.
5. You are an AI assistant that helps people find information. Provide a detailed answer so user dont need to search outside to understand the answer.
6. You are an AI assistant. User will you give you a task. Your goal is to complete the task as faithfully as you can. While performing the task think step-by-step and justify your steps.
7. You should describe the task and explain your answer. While answering a multiple choice question, first output the correct answer(s). Then explain why other answers are wrong. Think like you are answering to a five year old.
8. Explain how you used the definition to come up with the answer.
9. You are an AI assistant. You should describe the task and explain your answer. While answering a multiple choice question, first output the correct answer(s). Then explain why other answers are wrong. You might need to use additional knowledge to answer the question.
10. You are an AI assistant that helps people find information. User will you give you a question. Your task is to answer as faithfully as you can. While answering think step-by- step and justify your answer.
11. User will you give you a task with some instruction. Your job is follow the instructions as faithfully as you can. While answering think step-by-step and justify your answer.
12. You are a teacher. Given a task, you explain in simple steps what the task is asking, any guidelines it provides and how to use those guidelines to find the answer.
13. You are an AI assistant, who knows every language and how to translate one language to another. Given a task, you explain in simple steps what the task is asking, any guidelines that it provides. You solve the task and show how you used the guidelines to solve the task.
14. Given a definition of a task and a sample input, break the definition into small parts. Each of those parts will have some instruction. Explain their meaning by showing an example that meets the criteria in the instruction. Use the following format: Part \#: a key part of the definition. Usage: Sample response that meets the criteria from the key part. Explain why you think it meets the criteria.
15. You are an AI assistant that helps people find information.
## Datasets: Orca-Chat/Dolphin, RedPajama1T & FanFics
This model was trained on:
- [shahules786/orca-chat](https://huggingface.co/datasets/shahules786/orca-chat)
- [togethercomputer/RedPajama-Data-1T-Sample](https://huggingface.co/datasets/togethercomputer/RedPajama-Data-1T)
- [atom-in-the-universe/fanfics-10k-50k](https://huggingface.co/datasets/atom-in-the-universe/fanfics-10k-50k)
```
Dataset Composition:
Tain (sampled):
orca-chat: 188842 (100%)
fanfics: 47760 (100%)
red_pajama: 188262 (25%)
Valid:
orca-chat: 5000
fanfics: 1000
red_pajama: 1000
```
The dataset [shahules786/orca-chat](https://huggingface.co/datasets/shahules786/orca-chat) combines similar examples of the GPT-4 subset of [ehartford/dolphin](https://huggingface.co/datasets/ehartford/dolphin) to form longer conversations
to improve long-context training.
Additionally, RedPajama and FanFics were used for classic language modelling as an auxiliary task to improve the RoPE scaling for the 8k context size.
## Model Configuration
```
llama2_13b_orca_8k:
rng_seed: 0xe1291f1a
use_custom_sampler: true
sort_by_length: false
dtype: fp16
log_dir: "llama2_log_13b_orca_8k"
learning_rate: 1e-5
model_name: /mnt/data/llama2/Llama-2-13b-hf/
output_dir: llama2_13b_orca_8k
deepspeed_config: configs/zero_config_pretrain.json
weight_decay: 0.0
max_length: 8192
warmup_steps: 100
use_flash_attention: true
gradient_checkpointing: true
gradient_accumulation_steps: 8
per_device_train_batch_size: 2
per_device_eval_batch_size: 1
residual_dropout: 0.0
eval_steps: 200
save_steps: 1000 # (total steps: 3319)
num_train_epochs: 1
save_total_limit: 4
superhot: true
superhot_config:
type: linear
scale: 2
datasets:
- orca-chat:
max_val_set: 5000
- fanfics:
max_chunk_size: 65535
max_val_set: 1000
- red_pajama:
fraction: 0.25
max_val_set: 1000
max_chunk_size: 65535
peft_model: false
```
# Developers
- [shahules786](https://github.com/shahules786)
- [jordiclive](https://github.com/jordiclive)
- [andreaskoepf](https://github.com/andreaskoepf/)
# Special Thanks
We want to especially thank Eric Hartford who spared no expense in replicating ORCA and making it available at [ehartford/dolphin](https://huggingface.co/datasets/ehartford/dolphin)!
Also, shoutout to the whole team working on [LLongMA-2-13b](https://huggingface.co/conceptofmind/LLongMA-2-13b) & the [scaled-rope](https://github.com/jquesnelle/scaled-rope) repository for their awesome work: bloc97, jquesnelle & conceptofmind!
The whole Open-Assistant team is very grateful for the continued support of [Redmond.ai](https://redmond.ai/) who sponsored the training compute required for this model.
# License
- Llama 2 is licensed under the LLAMA 2 Community License, Copyright © Meta Platforms, Inc. All Rights Reserved.
- Your use of the Llama Materials must comply with applicable laws and regulations (including trade compliance laws and regulations) and adhere to the [Acceptable Use Policy](https://ai.meta.com/llama/use-policy) for the Llama Materials.

8
added_tokens.json Normal file
View File

@@ -0,0 +1,8 @@
{
"<pad>": 32000,
"<|assistant|>": 32001,
"<|prefix_begin|>": 32004,
"<|prefix_end|>": 32002,
"<|prompter|>": 32005,
"<|system|>": 32003
}

30
config.json Normal file
View File

@@ -0,0 +1,30 @@
{
"_name_or_path": "/mnt/data/ikka/Open-Assistant/model/model_training/llama2_13b_orca_8k_2/",
"architectures": [
"LlamaForCausalLM"
],
"bos_token_id": 1,
"eos_token_id": 2,
"hidden_act": "silu",
"hidden_size": 5120,
"initializer_range": 0.02,
"intermediate_size": 13824,
"max_length": 8192,
"max_position_embeddings": 8192,
"model_type": "llama",
"num_attention_heads": 40,
"num_hidden_layers": 40,
"num_key_value_heads": 40,
"pad_token_id": 0,
"pretraining_tp": 1,
"rms_norm_eps": 1e-05,
"rope_scaling": {
"factor": 2.0,
"type": "linear"
},
"tie_word_embeddings": false,
"torch_dtype": "float16",
"transformers_version": "4.31.0.dev0",
"use_cache": true,
"vocab_size": 32016
}

9
generation_config.json Normal file
View File

@@ -0,0 +1,9 @@
{
"_from_model_config": true,
"bos_token_id": 1,
"eos_token_id": 2,
"pad_token_id": 0,
"temperature": 0.9,
"top_p": 0.6,
"transformers_version": "4.31.0.dev0"
}

1
llama2/.gitattributes vendored Normal file
View File

@@ -0,0 +1 @@
*.pdf filter=lfs diff=lfs merge=lfs -text

126
llama2/LICENSE Normal file
View File

@@ -0,0 +1,126 @@
LLAMA 2 COMMUNITY LICENSE AGREEMENT
Llama 2 Version Release Date: July 18, 2023
"Agreement" means the terms and conditions for use, reproduction, distribution and
modification of the Llama Materials set forth herein.
"Documentation" means the specifications, manuals and documentation
accompanying Llama 2 distributed by Meta at ai.meta.com/resources/models-and-
libraries/llama-downloads/.
"Licensee" or "you" means you, or your employer or any other person or entity (if
you are entering into this Agreement on such person or entity's behalf), of the age
required under applicable laws, rules or regulations to provide legal consent and that
has legal authority to bind your employer or such other person or entity if you are
entering in this Agreement on their behalf.
"Llama 2" means the foundational large language models and software and
algorithms, including machine-learning model code, trained model weights,
inference-enabling code, training-enabling code, fine-tuning enabling code and other
elements of the foregoing distributed by Meta at ai.meta.com/resources/models-and-
libraries/llama-downloads/.
"Llama Materials" means, collectively, Meta's proprietary Llama 2 and
Documentation (and any portion thereof) made available under this Agreement.
"Meta" or "we" means Meta Platforms Ireland Limited (if you are located in or, if you
are an entity, your principal place of business is in the EEA or Switzerland) and Meta
Platforms, Inc. (if you are located outside of the EEA or Switzerland).
By clicking "I Accept" below or by using or distributing any portion or element of the
Llama Materials, you agree to be bound by this Agreement.
1. License Rights and Redistribution.
a. Grant of Rights. You are granted a non-exclusive, worldwide, non-
transferable and royalty-free limited license under Meta's intellectual property or
other rights owned by Meta embodied in the Llama Materials to use, reproduce,
distribute, copy, create derivative works of, and make modifications to the Llama
Materials.
b. Redistribution and Use.
i. If you distribute or make the Llama Materials, or any derivative works
thereof, available to a third party, you shall provide a copy of this Agreement to such
third party.
ii. If you receive Llama Materials, or any derivative works thereof, from
a Licensee as part of an integrated end user product, then Section 2 of this
Agreement will not apply to you.
iii. You must retain in all copies of the Llama Materials that you
distribute the following attribution notice within a "Notice" text file distributed as a
part of such copies: "Llama 2 is licensed under the LLAMA 2 Community License,
Copyright (c) Meta Platforms, Inc. All Rights Reserved."
iv. Your use of the Llama Materials must comply with applicable laws
and regulations (including trade compliance laws and regulations) and adhere to the
Acceptable Use Policy for the Llama Materials (available at
https://ai.meta.com/llama/use-policy), which is hereby incorporated by reference into
this Agreement.
v. You will not use the Llama Materials or any output or results of the
Llama Materials to improve any other large language model (excluding Llama 2 or
derivative works thereof).
2. Additional Commercial Terms. If, on the Llama 2 version release date, the
monthly active users of the products or services made available by or for Licensee,
or Licensee's affiliates, is greater than 700 million monthly active users in the
preceding calendar month, you must request a license from Meta, which Meta may
grant to you in its sole discretion, and you are not authorized to exercise any of the
rights under this Agreement unless or until Meta otherwise expressly grants you
such rights.
3. Disclaimer of Warranty. UNLESS REQUIRED BY APPLICABLE LAW, THE
LLAMA MATERIALS AND ANY OUTPUT AND RESULTS THEREFROM ARE
PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY
WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR
FITNESS FOR A PARTICULAR PURPOSE. YOU ARE SOLELY RESPONSIBLE
FOR DETERMINING THE APPROPRIATENESS OF USING OR REDISTRIBUTING
THE LLAMA MATERIALS AND ASSUME ANY RISKS ASSOCIATED WITH YOUR
USE OF THE LLAMA MATERIALS AND ANY OUTPUT AND RESULTS.
4. Limitation of Liability. IN NO EVENT WILL META OR ITS AFFILIATES BE
LIABLE UNDER ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, TORT,
NEGLIGENCE, PRODUCTS LIABILITY, OR OTHERWISE, ARISING OUT OF THIS
AGREEMENT, FOR ANY LOST PROFITS OR ANY INDIRECT, SPECIAL,
CONSEQUENTIAL, INCIDENTAL, EXEMPLARY OR PUNITIVE DAMAGES, EVEN
IF META OR ITS AFFILIATES HAVE BEEN ADVISED OF THE POSSIBILITY OF
ANY OF THE FOREGOING.
5. Intellectual Property.
a. No trademark licenses are granted under this Agreement, and in
connection with the Llama Materials, neither Meta nor Licensee may use any name
or mark owned by or associated with the other or any of its affiliates, except as
required for reasonable and customary use in describing and redistributing the
Llama Materials.
b. Subject to Meta's ownership of Llama Materials and derivatives made by or
for Meta, with respect to any derivative works and modifications of the Llama
Materials that are made by you, as between you and Meta, you are and will be the
owner of such derivative works and modifications.
c. If you institute litigation or other proceedings against Meta or any entity
(including a cross-claim or counterclaim in a lawsuit) alleging that the Llama
Materials or Llama 2 outputs or results, or any portion of any of the foregoing,
constitutes infringement of intellectual property or other rights owned or licensable
by you, then any licenses granted to you under this Agreement shall terminate as of
the date such litigation or claim is filed or instituted. You will indemnify and hold
harmless Meta from and against any claim by any third party arising out of or related
to your use or distribution of the Llama Materials.
6. Term and Termination. The term of this Agreement will commence upon your
acceptance of this Agreement or access to the Llama Materials and will continue in
full force and effect until terminated in accordance with the terms and conditions
herein. Meta may terminate this Agreement if you are in breach of any term or
condition of this Agreement. Upon termination of this Agreement, you shall delete
and cease use of the Llama Materials. Sections 3, 4 and 7 shall survive the
termination of this Agreement.
7. Governing Law and Jurisdiction. This Agreement will be governed and
construed under the laws of the State of California without regard to choice of law
principles, and the UN Convention on Contracts for the International Sale of Goods
does not apply to this Agreement. The courts of California shall have exclusive
jurisdiction of any dispute arising out of this Agreement.

392
llama2/Notice Normal file

File diff suppressed because one or more lines are too long

807
llama2/README.md Normal file

File diff suppressed because one or more lines are too long

View File

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

448
llama2/USE_POLICY.md Normal file

File diff suppressed because one or more lines are too long

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,410 @@
{
"metadata": {
"total_size": 26032066560
},
"weight_map": {
"lm_head.weight": "pytorch_model-00007-of-00007.bin",
"model.embed_tokens.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.0.input_layernorm.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.0.mlp.down_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.0.mlp.gate_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.0.mlp.up_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.0.post_attention_layernorm.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.0.self_attn.k_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.0.self_attn.o_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.0.self_attn.q_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.0.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00007.bin",
"model.layers.0.self_attn.v_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.1.input_layernorm.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.1.mlp.down_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.1.mlp.gate_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.1.mlp.up_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.1.post_attention_layernorm.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.1.self_attn.k_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.1.self_attn.o_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.1.self_attn.q_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.1.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00007.bin",
"model.layers.1.self_attn.v_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.10.input_layernorm.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.10.mlp.down_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.10.mlp.gate_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.10.mlp.up_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.10.post_attention_layernorm.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.10.self_attn.k_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.10.self_attn.o_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.10.self_attn.q_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.10.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00007.bin",
"model.layers.10.self_attn.v_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.11.input_layernorm.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.11.mlp.down_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.11.mlp.gate_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.11.mlp.up_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.11.post_attention_layernorm.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.11.self_attn.k_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.11.self_attn.o_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.11.self_attn.q_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.11.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00007.bin",
"model.layers.11.self_attn.v_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.12.input_layernorm.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.12.mlp.down_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.12.mlp.gate_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.12.mlp.up_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.12.post_attention_layernorm.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.12.self_attn.k_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.12.self_attn.o_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.12.self_attn.q_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.12.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00007.bin",
"model.layers.12.self_attn.v_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.13.input_layernorm.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.13.mlp.down_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.13.mlp.gate_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.13.mlp.up_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.13.post_attention_layernorm.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.13.self_attn.k_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.13.self_attn.o_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.13.self_attn.q_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.13.self_attn.rotary_emb.inv_freq": "pytorch_model-00003-of-00007.bin",
"model.layers.13.self_attn.v_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.14.input_layernorm.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.14.mlp.down_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.14.mlp.gate_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.14.mlp.up_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.14.post_attention_layernorm.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.14.self_attn.k_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.14.self_attn.o_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.14.self_attn.q_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.14.self_attn.rotary_emb.inv_freq": "pytorch_model-00003-of-00007.bin",
"model.layers.14.self_attn.v_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.15.input_layernorm.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.15.mlp.down_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.15.mlp.gate_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.15.mlp.up_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.15.post_attention_layernorm.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.15.self_attn.k_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.15.self_attn.o_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.15.self_attn.q_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.15.self_attn.rotary_emb.inv_freq": "pytorch_model-00003-of-00007.bin",
"model.layers.15.self_attn.v_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.16.input_layernorm.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.16.mlp.down_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.16.mlp.gate_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.16.mlp.up_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.16.post_attention_layernorm.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.16.self_attn.k_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.16.self_attn.o_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.16.self_attn.q_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.16.self_attn.rotary_emb.inv_freq": "pytorch_model-00003-of-00007.bin",
"model.layers.16.self_attn.v_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.17.input_layernorm.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.17.mlp.down_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.17.mlp.gate_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.17.mlp.up_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.17.post_attention_layernorm.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.17.self_attn.k_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.17.self_attn.o_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.17.self_attn.q_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.17.self_attn.rotary_emb.inv_freq": "pytorch_model-00003-of-00007.bin",
"model.layers.17.self_attn.v_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.18.input_layernorm.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.18.mlp.down_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.18.mlp.gate_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.18.mlp.up_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.18.post_attention_layernorm.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.18.self_attn.k_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.18.self_attn.o_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.18.self_attn.q_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.18.self_attn.rotary_emb.inv_freq": "pytorch_model-00003-of-00007.bin",
"model.layers.18.self_attn.v_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.19.input_layernorm.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.19.mlp.down_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.19.mlp.gate_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.19.mlp.up_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.19.post_attention_layernorm.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.19.self_attn.k_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.19.self_attn.o_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.19.self_attn.q_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.19.self_attn.rotary_emb.inv_freq": "pytorch_model-00003-of-00007.bin",
"model.layers.19.self_attn.v_proj.weight": "pytorch_model-00003-of-00007.bin",
"model.layers.2.input_layernorm.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.2.mlp.down_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.2.mlp.gate_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.2.mlp.up_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.2.post_attention_layernorm.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.2.self_attn.k_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.2.self_attn.o_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.2.self_attn.q_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.2.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00007.bin",
"model.layers.2.self_attn.v_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.20.input_layernorm.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.20.mlp.down_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.20.mlp.gate_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.20.mlp.up_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.20.post_attention_layernorm.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.20.self_attn.k_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.20.self_attn.o_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.20.self_attn.q_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.20.self_attn.rotary_emb.inv_freq": "pytorch_model-00004-of-00007.bin",
"model.layers.20.self_attn.v_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.21.input_layernorm.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.21.mlp.down_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.21.mlp.gate_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.21.mlp.up_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.21.post_attention_layernorm.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.21.self_attn.k_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.21.self_attn.o_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.21.self_attn.q_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.21.self_attn.rotary_emb.inv_freq": "pytorch_model-00004-of-00007.bin",
"model.layers.21.self_attn.v_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.22.input_layernorm.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.22.mlp.down_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.22.mlp.gate_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.22.mlp.up_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.22.post_attention_layernorm.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.22.self_attn.k_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.22.self_attn.o_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.22.self_attn.q_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.22.self_attn.rotary_emb.inv_freq": "pytorch_model-00004-of-00007.bin",
"model.layers.22.self_attn.v_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.23.input_layernorm.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.23.mlp.down_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.23.mlp.gate_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.23.mlp.up_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.23.post_attention_layernorm.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.23.self_attn.k_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.23.self_attn.o_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.23.self_attn.q_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.23.self_attn.rotary_emb.inv_freq": "pytorch_model-00004-of-00007.bin",
"model.layers.23.self_attn.v_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.24.input_layernorm.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.24.mlp.down_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.24.mlp.gate_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.24.mlp.up_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.24.post_attention_layernorm.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.24.self_attn.k_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.24.self_attn.o_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.24.self_attn.q_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.24.self_attn.rotary_emb.inv_freq": "pytorch_model-00004-of-00007.bin",
"model.layers.24.self_attn.v_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.25.input_layernorm.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.25.mlp.down_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.25.mlp.gate_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.25.mlp.up_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.25.post_attention_layernorm.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.25.self_attn.k_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.25.self_attn.o_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.25.self_attn.q_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.25.self_attn.rotary_emb.inv_freq": "pytorch_model-00004-of-00007.bin",
"model.layers.25.self_attn.v_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.26.input_layernorm.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.26.mlp.down_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.26.mlp.gate_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.26.mlp.up_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.26.post_attention_layernorm.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.26.self_attn.k_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.26.self_attn.o_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.26.self_attn.q_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.26.self_attn.rotary_emb.inv_freq": "pytorch_model-00005-of-00007.bin",
"model.layers.26.self_attn.v_proj.weight": "pytorch_model-00004-of-00007.bin",
"model.layers.27.input_layernorm.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.27.mlp.down_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.27.mlp.gate_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.27.mlp.up_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.27.post_attention_layernorm.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.27.self_attn.k_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.27.self_attn.o_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.27.self_attn.q_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.27.self_attn.rotary_emb.inv_freq": "pytorch_model-00005-of-00007.bin",
"model.layers.27.self_attn.v_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.28.input_layernorm.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.28.mlp.down_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.28.mlp.gate_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.28.mlp.up_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.28.post_attention_layernorm.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.28.self_attn.k_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.28.self_attn.o_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.28.self_attn.q_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.28.self_attn.rotary_emb.inv_freq": "pytorch_model-00005-of-00007.bin",
"model.layers.28.self_attn.v_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.29.input_layernorm.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.29.mlp.down_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.29.mlp.gate_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.29.mlp.up_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.29.post_attention_layernorm.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.29.self_attn.k_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.29.self_attn.o_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.29.self_attn.q_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.29.self_attn.rotary_emb.inv_freq": "pytorch_model-00005-of-00007.bin",
"model.layers.29.self_attn.v_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.3.input_layernorm.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.3.mlp.down_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.3.mlp.gate_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.3.mlp.up_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.3.post_attention_layernorm.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.3.self_attn.k_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.3.self_attn.o_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.3.self_attn.q_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.3.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00007.bin",
"model.layers.3.self_attn.v_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.30.input_layernorm.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.30.mlp.down_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.30.mlp.gate_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.30.mlp.up_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.30.post_attention_layernorm.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.30.self_attn.k_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.30.self_attn.o_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.30.self_attn.q_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.30.self_attn.rotary_emb.inv_freq": "pytorch_model-00005-of-00007.bin",
"model.layers.30.self_attn.v_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.31.input_layernorm.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.31.mlp.down_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.31.mlp.gate_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.31.mlp.up_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.31.post_attention_layernorm.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.31.self_attn.k_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.31.self_attn.o_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.31.self_attn.q_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.31.self_attn.rotary_emb.inv_freq": "pytorch_model-00005-of-00007.bin",
"model.layers.31.self_attn.v_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.32.input_layernorm.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.32.mlp.down_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.32.mlp.gate_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.32.mlp.up_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.32.post_attention_layernorm.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.32.self_attn.k_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.32.self_attn.o_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.32.self_attn.q_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.32.self_attn.rotary_emb.inv_freq": "pytorch_model-00005-of-00007.bin",
"model.layers.32.self_attn.v_proj.weight": "pytorch_model-00005-of-00007.bin",
"model.layers.33.input_layernorm.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.33.mlp.down_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.33.mlp.gate_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.33.mlp.up_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.33.post_attention_layernorm.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.33.self_attn.k_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.33.self_attn.o_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.33.self_attn.q_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.33.self_attn.rotary_emb.inv_freq": "pytorch_model-00006-of-00007.bin",
"model.layers.33.self_attn.v_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.34.input_layernorm.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.34.mlp.down_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.34.mlp.gate_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.34.mlp.up_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.34.post_attention_layernorm.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.34.self_attn.k_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.34.self_attn.o_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.34.self_attn.q_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.34.self_attn.rotary_emb.inv_freq": "pytorch_model-00006-of-00007.bin",
"model.layers.34.self_attn.v_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.35.input_layernorm.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.35.mlp.down_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.35.mlp.gate_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.35.mlp.up_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.35.post_attention_layernorm.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.35.self_attn.k_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.35.self_attn.o_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.35.self_attn.q_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.35.self_attn.rotary_emb.inv_freq": "pytorch_model-00006-of-00007.bin",
"model.layers.35.self_attn.v_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.36.input_layernorm.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.36.mlp.down_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.36.mlp.gate_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.36.mlp.up_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.36.post_attention_layernorm.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.36.self_attn.k_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.36.self_attn.o_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.36.self_attn.q_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.36.self_attn.rotary_emb.inv_freq": "pytorch_model-00006-of-00007.bin",
"model.layers.36.self_attn.v_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.37.input_layernorm.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.37.mlp.down_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.37.mlp.gate_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.37.mlp.up_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.37.post_attention_layernorm.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.37.self_attn.k_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.37.self_attn.o_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.37.self_attn.q_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.37.self_attn.rotary_emb.inv_freq": "pytorch_model-00006-of-00007.bin",
"model.layers.37.self_attn.v_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.38.input_layernorm.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.38.mlp.down_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.38.mlp.gate_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.38.mlp.up_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.38.post_attention_layernorm.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.38.self_attn.k_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.38.self_attn.o_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.38.self_attn.q_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.38.self_attn.rotary_emb.inv_freq": "pytorch_model-00006-of-00007.bin",
"model.layers.38.self_attn.v_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.39.input_layernorm.weight": "pytorch_model-00007-of-00007.bin",
"model.layers.39.mlp.down_proj.weight": "pytorch_model-00007-of-00007.bin",
"model.layers.39.mlp.gate_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.39.mlp.up_proj.weight": "pytorch_model-00007-of-00007.bin",
"model.layers.39.post_attention_layernorm.weight": "pytorch_model-00007-of-00007.bin",
"model.layers.39.self_attn.k_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.39.self_attn.o_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.39.self_attn.q_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.39.self_attn.rotary_emb.inv_freq": "pytorch_model-00006-of-00007.bin",
"model.layers.39.self_attn.v_proj.weight": "pytorch_model-00006-of-00007.bin",
"model.layers.4.input_layernorm.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.4.mlp.down_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.4.mlp.gate_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.4.mlp.up_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.4.post_attention_layernorm.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.4.self_attn.k_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.4.self_attn.o_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.4.self_attn.q_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.4.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00007.bin",
"model.layers.4.self_attn.v_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.5.input_layernorm.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.5.mlp.down_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.5.mlp.gate_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.5.mlp.up_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.5.post_attention_layernorm.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.5.self_attn.k_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.5.self_attn.o_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.5.self_attn.q_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.5.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00007.bin",
"model.layers.5.self_attn.v_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.6.input_layernorm.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.6.mlp.down_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.6.mlp.gate_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.6.mlp.up_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.6.post_attention_layernorm.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.6.self_attn.k_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.6.self_attn.o_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.6.self_attn.q_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.6.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00007.bin",
"model.layers.6.self_attn.v_proj.weight": "pytorch_model-00001-of-00007.bin",
"model.layers.7.input_layernorm.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.7.mlp.down_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.7.mlp.gate_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.7.mlp.up_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.7.post_attention_layernorm.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.7.self_attn.k_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.7.self_attn.o_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.7.self_attn.q_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.7.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00007.bin",
"model.layers.7.self_attn.v_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.8.input_layernorm.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.8.mlp.down_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.8.mlp.gate_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.8.mlp.up_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.8.post_attention_layernorm.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.8.self_attn.k_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.8.self_attn.o_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.8.self_attn.q_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.8.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00007.bin",
"model.layers.8.self_attn.v_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.9.input_layernorm.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.9.mlp.down_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.9.mlp.gate_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.9.mlp.up_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.9.post_attention_layernorm.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.9.self_attn.k_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.9.self_attn.o_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.9.self_attn.q_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.layers.9.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00007.bin",
"model.layers.9.self_attn.v_proj.weight": "pytorch_model-00002-of-00007.bin",
"model.norm.weight": "pytorch_model-00007-of-00007.bin"
}
}

26
special_tokens_map.json Normal file
View File

@@ -0,0 +1,26 @@
{
"additional_special_tokens": [
"<|assistant|>",
"<|prefix_end|>",
"<|system|>",
"<|prefix_begin|>",
"<|prompter|>"
],
"bos_token": {
"content": "<s>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
},
"eos_token": "</s>",
"pad_token": "</s>",
"sep_token": "<s>",
"unk_token": {
"content": "<unk>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
}
}

93445
tokenizer.json Normal file

File diff suppressed because it is too large Load Diff

BIN
tokenizer.model (Stored with Git LFS) Normal file

Binary file not shown.

34
tokenizer_config.json Normal file
View File

@@ -0,0 +1,34 @@
{
"add_bos_token": true,
"add_eos_token": false,
"bos_token": {
"__type": "AddedToken",
"content": "<s>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
},
"clean_up_tokenization_spaces": false,
"eos_token": {
"__type": "AddedToken",
"content": "</s>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
},
"legacy": false,
"model_max_length": 1000000000000000019884624838656,
"pad_token": null,
"sp_model_kwargs": {},
"tokenizer_class": "LlamaTokenizer",
"unk_token": {
"__type": "AddedToken",
"content": "<unk>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
}
}