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

Model: EldritchLabs/KrakenSakura-Maelstrom-12B-v1
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-06-21 07:27:17 +08:00
commit eb08c85ff3
19 changed files with 10397 additions and 0 deletions

39
.gitattributes vendored Normal file
View File

@@ -0,0 +1,39 @@
*.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
Kraken_11.png filter=lfs diff=lfs merge=lfs -text
KrakenSakuraMaelström.png filter=lfs diff=lfs merge=lfs -text
tokenizer.json filter=lfs diff=lfs merge=lfs -text
krakensakura-maelstrom-12b-v1_illuminati_imatrix_v1.dat filter=lfs diff=lfs merge=lfs -text

View File

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

3
Kraken_11.png Normal file
View File

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

1741
README.md Normal file

File diff suppressed because it is too large Load Diff

2
chat_template.jinja Normal file
View File

@@ -0,0 +1,2 @@
{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}
{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}

26
config.json Normal file
View File

@@ -0,0 +1,26 @@
{
"architectures": [
"MistralForCausalLM"
],
"attention_dropout": 0.0,
"bos_token_id": 1,
"dtype": "bfloat16",
"eos_token_id": 2,
"head_dim": 128,
"hidden_act": "silu",
"hidden_size": 5120,
"initializer_range": 0.02,
"intermediate_size": 14336,
"max_position_embeddings": 131072,
"model_type": "mistral",
"num_attention_heads": 32,
"num_hidden_layers": 40,
"num_key_value_heads": 8,
"rms_norm_eps": 1e-05,
"rope_theta": 1000000.0,
"sliding_window": null,
"tie_word_embeddings": false,
"transformers_version": "4.57.6",
"use_cache": true,
"vocab_size": 131075
}

21
kraken_quant.bat Normal file
View File

@@ -0,0 +1,21 @@
REM python C:\Quanter\llama.cpp\convert_hf_to_gguf.py B:\12B\KrakenSakura-Maelstrom-12B-v1 --outfile B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf --outtype bf16
C:\Quanter\llama.cpp\llama-quantize B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-Q2_K.gguf Q2_K
C:\Quanter\llama.cpp\llama-quantize B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-Q3_K_M.gguf Q3_K_M
C:\Quanter\llama.cpp\llama-quantize B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-Q4_K_M.gguf Q4_K_M
C:\Quanter\llama.cpp\llama-quantize B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-Q5_K_M.gguf Q5_K_M
C:\Quanter\llama.cpp\llama-quantize B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-Q6_K_M.gguf Q6_K
python C:\Quanter\llama.cpp\convert_hf_to_gguf.py B:\12B\KrakenSakura-Maelstrom-12B-v1 --outfile B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-Q8_0.gguf --outtype q8_0
timeout /t 3 /nobreak && cls
C:\Quanter\llama.cpp\llama-imatrix -m B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf -f C:\Quanter\llama.cpp\illuminati_imatrix_v1.txt -o krakensakura-maelstrom-12b-v1_illuminati_imatrix_v1.dat
C:\Quanter\llama.cpp\llama-quantize --imatrix krakensakura-maelstrom-12b-v1_illuminati_imatrix_v1.dat input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ4_NL.gguf IQ4_NL
C:\Quanter\llama.cpp\llama-quantize --imatrix krakensakura-maelstrom-12b-v1_illuminati_imatrix_v1.dat input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ4_XS.gguf IQ4_XS
C:\Quanter\llama.cpp\llama-quantize --imatrix krakensakura-maelstrom-12b-v1_illuminati_imatrix_v1.dat input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ3_M.gguf IQ3_M
C:\Quanter\llama.cpp\llama-quantize --imatrix krakensakura-maelstrom-12b-v1_illuminati_imatrix_v1.dat input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ3_S.gguf IQ3_S
C:\Quanter\llama.cpp\llama-quantize --imatrix krakensakura-maelstrom-12b-v1_illuminati_imatrix_v1.dat input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ3_XS.gguf IQ3_XS
C:\Quanter\llama.cpp\llama-quantize --imatrix krakensakura-maelstrom-12b-v1_illuminati_imatrix_v1.dat input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ3_XXS.gguf IQ3_XXS
C:\Quanter\llama.cpp\llama-quantize --imatrix krakensakura-maelstrom-12b-v1_illuminati_imatrix_v1.dat input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ2_M.gguf IQ2_M
C:\Quanter\llama.cpp\llama-quantize --imatrix krakensakura-maelstrom-12b-v1_illuminati_imatrix_v1.dat input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ2_S.gguf IQ2_S
C:\Quanter\llama.cpp\llama-quantize --imatrix krakensakura-maelstrom-12b-v1_illuminati_imatrix_v1.dat input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ2_XS.gguf IQ2_XS
C:\Quanter\llama.cpp\llama-quantize --imatrix krakensakura-maelstrom-12b-v1_illuminati_imatrix_v1.dat input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ2_XXS.gguf IQ2_XXS
C:\Quanter\llama.cpp\llama-quantize --imatrix krakensakura-maelstrom-12b-v1_illuminati_imatrix_v1.dat input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ1_M.gguf IQ1_M
C:\Quanter\llama.cpp\llama-quantize --imatrix krakensakura-maelstrom-12b-v1_illuminati_imatrix_v1.dat input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\input.gguf B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ1_S.gguf IQ1_S

72
kraken_upload.bat Normal file
View File

@@ -0,0 +1,72 @@
@echo off
setlocal
:: --- Configuration ---
:: Set the restart interval in seconds (5 minutes = 300 seconds)
set "RESTART_INTERVAL=600"
:: Set a unique title for the command window that will run the uploads
set "UPLOAD_WINDOW_TITLE=MyHFUploadProcess"
:main_loop
echo.
echo =================================================================
echo [%time%] Starting a new 10-minute upload cycle.
echo =================================================================
echo.
:: Create a temporary batch file with all the upload commands.
:: This is cleaner than running them one by one.
(
echo @echo off
echo echo Starting hf uploads...
echo hf upload EldritchLabs/KrakenSakura-Maelstrom-12B-v1 B:\12B\KrakenSakura-Maelstrom-12B-v1\model-00001-of-00005.safetensors
echo hf upload EldritchLabs/KrakenSakura-Maelstrom-12B-v1 B:\12B\KrakenSakura-Maelstrom-12B-v1\model-00002-of-00005.safetensors
echo hf upload EldritchLabs/KrakenSakura-Maelstrom-12B-v1 B:\12B\KrakenSakura-Maelstrom-12B-v1\model-00003-of-00005.safetensors
echo hf upload EldritchLabs/KrakenSakura-Maelstrom-12B-v1 B:\12B\KrakenSakura-Maelstrom-12B-v1\model-00004-of-00005.safetensors
echo hf upload EldritchLabs/KrakenSakura-Maelstrom-12B-v1 B:\12B\KrakenSakura-Maelstrom-12B-v1\model-00005-of-00005.safetensors
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelström-12B-v1-Q2_K.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelström-12B-v1-Q3_K_M.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelström-12B-v1-Q4_K_M.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelström-12B-v1-Q5_K_M.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelström-12B-v1-Q6_K.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelström-12B-v1-Q8_0.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ4_NL.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ4_XS.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ3_M.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ3_S.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ3_XS.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ3_XXS.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ2_M.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ2_S.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ2_XS.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ2_XXS.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ1_M.gguf
echo hf upload Naphula/KrakenSakura-Maelstrom-12B-v1-GGUF B:\12B\KrakenSakura-Maelstrom-12B-v1\KrakenSakura-Maelstrom-12B-v1-IQ1_S.gguf
echo echo All uploads finished or script was terminated.
) > temp_upload_commands.bat
:: Start the upload script in a NEW, SEPARATE command window with a specific title.
:: We DO NOT use /WAIT here. This is the key change.
start "%UPLOAD_WINDOW_TITLE%" cmd /c temp_upload_commands.bat
echo Upload process has been started in a separate window.
echo This script will now wait for %RESTART_INTERVAL% seconds before force-killing it.
echo Press Ctrl+C in THIS window to stop the auto-restart loop.
:: Wait for the specified interval.
timeout /t %RESTART_INTERVAL% /nobreak
echo.
echo [%time%] Time is up! Forcefully terminating the upload process.
:: Kill the process using the unique window title.
:: /F = Force kill
:: /T = Kill child processes as well (very important!)
taskkill /FI "WINDOWTITLE eq %UPLOAD_WINDOW_TITLE%" /F /T >nul 2>&1
echo Upload process terminated. Restarting the loop...
del temp_upload_commands.bat
goto main_loop

View File

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

32
mergekit_config.yml Normal file
View File

@@ -0,0 +1,32 @@
architecture: MistralForCausalLM
models:
- model: A:\LLM\.cache\12B\models--mistralai--Mistral-Nemo-Instruct-2407
- model: B:\12B\38-dare_linear
parameters:
weight: 0.8
density: 0.9
epsilon: 0.09
- model: B:\12B\39-delerp
parameters:
weight: 0.6
density: 0.9
epsilon: 0.09
- model: B:\12B\40-cvs
parameters:
weight: 0.6
density: 0.9
epsilon: 0.09
merge_method: delerp_della
base_model: A:\LLM\.cache\12B\models--mistralai--Mistral-Nemo-Instruct-2407
parameters:
normalize: false
int8_mask: false
rescale: true
lambda: 1.0 # Global lambda
lmbda: 1.0 # Individual lambda
tokenizer:
source: union
chat_template: auto
dtype: float32
out_dtype: bfloat16
name: 🦑 KrakenSakura-Maelström-12B-v1

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

23
special_tokens_map.json Normal file
View File

@@ -0,0 +1,23 @@
{
"bos_token": {
"content": "<s>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
},
"eos_token": {
"content": "</s>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
},
"unk_token": {
"content": "<unk>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
}
}

3
tokenizer.json Normal file
View File

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

8043
tokenizer_config.json Normal file

File diff suppressed because it is too large Load Diff