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

Model: llm-jp/llm-jp-3-8x1.8b
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-07-11 08:11:06 +08:00
commit fec0225e6e
12 changed files with 1113 additions and 0 deletions

53
.gitattributes vendored Normal file
View File

@@ -0,0 +1,53 @@
*.7z filter=lfs diff=lfs merge=lfs -text
*.arrow filter=lfs diff=lfs merge=lfs -text
*.bin filter=lfs diff=lfs merge=lfs -text
*.bin.* filter=lfs diff=lfs merge=lfs -text
*.bz2 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
*.model filter=lfs diff=lfs merge=lfs -text
*.msgpack 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
*.pt filter=lfs diff=lfs merge=lfs -text
*.pth filter=lfs diff=lfs merge=lfs -text
*.rar filter=lfs diff=lfs merge=lfs -text
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.tar.* filter=lfs diff=lfs merge=lfs -text
*.tflite filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zstandard filter=lfs diff=lfs merge=lfs -text
*.tfevents* filter=lfs diff=lfs merge=lfs -text
*.db* filter=lfs diff=lfs merge=lfs -text
*.ark* filter=lfs diff=lfs merge=lfs -text
**/*ckpt*data* filter=lfs diff=lfs merge=lfs -text
**/*ckpt*.meta filter=lfs diff=lfs merge=lfs -text
**/*ckpt*.index filter=lfs diff=lfs merge=lfs -text
*.ckpt filter=lfs diff=lfs merge=lfs -text
*.gguf* filter=lfs diff=lfs merge=lfs -text
*.ggml filter=lfs diff=lfs merge=lfs -text
*.llamafile* filter=lfs diff=lfs merge=lfs -text
*.pt2 filter=lfs diff=lfs merge=lfs -text
*.mlmodel filter=lfs diff=lfs merge=lfs -text
*.npy filter=lfs diff=lfs merge=lfs -text
*.npz filter=lfs diff=lfs merge=lfs -text
*.pickle filter=lfs diff=lfs merge=lfs -text
*.pkl filter=lfs diff=lfs merge=lfs -text
*.tar filter=lfs diff=lfs merge=lfs -text
*.wasm filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text
model-00002-of-00004.safetensors filter=lfs diff=lfs merge=lfs -text
model-00001-of-00004.safetensors filter=lfs diff=lfs merge=lfs -text
tokenizer.json filter=lfs diff=lfs merge=lfs -text
model-00003-of-00004.safetensors filter=lfs diff=lfs merge=lfs -text
model-00004-of-00004.safetensors filter=lfs diff=lfs merge=lfs -text

230
README.md Normal file
View File

@@ -0,0 +1,230 @@
---
license: apache-2.0
language:
- en
- ja
programming_language:
- C
- C++
- C#
- Go
- Java
- JavaScript
- Lua
- PHP
- Python
- Ruby
- Rust
- Scala
- TypeScript
pipeline_tag: text-generation
library_name: transformers
inference: false
---
# llm-jp-3-8x1.8b
LLM-jp-3 is the series of large language models developed by the [Research and Development Center for Large Language Models](https://llmc.nii.ac.jp/) at the [National Institute of Informatics](https://www.nii.ac.jp/en/).
This repository provides the **llm-jp-3-8x1.8b** model.
For an overview of the LLM-jp-3 models across different parameter sizes, please refer to:
- [LLM-jp-3 Pre-trained Models](https://huggingface.co/collections/llm-jp/llm-jp-3-pre-trained-models-672c6096472b65839d76a1fa)
- [LLM-jp-3 Fine-tuned Models](https://huggingface.co/collections/llm-jp/llm-jp-3-fine-tuned-models-672c621db852a01eae939731).
Checkpoints format: Hugging Face Transformers
## Required Libraries and Their Versions
- torch>=2.3.0
- transformers>=4.40.1
- tokenizers>=0.19.1
- accelerate>=0.29.3
- flash-attn>=2.5.8
## Usage
```python
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("llm-jp/llm-jp-3-8x1.8b")
model = AutoModelForCausalLM.from_pretrained("llm-jp/llm-jp-3-8x1.8b", device_map="auto", torch_dtype=torch.bfloat16)
text = "自然言語処理とは何か"
tokenized_input = tokenizer.encode(text, add_special_tokens=False, return_tensors="pt").to(model.device)
with torch.no_grad():
output = model.generate(
tokenized_input,
max_new_tokens=100,
do_sample=True,
top_p=0.95,
temperature=0.7,
repetition_penalty=1.05,
)[0]
print(tokenizer.decode(output))
```
## Model Details
- **Model type:** Transformer-based Language Model
- **Total seen tokens:** 2.1T tokens
|Params|Layers|Hidden size|Heads|Routed Experts|Activated Experts|Context length|Embedding parameters|Non-embedding parameters|Activated parameters|Total parameters|
|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|
|8x1.8b|24|2048|16|8|2|4096|407,498,752|8,858,863,616|2,924,279,808|9,266,362,368|9,266,362,368|
|8x13b|40|5120|40|8|2|4096|1,018,746,880|72,144,081,920|22,200,806,400|73,162,828,800|
If you would like to learn more about the pretraining of the LLM-jp-3 MoE series, please refer to this [blog post](https://llm-jp.nii.ac.jp/blog/2025/03/27/moe3.html).
## Tokenizer
The tokenizer of this model is based on [huggingface/tokenizers](https://github.com/huggingface/tokenizers) Unigram byte-fallback model.
The vocabulary entries were converted from [`llm-jp-tokenizer v3.0`](https://github.com/llm-jp/llm-jp-tokenizer/releases/tag/v3.0b2).
Please refer to [README.md](https://github.com/llm-jp/llm-jp-tokenizer) of `llm-jp-tokenizer` for details on the vocabulary construction procedure (the pure SentencePiece training does not reproduce our vocabulary).
## Datasets
### Pre-training
The models have been pre-trained using a blend of the following datasets.
| Language | Dataset | Tokens|
|:---|:---|---:|
|Japanese|[Wikipedia](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|2.6B
||[Common Crawl](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|762.8B
||[WARP/PDF](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|237.3B
||[WARP/HTML](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|2.7B
||[Kaken](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|1.8B
|English|[Wikipedia](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|4.7B
||[Dolma/CC-head](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|608.5B
||[Dolma/C4](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|181.6B
||[Dolma/Reddit](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|83.1B
||[Dolma/PeS2o](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|62.9B
||[Dolma/Gutenberg](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|5.5B
||[Dolma/Wiki](https://gitlab.llm-jp.nii.ac.jp/datasets/llm-jp-corpus-v3)|3.9B
|Code|[The Stack](https://huggingface.co/datasets/bigcode/the-stack)|114.1B
|Chinese|[Wikipedia](https://huggingface.co/datasets/bigcode/the-stack)|0.8B
|Korean|[Wikipedia](https://huggingface.co/datasets/bigcode/the-stack)|0.3B
### Post-training
We have fine-tuned the pre-trained checkpoint with supervised fine-tuning and further aligned it with Direct Preference Optimization.
#### Supervised Fine-tuning
The datasets used for supervised fine-tuning are as follows:
| Language | Dataset | Description |
|:---|:---|:---|
|Japanese|[ichikara-instruction-004-002](https://liat-aip.sakura.ne.jp/wp/llm%e3%81%ae%e3%81%9f%e3%82%81%e3%81%ae%e6%97%a5%e6%9c%ac%e8%aa%9e%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%a9%e3%82%af%e3%82%b7%e3%83%a7%e3%83%b3%e3%83%87%e3%83%bc%e3%82%bf%e4%bd%9c%e6%88%90/llm%e3%81%ae%e3%81%9f%e3%82%81%e3%81%ae%e6%97%a5%e6%9c%ac%e8%aa%9e%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%a9%e3%82%af%e3%82%b7%e3%83%a7%e3%83%b3%e3%83%87%e3%83%bc%e3%82%bf-%e5%85%ac%e9%96%8b/)| A manually constructed instruction dataset. |
| |[AnswerCarefully (ver2.0)](https://huggingface.co/datasets/llm-jp/AnswerCarefully)| A manually constructed instruction dataset focusing on LLMs' safety. |
| |ichikara-instruction-format| A small subset of the ichikara-instruction dataset, edited with some constraints on the output format. |
| |[AutoMultiTurnByCalm3-22B](https://huggingface.co/datasets/kanhatakeyama/AutoMultiTurnByCalm3-22B)| A synthetic instruction dataset. |
| |[ramdom-to-fixed-multiturn-Calm3](https://huggingface.co/datasets/kanhatakeyama/ramdom-to-fixed-multiturn-Calm3)| A synthetic instruction dataset. |
| |[wizardlm8x22b-logical-math-coding-sft-ja](https://huggingface.co/datasets/llm-jp/wizardlm8x22b-logical-math-coding-sft-ja)| A synthetic instruction dataset. |
| |[magpie-sft-v1.0](https://huggingface.co/datasets/llm-jp/magpie-sft-v1.0)| A synthetic instruction dataset we created. |
|English|[Daring-Anteater](https://huggingface.co/datasets/nvidia/Daring-Anteater)| - |
| |[FLAN](https://huggingface.co/datasets/llm-jp/FLAN/blob/main/README.md) | - |
|Japanese & English|[Synthetic-JP-EN-Coding-Dataset](https://huggingface.co/datasets/llm-jp/Synthetic-JP-EN-Coding-Dataset)| A synthetic instruction dataset. |
#### Direct Preference Optimization
The datasets used for supervised fine-tuning are as follows:
| Language | Dataset | Description |
|:---|:---|:---|
|Japanese|[aya-ja-evol-inst](https://huggingface.co/datasets/llm-jp/aya-ja-evol-inst) | A synthetic preference dataset focusing on LLMs' helpfulness. |
| |[ac-self-inst](https://huggingface.co/datasets/llm-jp/ac-self-inst)| A synthetic preference dataset focusing on LLMs' safety. |
## Evaluation
### llm-jp-eval (v1.4.1)
We evaluated the models using 100 examples from the dev split. Note that we skipped the CG (Code Generation) task.
| Model name | average | EL | FA | HE | MC | MR | MT | NLI | QA | RC | SUM |
| :--- | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: |
| [llm-jp/llm-jp-3-7.2b](https://huggingface.co/llm-jp/llm-jp-3-7.2b) | 0.455 | 0.400 | 0.266 | 0.350 | 0.547 | 0.430 | 0.809 | 0.362 | 0.545 | 0.814 | 0.028 |
| [llm-jp/llm-jp-3-7.2b-instruct3](https://huggingface.co/llm-jp/llm-jp-3-7.2b-instruct3) | 0.514 | 0.447 | 0.245 | 0.435 | 0.693 | 0.510 | 0.826 | 0.588 | 0.497 | 0.838 | 0.059 |
| [llm-jp/llm-jp-3-172b](https://huggingface.co/llm-jp/llm-jp-3-172b) | 0.543 | 0.408 | 0.266 | 0.515 | 0.763 | 0.670 | 0.823 | 0.574 | 0.569 | 0.829 | 0.015 |
| [llm-jp/llm-jp-3-172b-instruct3](https://huggingface.co/llm-jp/llm-jp-3-172b-instruct3) | 0.613 | 0.517 | 0.271 | 0.570 | 0.873 | 0.730 | 0.844 | 0.728 | 0.601 | 0.883 | 0.112 |
| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
| [llm-jp/llm-jp-3-8x1.8b](https://huggingface.co/llm-jp/llm-jp-3-8x1.8b) | 0.454 | 0.387 | 0.241 | 0.265 | 0.530 | 0.510 | 0.810 | 0.476 | 0.537 | 0.755 | 0.026 |
| [llm-jp/llm-jp-3-8x1.8b-instruct2](https://huggingface.co/llm-jp/llm-jp-3-8x1.8b-instruct2) | 0.513 | 0.448 | 0.230 | 0.405 | 0.643 | 0.560 | 0.815 | 0.566 | 0.561 | 0.837 | 0.066 |
| [llm-jp/llm-jp-3-8x1.8b-instruct3](https://huggingface.co/llm-jp/llm-jp-3-8x1.8b-instruct3) | 0.515 | 0.452 | 0.227 | 0.425 | 0.683 | 0.540 | 0.821 | 0.558 | 0.545 | 0.819 | 0.075 |
| [llm-jp/llm-jp-3-8x13b](https://huggingface.co/llm-jp/llm-jp-3-8x13b) | 0.587 | 0.545 | 0.291 | 0.495 | 0.803 | 0.720 | 0.838 | 0.578 | 0.646 | 0.854 | 0.097 |
| [llm-jp/llm-jp-3-8x13b-instruct2](https://huggingface.co/llm-jp/llm-jp-3-8x13b-instruct2) | 0.626 | 0.552 | 0.289 | 0.525 | 0.897 | 0.750 | 0.836 | 0.682 | 0.637 | 0.907 | 0.182 |
| [llm-jp/llm-jp-3-8x13b-instruct3](https://huggingface.co/llm-jp/llm-jp-3-8x13b-instruct3) | 0.625 | 0.548 | 0.285 | 0.525 | 0.907 | 0.760 | 0.839 | 0.688 | 0.627 | 0.904 | 0.164 |
### Japanese MT Bench
We evaluated the models using `gpt-4o-2024-08-06`.
The scores represent the average values obtained from five rounds of inference and evaluation.
For more details, please refer to the [codes](https://github.com/llm-jp/llm-jp-judge).
| Model name | average | coding | extraction | humanities | math | reasoning | roleplay | stem | writing |
| :--- | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: |
| [llm-jp/llm-jp-3-7.2b-instruct3](https://huggingface.co/llm-jp/llm-jp-3-7.2b-instruct3) | 5.79 | 3.46 | 5.94 | 8.15 | 3.95 | 4.46 | 7.51 | 6.23 | 6.66 |
| [llm-jp/llm-jp-3-172b-instruct3](https://huggingface.co/llm-jp/llm-jp-3-172b-instruct3) | 6.36 | 4.24 | 6.66 | 8.11 | 4.58 | 5.74 | 7.44 | 6.76 | 7.36 |
| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
| [llm-jp/llm-jp-3-8x1.8b-instruct2](https://huggingface.co/llm-jp/llm-jp-3-8x1.8b-instruct2) | 5.47 | 3.47 | 4.90 | 7.78 | 3.51 | 4.38 | 6.84 | 6.35 | 6.54 |
| [llm-jp/llm-jp-3-8x1.8b-instruct3](https://huggingface.co/llm-jp/llm-jp-3-8x1.8b-instruct3) | 5.52 | 3.60 | 5.23 | 7.81 | 3.87 | 4.53 | 6.40 | 5.98 | 6.72 |
| [llm-jp/llm-jp-3-8x13b-instruct2](https://huggingface.co/llm-jp/llm-jp-3-8x13b-instruct2) | 6.62 | 4.50 | 6.53 | 8.56 | 5.30 | 6.03 | 7.86 | 7.10 | 7.12 |
| [llm-jp/llm-jp-3-8x13b-instruct3](https://huggingface.co/llm-jp/llm-jp-3-8x13b-instruct3) | 6.58 | 4.90 | 6.41 | 8.32 | 5.37 | 5.20 | 7.75 | 7.24 | 7.48 |
### AnswerCarefully-Eval
[AnswerCarefully-Eval](https://www.anlp.jp/proceedings/annual_meeting/2025/pdf_dir/Q4-19.pdf) assesses the safety of Japanese language model outputs using the LLM-as-a-Judge approach, based on the test set from [llm-jp/AnswerCarefully](https://huggingface.co/datasets/llm-jp/AnswerCarefully).
We evaluated the models using `gpt-4-0613`.
The scores represent the average values obtained from five rounds of inference and evaluation.
| Model name | Acceptance rate (%, ↑) | Violation rate (%, ↓) |
| :--- | ---: | ---: |
| [llm-jp/llm-jp-3-7.2b-instruct3](https://huggingface.co/llm-jp/llm-jp-3-7.2b-instruct3) | 92.86 | 2.44 |
| [llm-jp/llm-jp-3-172b-instruct3](https://huggingface.co/llm-jp/llm-jp-3-172b-instruct3) | 95.48 | 1.67 |
| --- | --- | --- |
| [llm-jp/llm-jp-3-8x1.8b-instruct2](https://huggingface.co/llm-jp/llm-jp-3-8x1.8b-instruct2) | 86.13 | 7.56 |
| [llm-jp/llm-jp-3-8x1.8b-instruct3](https://huggingface.co/llm-jp/llm-jp-3-8x1.8b-instruct3) | 92.20 | 2.20 |
| [llm-jp/llm-jp-3-8x13b-instruct2](https://huggingface.co/llm-jp/llm-jp-3-8x13b-instruct2) | 88.63 | 6.01 |
| [llm-jp/llm-jp-3-8x13b-instruct3](https://huggingface.co/llm-jp/llm-jp-3-8x13b-instruct3) | 94.35 | 1.55 |
## Risks and Limitations
The models released here are in the early stages of our research and development and have not been tuned to ensure outputs align with human intent and safety considerations.
## Send Questions to
llm-jp(at)nii.ac.jp
## License
[Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0)
## How to cite
If you find our work helpful, please feel free to cite the paper.
```
@inproceedings{
nakamura2025dropupcycling,
title={Drop-Upcycling: Training Sparse Mixture of Experts with Partial Re-initialization},
author={Taishi Nakamura and Takuya Akiba and Kazuki Fujii and Yusuke Oda and Rio Yokota and Jun Suzuki},
booktitle={The Thirteenth International Conference on Learning Representations},
year={2025},
url={https://openreview.net/forum?id=gx1wHnf5Vp}
}
```
## Model Card Authors
*The names are listed in alphabetical order.*
Hirokazu Kiyomaru, Takashi Kodama and Taishi Nakamura.

32
config.json Normal file
View File

@@ -0,0 +1,32 @@
{
"architectures": [
"MixtralForCausalLM"
],
"attention_bias": false,
"attention_dropout": 0.0,
"bos_token_id": 1,
"eos_token_id": 2,
"hidden_act": "silu",
"hidden_size": 2048,
"initializer_range": 0.02,
"intermediate_size": 7168,
"max_position_embeddings": 4096,
"mlp_bias": false,
"model_type": "mixtral",
"num_attention_heads": 16,
"num_experts_per_tok": 2,
"num_hidden_layers": 24,
"num_key_value_heads": 16,
"num_local_experts": 8,
"output_router_logits": false,
"rms_norm_eps": 1e-05,
"rope_theta": 10000,
"router_aux_loss_coef": 0.01,
"router_jitter_noise": 0.0,
"sliding_window": null,
"tie_word_embeddings": false,
"torch_dtype": "bfloat16",
"transformers_version": "4.46.0",
"use_cache": true,
"vocab_size": 99584
}

1
configuration.json Normal file
View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,754 @@
{
"metadata": {
"total_size": 18533519360
},
"weight_map": {
"model.embed_tokens.weight": "model-00001-of-00004.safetensors",
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.gate.weight": "model-00001-of-00004.safetensors",
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.gate.weight": "model-00001-of-00004.safetensors",
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.gate.weight": "model-00001-of-00004.safetensors",
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.gate.weight": "model-00001-of-00004.safetensors",
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.gate.weight": "model-00001-of-00004.safetensors",
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.gate.weight": "model-00001-of-00004.safetensors",
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.6.block_sparse_moe.gate.weight": "model-00001-of-00004.safetensors",
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.7.block_sparse_moe.gate.weight": "model-00001-of-00004.safetensors",
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.8.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.8.block_sparse_moe.gate.weight": "model-00001-of-00004.safetensors",
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.9.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.9.block_sparse_moe.gate.weight": "model-00001-of-00004.safetensors",
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.10.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.10.block_sparse_moe.gate.weight": "model-00001-of-00004.safetensors",
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.11.input_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
"model.layers.11.block_sparse_moe.gate.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.0.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.1.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.2.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.3.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.4.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.4.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.5.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.5.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.6.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.6.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.7.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.7.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.2.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.3.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.4.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.5.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.6.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.0.block_sparse_moe.experts.7.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.0.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.1.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.2.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.3.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.4.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.4.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.5.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.5.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.6.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.6.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.7.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.7.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.2.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.3.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.4.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.5.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.6.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.1.block_sparse_moe.experts.7.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.0.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.1.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.2.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.3.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.4.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.4.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.5.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.5.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.6.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.6.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.7.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.7.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.2.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.3.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.4.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.5.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.6.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.2.block_sparse_moe.experts.7.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.0.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.1.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.2.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.3.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.4.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.4.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.5.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.5.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.6.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.6.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.7.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.7.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.2.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.3.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.4.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.5.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.6.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.3.block_sparse_moe.experts.7.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.0.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.1.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.2.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.3.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.4.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.4.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.5.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.5.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.6.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.6.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.7.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.7.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.2.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.3.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.4.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.5.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.6.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.4.block_sparse_moe.experts.7.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.0.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.0.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.1.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.1.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.2.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.2.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.3.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.3.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.4.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.4.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.5.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.5.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.6.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.6.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.7.w1.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.7.w3.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.0.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.1.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.2.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.3.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.4.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.5.w2.weight": "model-00001-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.6.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.5.block_sparse_moe.experts.7.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.2.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.3.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.4.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.4.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.5.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.5.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.6.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.6.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.7.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.7.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.4.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.5.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.6.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.6.block_sparse_moe.experts.7.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.2.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.3.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.4.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.4.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.5.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.5.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.6.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.6.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.7.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.7.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.4.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.5.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.6.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.7.block_sparse_moe.experts.7.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.2.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.3.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.4.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.4.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.5.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.5.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.6.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.6.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.7.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.7.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.4.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.5.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.6.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.8.block_sparse_moe.experts.7.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.2.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.3.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.4.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.4.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.5.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.5.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.6.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.6.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.7.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.7.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.4.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.5.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.6.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.9.block_sparse_moe.experts.7.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.2.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.3.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.4.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.4.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.5.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.5.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.6.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.6.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.7.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.7.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.4.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.5.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.6.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.10.block_sparse_moe.experts.7.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.2.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.3.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.4.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.4.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.5.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.5.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.6.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.6.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.7.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.7.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.0.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.1.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.2.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.3.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.4.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.5.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.6.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.11.block_sparse_moe.experts.7.w2.weight": "model-00002-of-00004.safetensors",
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.12.block_sparse_moe.gate.weight": "model-00002-of-00004.safetensors",
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.13.block_sparse_moe.gate.weight": "model-00002-of-00004.safetensors",
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.14.block_sparse_moe.gate.weight": "model-00002-of-00004.safetensors",
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.15.block_sparse_moe.gate.weight": "model-00002-of-00004.safetensors",
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.16.block_sparse_moe.gate.weight": "model-00002-of-00004.safetensors",
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.17.block_sparse_moe.gate.weight": "model-00002-of-00004.safetensors",
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.18.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.18.block_sparse_moe.gate.weight": "model-00002-of-00004.safetensors",
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.19.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.19.block_sparse_moe.gate.weight": "model-00002-of-00004.safetensors",
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.20.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.20.block_sparse_moe.gate.weight": "model-00002-of-00004.safetensors",
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.21.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.21.block_sparse_moe.gate.weight": "model-00002-of-00004.safetensors",
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.22.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.22.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.22.block_sparse_moe.gate.weight": "model-00002-of-00004.safetensors",
"model.layers.23.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.23.input_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.23.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.23.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.23.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
"model.layers.23.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
"model.layers.23.block_sparse_moe.gate.weight": "model-00002-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.0.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.0.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.1.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.1.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.2.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.2.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.3.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.3.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.4.w1.weight": "model-00002-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.4.w3.weight": "model-00002-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.5.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.5.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.6.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.6.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.7.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.7.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.4.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.5.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.6.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.12.block_sparse_moe.experts.7.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.0.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.1.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.2.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.3.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.4.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.4.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.5.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.5.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.6.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.6.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.7.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.7.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.4.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.5.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.6.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.13.block_sparse_moe.experts.7.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.0.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.1.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.2.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.3.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.4.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.4.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.5.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.5.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.6.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.6.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.7.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.7.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.4.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.5.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.6.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.14.block_sparse_moe.experts.7.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.0.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.1.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.2.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.3.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.4.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.4.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.5.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.5.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.6.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.6.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.7.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.7.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.4.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.5.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.6.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.15.block_sparse_moe.experts.7.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.0.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.1.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.2.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.3.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.4.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.4.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.5.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.5.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.6.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.6.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.7.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.7.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.4.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.5.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.6.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.16.block_sparse_moe.experts.7.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.0.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.1.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.2.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.3.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.4.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.4.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.5.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.5.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.6.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.6.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.7.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.7.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.4.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.5.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.6.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.17.block_sparse_moe.experts.7.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.0.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.1.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.2.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.3.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.4.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.4.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.5.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.5.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.6.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.6.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.7.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.7.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.0.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.1.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.2.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.3.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.4.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.5.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.6.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.18.block_sparse_moe.experts.7.w2.weight": "model-00003-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.0.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.0.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.1.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.1.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.2.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.2.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.3.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.3.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.4.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.4.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.5.w1.weight": "model-00003-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.5.w3.weight": "model-00003-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.6.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.6.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.7.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.7.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.0.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.1.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.2.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.3.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.4.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.5.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.6.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.19.block_sparse_moe.experts.7.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.0.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.1.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.2.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.3.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.4.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.4.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.5.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.5.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.6.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.6.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.7.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.7.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.0.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.1.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.2.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.3.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.4.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.5.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.6.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.20.block_sparse_moe.experts.7.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.0.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.1.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.2.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.3.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.4.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.4.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.5.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.5.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.6.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.6.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.7.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.7.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.0.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.1.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.2.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.3.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.4.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.5.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.6.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.21.block_sparse_moe.experts.7.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.0.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.1.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.2.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.3.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.4.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.4.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.5.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.5.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.6.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.6.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.7.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.7.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.0.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.1.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.2.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.3.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.4.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.5.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.6.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.22.block_sparse_moe.experts.7.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.0.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.0.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.1.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.1.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.2.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.2.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.3.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.3.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.4.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.4.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.5.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.5.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.6.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.6.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.7.w1.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.7.w3.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.0.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.1.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.2.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.3.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.4.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.5.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.6.w2.weight": "model-00004-of-00004.safetensors",
"model.layers.23.block_sparse_moe.experts.7.w2.weight": "model-00004-of-00004.safetensors",
"model.norm.weight": "model-00004-of-00004.safetensors",
"lm_head.weight": "model-00004-of-00004.safetensors"
}
}

10
special_tokens_map.json Normal file
View File

@@ -0,0 +1,10 @@
{
"bos_token": "<s>",
"cls_token": "<CLS|LLM-jp>",
"eod_token": "</s>",
"eos_token": "</s>",
"mask_token": "<MASK|LLM-jp>",
"pad_token": "<PAD|LLM-jp>",
"sep_token": "<SEP|LLM-jp>",
"unk_token": "<unk>"
}

3
tokenizer.json Normal file
View File

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

18
tokenizer_config.json Normal file
View File

@@ -0,0 +1,18 @@
{
"add_bos_token": true,
"add_eos_token": false,
"unk_token": "<unk>",
"bos_token": "<s>",
"eos_token": "</s>",
"pad_token": "<PAD|LLM-jp>",
"cls_token": "<CLS|LLM-jp>",
"sep_token": "<SEP|LLM-jp>",
"eod_token": "</s>",
"mask_token": "<MASK|LLM-jp>",
"extra_ids": 0,
"sp_model_kwargs": {},
"model_max_length": 1000000000000000019884624838656,
"clean_up_tokenization_spaces": false,
"special_tokens_map_file": null,
"tokenizer_class": "PreTrainedTokenizerFast"
}