Instructions to use mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit"
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit
Run Hermes
hermes
- OpenClaw new
How to use mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit"
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- MLX LM
How to use mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit", "messages": [ {"role": "user", "content": "Hello"} ] }'
Add files using upload-large-folder tool
Browse files- README.md +1 -29
- model-00001-of-00006.safetensors +2 -2
- model-00002-of-00006.safetensors +2 -2
- model-00003-of-00006.safetensors +2 -2
- model-00004-of-00006.safetensors +2 -2
- model-00005-of-00006.safetensors +2 -2
- model-00006-of-00006.safetensors +2 -2
- model.safetensors.index.json +28 -28
README.md
CHANGED
|
@@ -2,35 +2,7 @@
|
|
| 2 |
license: mit
|
| 3 |
pipeline_tag: text-generation
|
| 4 |
library_name: mlx
|
|
|
|
| 5 |
tags:
|
| 6 |
- mlx
|
| 7 |
-
base_model: moonshotai/Kimi-Linear-48B-A3B-Instruct
|
| 8 |
---
|
| 9 |
-
|
| 10 |
-
# mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit
|
| 11 |
-
|
| 12 |
-
This model [mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit](https://huggingface.co/mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit) was
|
| 13 |
-
converted to MLX format from [moonshotai/Kimi-Linear-48B-A3B-Instruct](https://huggingface.co/moonshotai/Kimi-Linear-48B-A3B-Instruct)
|
| 14 |
-
using mlx-lm version **0.28.4**.
|
| 15 |
-
|
| 16 |
-
## Use with mlx
|
| 17 |
-
|
| 18 |
-
```bash
|
| 19 |
-
pip install mlx-lm
|
| 20 |
-
```
|
| 21 |
-
|
| 22 |
-
```python
|
| 23 |
-
from mlx_lm import load, generate
|
| 24 |
-
|
| 25 |
-
model, tokenizer = load("mlx-community/Kimi-Linear-48B-A3B-Instruct-4bit")
|
| 26 |
-
|
| 27 |
-
prompt = "hello"
|
| 28 |
-
|
| 29 |
-
if tokenizer.chat_template is not None:
|
| 30 |
-
messages = [{"role": "user", "content": prompt}]
|
| 31 |
-
prompt = tokenizer.apply_chat_template(
|
| 32 |
-
messages, add_generation_prompt=True
|
| 33 |
-
)
|
| 34 |
-
|
| 35 |
-
response = generate(model, tokenizer, prompt=prompt, verbose=True)
|
| 36 |
-
```
|
|
|
|
| 2 |
license: mit
|
| 3 |
pipeline_tag: text-generation
|
| 4 |
library_name: mlx
|
| 5 |
+
base_model: moonshotai/Kimi-Linear-48B-A3B-Instruct
|
| 6 |
tags:
|
| 7 |
- mlx
|
|
|
|
| 8 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
model-00001-of-00006.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c2e67b2c1b431e78a2331b837bb75b8c0e3cd80566379feb255a3663adb0f1e7
|
| 3 |
+
size 5151587757
|
model-00002-of-00006.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4f05018a6aec2ea12eb3866e3d31ba8477faca1396e18246f9581fffc7649f3
|
| 3 |
+
size 5224824506
|
model-00003-of-00006.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3724036209b2b49d4d9cbdd1d2f5e0702d8626441ac6c343144ee76deee9e2b
|
| 3 |
+
size 5218888514
|
model-00004-of-00006.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5170b87ec6456eec97104487bef4f5129f3ba13157b7c0cdd5c3f06fd3f79bb
|
| 3 |
+
size 5224824723
|
model-00005-of-00006.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43428e7d22d9dde1377d0eee2544be9ed3a6a439cf27b2f3e5385b7baff450a1
|
| 3 |
+
size 5224824701
|
model-00006-of-00006.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e36748ad3261fc25b54c34e384785d183fe61bd9603197d4e5097af2dd3546ee
|
| 3 |
+
size 1596289084
|
model.safetensors.index.json
CHANGED
|
@@ -192,10 +192,10 @@
|
|
| 192 |
"model.layers.11.mlp.switch_mlp.up_proj.scales": "model-00003-of-00006.safetensors",
|
| 193 |
"model.layers.11.mlp.switch_mlp.up_proj.weight": "model-00003-of-00006.safetensors",
|
| 194 |
"model.layers.11.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 195 |
-
"model.layers.11.self_attn.
|
| 196 |
-
"model.layers.11.self_attn.
|
| 197 |
-
"model.layers.11.self_attn.
|
| 198 |
-
"model.layers.11.self_attn.
|
| 199 |
"model.layers.11.self_attn.kv_b_proj.biases": "model-00003-of-00006.safetensors",
|
| 200 |
"model.layers.11.self_attn.kv_b_proj.scales": "model-00003-of-00006.safetensors",
|
| 201 |
"model.layers.11.self_attn.kv_b_proj.weight": "model-00003-of-00006.safetensors",
|
|
@@ -400,10 +400,10 @@
|
|
| 400 |
"model.layers.15.mlp.switch_mlp.up_proj.scales": "model-00003-of-00006.safetensors",
|
| 401 |
"model.layers.15.mlp.switch_mlp.up_proj.weight": "model-00003-of-00006.safetensors",
|
| 402 |
"model.layers.15.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 403 |
-
"model.layers.15.self_attn.
|
| 404 |
-
"model.layers.15.self_attn.
|
| 405 |
-
"model.layers.15.self_attn.
|
| 406 |
-
"model.layers.15.self_attn.
|
| 407 |
"model.layers.15.self_attn.kv_b_proj.biases": "model-00003-of-00006.safetensors",
|
| 408 |
"model.layers.15.self_attn.kv_b_proj.scales": "model-00003-of-00006.safetensors",
|
| 409 |
"model.layers.15.self_attn.kv_b_proj.weight": "model-00003-of-00006.safetensors",
|
|
@@ -608,10 +608,10 @@
|
|
| 608 |
"model.layers.19.mlp.switch_mlp.up_proj.scales": "model-00004-of-00006.safetensors",
|
| 609 |
"model.layers.19.mlp.switch_mlp.up_proj.weight": "model-00004-of-00006.safetensors",
|
| 610 |
"model.layers.19.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 611 |
-
"model.layers.19.self_attn.
|
| 612 |
-
"model.layers.19.self_attn.
|
| 613 |
-
"model.layers.19.self_attn.
|
| 614 |
-
"model.layers.19.self_attn.
|
| 615 |
"model.layers.19.self_attn.kv_b_proj.biases": "model-00004-of-00006.safetensors",
|
| 616 |
"model.layers.19.self_attn.kv_b_proj.scales": "model-00004-of-00006.safetensors",
|
| 617 |
"model.layers.19.self_attn.kv_b_proj.weight": "model-00004-of-00006.safetensors",
|
|
@@ -873,10 +873,10 @@
|
|
| 873 |
"model.layers.23.mlp.switch_mlp.up_proj.scales": "model-00005-of-00006.safetensors",
|
| 874 |
"model.layers.23.mlp.switch_mlp.up_proj.weight": "model-00005-of-00006.safetensors",
|
| 875 |
"model.layers.23.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
|
| 876 |
-
"model.layers.23.self_attn.
|
| 877 |
-
"model.layers.23.self_attn.
|
| 878 |
-
"model.layers.23.self_attn.
|
| 879 |
-
"model.layers.23.self_attn.
|
| 880 |
"model.layers.23.self_attn.kv_b_proj.biases": "model-00005-of-00006.safetensors",
|
| 881 |
"model.layers.23.self_attn.kv_b_proj.scales": "model-00005-of-00006.safetensors",
|
| 882 |
"model.layers.23.self_attn.kv_b_proj.weight": "model-00005-of-00006.safetensors",
|
|
@@ -1024,10 +1024,10 @@
|
|
| 1024 |
"model.layers.26.mlp.switch_mlp.up_proj.scales": "model-00006-of-00006.safetensors",
|
| 1025 |
"model.layers.26.mlp.switch_mlp.up_proj.weight": "model-00006-of-00006.safetensors",
|
| 1026 |
"model.layers.26.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
|
| 1027 |
-
"model.layers.26.self_attn.
|
| 1028 |
-
"model.layers.26.self_attn.
|
| 1029 |
-
"model.layers.26.self_attn.
|
| 1030 |
-
"model.layers.26.self_attn.
|
| 1031 |
"model.layers.26.self_attn.kv_b_proj.biases": "model-00006-of-00006.safetensors",
|
| 1032 |
"model.layers.26.self_attn.kv_b_proj.scales": "model-00006-of-00006.safetensors",
|
| 1033 |
"model.layers.26.self_attn.kv_b_proj.weight": "model-00006-of-00006.safetensors",
|
|
@@ -1061,10 +1061,10 @@
|
|
| 1061 |
"model.layers.3.mlp.switch_mlp.up_proj.scales": "model-00001-of-00006.safetensors",
|
| 1062 |
"model.layers.3.mlp.switch_mlp.up_proj.weight": "model-00001-of-00006.safetensors",
|
| 1063 |
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
|
| 1064 |
-
"model.layers.3.self_attn.
|
| 1065 |
-
"model.layers.3.self_attn.
|
| 1066 |
-
"model.layers.3.self_attn.
|
| 1067 |
-
"model.layers.3.self_attn.
|
| 1068 |
"model.layers.3.self_attn.kv_b_proj.biases": "model-00001-of-00006.safetensors",
|
| 1069 |
"model.layers.3.self_attn.kv_b_proj.scales": "model-00001-of-00006.safetensors",
|
| 1070 |
"model.layers.3.self_attn.kv_b_proj.weight": "model-00001-of-00006.safetensors",
|
|
@@ -1269,10 +1269,10 @@
|
|
| 1269 |
"model.layers.7.mlp.switch_mlp.up_proj.scales": "model-00002-of-00006.safetensors",
|
| 1270 |
"model.layers.7.mlp.switch_mlp.up_proj.weight": "model-00002-of-00006.safetensors",
|
| 1271 |
"model.layers.7.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
|
| 1272 |
-
"model.layers.7.self_attn.
|
| 1273 |
-
"model.layers.7.self_attn.
|
| 1274 |
-
"model.layers.7.self_attn.
|
| 1275 |
-
"model.layers.7.self_attn.
|
| 1276 |
"model.layers.7.self_attn.kv_b_proj.biases": "model-00002-of-00006.safetensors",
|
| 1277 |
"model.layers.7.self_attn.kv_b_proj.scales": "model-00002-of-00006.safetensors",
|
| 1278 |
"model.layers.7.self_attn.kv_b_proj.weight": "model-00002-of-00006.safetensors",
|
|
|
|
| 192 |
"model.layers.11.mlp.switch_mlp.up_proj.scales": "model-00003-of-00006.safetensors",
|
| 193 |
"model.layers.11.mlp.switch_mlp.up_proj.weight": "model-00003-of-00006.safetensors",
|
| 194 |
"model.layers.11.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 195 |
+
"model.layers.11.self_attn.kv_a_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 196 |
+
"model.layers.11.self_attn.kv_a_proj_with_mqa.biases": "model-00003-of-00006.safetensors",
|
| 197 |
+
"model.layers.11.self_attn.kv_a_proj_with_mqa.scales": "model-00003-of-00006.safetensors",
|
| 198 |
+
"model.layers.11.self_attn.kv_a_proj_with_mqa.weight": "model-00003-of-00006.safetensors",
|
| 199 |
"model.layers.11.self_attn.kv_b_proj.biases": "model-00003-of-00006.safetensors",
|
| 200 |
"model.layers.11.self_attn.kv_b_proj.scales": "model-00003-of-00006.safetensors",
|
| 201 |
"model.layers.11.self_attn.kv_b_proj.weight": "model-00003-of-00006.safetensors",
|
|
|
|
| 400 |
"model.layers.15.mlp.switch_mlp.up_proj.scales": "model-00003-of-00006.safetensors",
|
| 401 |
"model.layers.15.mlp.switch_mlp.up_proj.weight": "model-00003-of-00006.safetensors",
|
| 402 |
"model.layers.15.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 403 |
+
"model.layers.15.self_attn.kv_a_layernorm.weight": "model-00003-of-00006.safetensors",
|
| 404 |
+
"model.layers.15.self_attn.kv_a_proj_with_mqa.biases": "model-00003-of-00006.safetensors",
|
| 405 |
+
"model.layers.15.self_attn.kv_a_proj_with_mqa.scales": "model-00003-of-00006.safetensors",
|
| 406 |
+
"model.layers.15.self_attn.kv_a_proj_with_mqa.weight": "model-00003-of-00006.safetensors",
|
| 407 |
"model.layers.15.self_attn.kv_b_proj.biases": "model-00003-of-00006.safetensors",
|
| 408 |
"model.layers.15.self_attn.kv_b_proj.scales": "model-00003-of-00006.safetensors",
|
| 409 |
"model.layers.15.self_attn.kv_b_proj.weight": "model-00003-of-00006.safetensors",
|
|
|
|
| 608 |
"model.layers.19.mlp.switch_mlp.up_proj.scales": "model-00004-of-00006.safetensors",
|
| 609 |
"model.layers.19.mlp.switch_mlp.up_proj.weight": "model-00004-of-00006.safetensors",
|
| 610 |
"model.layers.19.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 611 |
+
"model.layers.19.self_attn.kv_a_layernorm.weight": "model-00004-of-00006.safetensors",
|
| 612 |
+
"model.layers.19.self_attn.kv_a_proj_with_mqa.biases": "model-00004-of-00006.safetensors",
|
| 613 |
+
"model.layers.19.self_attn.kv_a_proj_with_mqa.scales": "model-00004-of-00006.safetensors",
|
| 614 |
+
"model.layers.19.self_attn.kv_a_proj_with_mqa.weight": "model-00004-of-00006.safetensors",
|
| 615 |
"model.layers.19.self_attn.kv_b_proj.biases": "model-00004-of-00006.safetensors",
|
| 616 |
"model.layers.19.self_attn.kv_b_proj.scales": "model-00004-of-00006.safetensors",
|
| 617 |
"model.layers.19.self_attn.kv_b_proj.weight": "model-00004-of-00006.safetensors",
|
|
|
|
| 873 |
"model.layers.23.mlp.switch_mlp.up_proj.scales": "model-00005-of-00006.safetensors",
|
| 874 |
"model.layers.23.mlp.switch_mlp.up_proj.weight": "model-00005-of-00006.safetensors",
|
| 875 |
"model.layers.23.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
|
| 876 |
+
"model.layers.23.self_attn.kv_a_layernorm.weight": "model-00005-of-00006.safetensors",
|
| 877 |
+
"model.layers.23.self_attn.kv_a_proj_with_mqa.biases": "model-00005-of-00006.safetensors",
|
| 878 |
+
"model.layers.23.self_attn.kv_a_proj_with_mqa.scales": "model-00005-of-00006.safetensors",
|
| 879 |
+
"model.layers.23.self_attn.kv_a_proj_with_mqa.weight": "model-00005-of-00006.safetensors",
|
| 880 |
"model.layers.23.self_attn.kv_b_proj.biases": "model-00005-of-00006.safetensors",
|
| 881 |
"model.layers.23.self_attn.kv_b_proj.scales": "model-00005-of-00006.safetensors",
|
| 882 |
"model.layers.23.self_attn.kv_b_proj.weight": "model-00005-of-00006.safetensors",
|
|
|
|
| 1024 |
"model.layers.26.mlp.switch_mlp.up_proj.scales": "model-00006-of-00006.safetensors",
|
| 1025 |
"model.layers.26.mlp.switch_mlp.up_proj.weight": "model-00006-of-00006.safetensors",
|
| 1026 |
"model.layers.26.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
|
| 1027 |
+
"model.layers.26.self_attn.kv_a_layernorm.weight": "model-00006-of-00006.safetensors",
|
| 1028 |
+
"model.layers.26.self_attn.kv_a_proj_with_mqa.biases": "model-00006-of-00006.safetensors",
|
| 1029 |
+
"model.layers.26.self_attn.kv_a_proj_with_mqa.scales": "model-00006-of-00006.safetensors",
|
| 1030 |
+
"model.layers.26.self_attn.kv_a_proj_with_mqa.weight": "model-00006-of-00006.safetensors",
|
| 1031 |
"model.layers.26.self_attn.kv_b_proj.biases": "model-00006-of-00006.safetensors",
|
| 1032 |
"model.layers.26.self_attn.kv_b_proj.scales": "model-00006-of-00006.safetensors",
|
| 1033 |
"model.layers.26.self_attn.kv_b_proj.weight": "model-00006-of-00006.safetensors",
|
|
|
|
| 1061 |
"model.layers.3.mlp.switch_mlp.up_proj.scales": "model-00001-of-00006.safetensors",
|
| 1062 |
"model.layers.3.mlp.switch_mlp.up_proj.weight": "model-00001-of-00006.safetensors",
|
| 1063 |
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
|
| 1064 |
+
"model.layers.3.self_attn.kv_a_layernorm.weight": "model-00001-of-00006.safetensors",
|
| 1065 |
+
"model.layers.3.self_attn.kv_a_proj_with_mqa.biases": "model-00001-of-00006.safetensors",
|
| 1066 |
+
"model.layers.3.self_attn.kv_a_proj_with_mqa.scales": "model-00001-of-00006.safetensors",
|
| 1067 |
+
"model.layers.3.self_attn.kv_a_proj_with_mqa.weight": "model-00001-of-00006.safetensors",
|
| 1068 |
"model.layers.3.self_attn.kv_b_proj.biases": "model-00001-of-00006.safetensors",
|
| 1069 |
"model.layers.3.self_attn.kv_b_proj.scales": "model-00001-of-00006.safetensors",
|
| 1070 |
"model.layers.3.self_attn.kv_b_proj.weight": "model-00001-of-00006.safetensors",
|
|
|
|
| 1269 |
"model.layers.7.mlp.switch_mlp.up_proj.scales": "model-00002-of-00006.safetensors",
|
| 1270 |
"model.layers.7.mlp.switch_mlp.up_proj.weight": "model-00002-of-00006.safetensors",
|
| 1271 |
"model.layers.7.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
|
| 1272 |
+
"model.layers.7.self_attn.kv_a_layernorm.weight": "model-00002-of-00006.safetensors",
|
| 1273 |
+
"model.layers.7.self_attn.kv_a_proj_with_mqa.biases": "model-00002-of-00006.safetensors",
|
| 1274 |
+
"model.layers.7.self_attn.kv_a_proj_with_mqa.scales": "model-00002-of-00006.safetensors",
|
| 1275 |
+
"model.layers.7.self_attn.kv_a_proj_with_mqa.weight": "model-00002-of-00006.safetensors",
|
| 1276 |
"model.layers.7.self_attn.kv_b_proj.biases": "model-00002-of-00006.safetensors",
|
| 1277 |
"model.layers.7.self_attn.kv_b_proj.scales": "model-00002-of-00006.safetensors",
|
| 1278 |
"model.layers.7.self_attn.kv_b_proj.weight": "model-00002-of-00006.safetensors",
|