Text Generation
Transformers
Safetensors
GGUF
MLX
English
qwen3
code
agent
tool-calling
distillation
llama-cpp
open4bits
conversational
text-generation-inference
4-bit precision
Instructions to use Open4bits/LocoOperator-4B-mlx-4Bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Open4bits/LocoOperator-4B-mlx-4Bit with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Open4bits/LocoOperator-4B-mlx-4Bit") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Open4bits/LocoOperator-4B-mlx-4Bit") model = AutoModelForCausalLM.from_pretrained("Open4bits/LocoOperator-4B-mlx-4Bit") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - MLX
How to use Open4bits/LocoOperator-4B-mlx-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("Open4bits/LocoOperator-4B-mlx-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
- LM Studio
- vLLM
How to use Open4bits/LocoOperator-4B-mlx-4Bit with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Open4bits/LocoOperator-4B-mlx-4Bit" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Open4bits/LocoOperator-4B-mlx-4Bit", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Open4bits/LocoOperator-4B-mlx-4Bit
- SGLang
How to use Open4bits/LocoOperator-4B-mlx-4Bit with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Open4bits/LocoOperator-4B-mlx-4Bit" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Open4bits/LocoOperator-4B-mlx-4Bit", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Open4bits/LocoOperator-4B-mlx-4Bit" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Open4bits/LocoOperator-4B-mlx-4Bit", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Pi new
How to use Open4bits/LocoOperator-4B-mlx-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 "Open4bits/LocoOperator-4B-mlx-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": "Open4bits/LocoOperator-4B-mlx-4Bit" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Open4bits/LocoOperator-4B-mlx-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 "Open4bits/LocoOperator-4B-mlx-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 Open4bits/LocoOperator-4B-mlx-4Bit
Run Hermes
hermes
- MLX LM
How to use Open4bits/LocoOperator-4B-mlx-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 "Open4bits/LocoOperator-4B-mlx-4Bit"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "Open4bits/LocoOperator-4B-mlx-4Bit" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Open4bits/LocoOperator-4B-mlx-4Bit", "messages": [ {"role": "user", "content": "Hello"} ] }' - Docker Model Runner
How to use Open4bits/LocoOperator-4B-mlx-4Bit with Docker Model Runner:
docker model run hf.co/Open4bits/LocoOperator-4B-mlx-4Bit
| { | |
| "metadata": { | |
| "total_size": 2262920192, | |
| "total_parameters": 4022468096 | |
| }, | |
| "weight_map": { | |
| "model.embed_tokens.biases": "model.safetensors", | |
| "model.embed_tokens.scales": "model.safetensors", | |
| "model.embed_tokens.weight": "model.safetensors", | |
| "model.layers.0.input_layernorm.weight": "model.safetensors", | |
| "model.layers.0.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.0.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.0.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.0.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.0.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.0.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.0.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.0.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.0.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.0.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.0.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.0.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.0.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.0.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.0.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.0.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.0.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.0.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.0.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.0.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.0.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.0.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.0.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.0.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.1.input_layernorm.weight": "model.safetensors", | |
| "model.layers.1.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.1.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.1.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.1.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.1.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.1.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.1.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.1.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.1.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.1.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.1.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.1.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.1.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.1.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.1.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.1.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.1.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.1.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.1.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.1.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.1.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.1.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.1.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.1.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.10.input_layernorm.weight": "model.safetensors", | |
| "model.layers.10.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.10.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.10.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.10.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.10.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.10.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.10.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.10.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.10.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.10.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.10.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.10.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.10.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.10.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.10.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.10.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.10.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.10.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.10.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.10.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.10.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.10.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.10.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.10.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.11.input_layernorm.weight": "model.safetensors", | |
| "model.layers.11.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.11.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.11.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.11.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.11.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.11.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.11.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.11.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.11.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.11.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.11.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.11.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.11.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.11.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.11.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.11.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.11.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.11.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.11.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.11.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.11.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.11.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.11.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.11.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.12.input_layernorm.weight": "model.safetensors", | |
| "model.layers.12.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.12.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.12.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.12.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.12.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.12.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.12.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.12.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.12.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.12.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.12.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.12.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.12.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.12.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.12.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.12.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.12.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.12.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.12.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.12.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.12.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.12.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.12.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.12.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.13.input_layernorm.weight": "model.safetensors", | |
| "model.layers.13.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.13.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.13.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.13.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.13.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.13.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.13.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.13.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.13.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.13.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.13.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.13.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.13.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.13.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.13.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.13.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.13.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.13.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.13.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.13.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.13.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.13.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.13.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.13.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.14.input_layernorm.weight": "model.safetensors", | |
| "model.layers.14.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.14.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.14.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.14.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.14.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.14.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.14.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.14.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.14.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.14.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.14.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.14.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.14.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.14.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.14.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.14.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.14.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.14.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.14.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.14.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.14.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.14.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.14.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.14.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.15.input_layernorm.weight": "model.safetensors", | |
| "model.layers.15.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.15.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.15.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.15.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.15.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.15.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.15.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.15.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.15.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.15.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.15.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.15.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.15.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.15.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.15.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.15.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.15.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.15.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.15.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.15.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.15.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.15.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.15.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.15.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.16.input_layernorm.weight": "model.safetensors", | |
| "model.layers.16.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.16.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.16.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.16.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.16.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.16.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.16.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.16.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.16.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.16.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.16.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.16.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.16.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.16.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.16.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.16.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.16.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.16.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.16.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.16.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.16.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.16.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.16.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.16.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.17.input_layernorm.weight": "model.safetensors", | |
| "model.layers.17.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.17.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.17.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.17.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.17.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.17.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.17.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.17.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.17.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.17.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.17.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.17.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.17.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.17.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.17.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.17.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.17.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.17.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.17.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.17.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.17.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.17.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.17.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.17.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.18.input_layernorm.weight": "model.safetensors", | |
| "model.layers.18.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.18.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.18.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.18.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.18.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.18.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.18.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.18.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.18.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.18.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.18.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.18.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.18.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.18.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.18.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.18.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.18.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.18.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.18.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.18.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.18.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.18.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.18.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.18.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.19.input_layernorm.weight": "model.safetensors", | |
| "model.layers.19.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.19.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.19.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.19.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.19.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.19.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.19.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.19.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.19.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.19.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.19.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.19.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.19.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.19.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.19.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.19.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.19.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.19.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.19.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.19.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.19.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.19.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.19.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.19.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.2.input_layernorm.weight": "model.safetensors", | |
| "model.layers.2.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.2.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.2.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.2.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.2.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.2.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.2.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.2.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.2.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.2.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.2.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.2.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.2.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.2.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.2.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.2.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.2.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.2.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.2.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.2.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.2.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.2.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.2.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.2.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.20.input_layernorm.weight": "model.safetensors", | |
| "model.layers.20.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.20.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.20.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.20.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.20.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.20.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.20.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.20.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.20.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.20.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.20.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.20.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.20.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.20.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.20.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.20.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.20.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.20.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.20.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.20.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.20.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.20.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.20.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.20.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.21.input_layernorm.weight": "model.safetensors", | |
| "model.layers.21.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.21.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.21.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.21.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.21.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.21.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.21.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.21.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.21.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.21.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.21.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.21.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.21.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.21.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.21.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.21.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.21.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.21.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.21.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.21.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.21.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.21.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.21.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.21.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.22.input_layernorm.weight": "model.safetensors", | |
| "model.layers.22.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.22.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.22.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.22.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.22.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.22.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.22.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.22.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.22.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.22.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.22.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.22.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.22.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.22.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.22.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.22.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.22.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.22.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.22.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.22.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.22.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.22.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.22.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.22.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.23.input_layernorm.weight": "model.safetensors", | |
| "model.layers.23.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.23.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.23.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.23.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.23.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.23.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.23.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.23.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.23.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.23.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.23.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.23.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.23.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.23.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.23.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.23.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.23.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.23.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.23.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.23.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.23.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.23.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.23.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.23.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.24.input_layernorm.weight": "model.safetensors", | |
| "model.layers.24.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.24.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.24.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.24.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.24.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.24.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.24.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.24.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.24.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.24.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.24.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.24.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.24.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.24.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.24.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.24.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.24.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.24.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.24.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.24.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.24.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.24.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.24.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.24.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.25.input_layernorm.weight": "model.safetensors", | |
| "model.layers.25.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.25.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.25.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.25.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.25.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.25.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.25.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.25.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.25.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.25.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.25.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.25.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.25.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.25.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.25.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.25.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.25.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.25.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.25.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.25.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.25.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.25.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.25.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.25.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.26.input_layernorm.weight": "model.safetensors", | |
| "model.layers.26.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.26.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.26.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.26.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.26.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.26.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.26.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.26.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.26.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.26.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.26.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.26.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.26.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.26.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.26.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.26.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.26.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.26.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.26.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.26.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.26.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.26.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.26.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.26.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.27.input_layernorm.weight": "model.safetensors", | |
| "model.layers.27.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.27.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.27.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.27.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.27.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.27.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.27.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.27.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.27.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.27.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.27.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.27.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.27.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.27.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.27.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.27.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.27.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.27.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.27.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.27.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.27.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.27.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.27.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.27.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.28.input_layernorm.weight": "model.safetensors", | |
| "model.layers.28.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.28.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.28.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.28.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.28.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.28.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.28.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.28.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.28.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.28.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.28.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.28.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.28.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.28.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.28.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.28.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.28.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.28.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.28.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.28.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.28.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.28.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.28.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.28.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.29.input_layernorm.weight": "model.safetensors", | |
| "model.layers.29.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.29.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.29.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.29.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.29.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.29.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.29.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.29.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.29.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.29.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.29.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.29.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.29.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.29.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.29.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.29.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.29.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.29.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.29.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.29.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.29.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.29.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.29.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.29.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.3.input_layernorm.weight": "model.safetensors", | |
| "model.layers.3.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.3.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.3.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.3.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.3.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.3.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.3.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.3.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.3.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.3.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.3.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.3.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.3.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.3.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.3.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.3.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.3.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.3.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.3.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.3.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.3.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.3.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.3.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.3.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.30.input_layernorm.weight": "model.safetensors", | |
| "model.layers.30.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.30.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.30.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.30.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.30.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.30.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.30.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.30.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.30.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.30.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.30.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.30.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.30.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.30.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.30.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.30.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.30.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.30.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.30.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.30.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.30.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.30.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.30.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.30.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.31.input_layernorm.weight": "model.safetensors", | |
| "model.layers.31.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.31.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.31.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.31.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.31.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.31.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.31.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.31.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.31.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.31.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.31.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.31.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.31.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.31.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.31.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.31.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.31.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.31.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.31.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.31.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.31.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.31.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.31.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.31.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.32.input_layernorm.weight": "model.safetensors", | |
| "model.layers.32.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.32.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.32.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.32.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.32.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.32.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.32.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.32.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.32.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.32.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.32.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.32.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.32.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.32.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.32.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.32.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.32.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.32.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.32.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.32.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.32.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.32.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.32.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.32.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.33.input_layernorm.weight": "model.safetensors", | |
| "model.layers.33.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.33.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.33.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.33.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.33.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.33.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.33.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.33.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.33.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.33.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.33.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.33.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.33.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.33.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.33.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.33.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.33.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.33.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.33.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.33.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.33.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.33.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.33.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.33.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.34.input_layernorm.weight": "model.safetensors", | |
| "model.layers.34.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.34.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.34.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.34.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.34.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.34.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.34.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.34.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.34.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.34.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.34.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.34.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.34.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.34.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.34.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.34.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.34.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.34.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.34.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.34.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.34.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.34.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.34.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.34.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.35.input_layernorm.weight": "model.safetensors", | |
| "model.layers.35.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.35.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.35.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.35.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.35.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.35.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.35.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.35.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.35.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.35.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.35.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.35.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.35.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.35.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.35.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.35.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.35.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.35.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.35.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.35.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.35.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.35.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.35.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.35.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.4.input_layernorm.weight": "model.safetensors", | |
| "model.layers.4.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.4.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.4.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.4.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.4.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.4.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.4.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.4.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.4.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.4.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.4.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.4.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.4.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.4.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.4.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.4.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.4.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.4.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.4.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.4.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.4.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.4.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.4.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.4.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.5.input_layernorm.weight": "model.safetensors", | |
| "model.layers.5.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.5.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.5.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.5.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.5.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.5.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.5.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.5.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.5.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.5.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.5.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.5.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.5.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.5.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.5.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.5.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.5.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.5.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.5.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.5.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.5.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.5.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.5.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.5.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.6.input_layernorm.weight": "model.safetensors", | |
| "model.layers.6.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.6.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.6.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.6.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.6.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.6.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.6.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.6.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.6.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.6.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.6.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.6.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.6.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.6.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.6.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.6.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.6.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.6.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.6.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.6.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.6.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.6.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.6.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.6.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.7.input_layernorm.weight": "model.safetensors", | |
| "model.layers.7.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.7.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.7.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.7.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.7.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.7.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.7.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.7.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.7.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.7.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.7.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.7.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.7.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.7.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.7.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.7.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.7.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.7.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.7.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.7.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.7.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.7.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.7.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.7.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.8.input_layernorm.weight": "model.safetensors", | |
| "model.layers.8.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.8.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.8.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.8.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.8.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.8.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.8.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.8.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.8.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.8.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.8.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.8.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.8.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.8.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.8.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.8.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.8.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.8.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.8.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.8.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.8.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.8.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.8.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.8.self_attn.v_proj.weight": "model.safetensors", | |
| "model.layers.9.input_layernorm.weight": "model.safetensors", | |
| "model.layers.9.mlp.down_proj.biases": "model.safetensors", | |
| "model.layers.9.mlp.down_proj.scales": "model.safetensors", | |
| "model.layers.9.mlp.down_proj.weight": "model.safetensors", | |
| "model.layers.9.mlp.gate_proj.biases": "model.safetensors", | |
| "model.layers.9.mlp.gate_proj.scales": "model.safetensors", | |
| "model.layers.9.mlp.gate_proj.weight": "model.safetensors", | |
| "model.layers.9.mlp.up_proj.biases": "model.safetensors", | |
| "model.layers.9.mlp.up_proj.scales": "model.safetensors", | |
| "model.layers.9.mlp.up_proj.weight": "model.safetensors", | |
| "model.layers.9.post_attention_layernorm.weight": "model.safetensors", | |
| "model.layers.9.self_attn.k_norm.weight": "model.safetensors", | |
| "model.layers.9.self_attn.k_proj.biases": "model.safetensors", | |
| "model.layers.9.self_attn.k_proj.scales": "model.safetensors", | |
| "model.layers.9.self_attn.k_proj.weight": "model.safetensors", | |
| "model.layers.9.self_attn.o_proj.biases": "model.safetensors", | |
| "model.layers.9.self_attn.o_proj.scales": "model.safetensors", | |
| "model.layers.9.self_attn.o_proj.weight": "model.safetensors", | |
| "model.layers.9.self_attn.q_norm.weight": "model.safetensors", | |
| "model.layers.9.self_attn.q_proj.biases": "model.safetensors", | |
| "model.layers.9.self_attn.q_proj.scales": "model.safetensors", | |
| "model.layers.9.self_attn.q_proj.weight": "model.safetensors", | |
| "model.layers.9.self_attn.v_proj.biases": "model.safetensors", | |
| "model.layers.9.self_attn.v_proj.scales": "model.safetensors", | |
| "model.layers.9.self_attn.v_proj.weight": "model.safetensors", | |
| "model.norm.weight": "model.safetensors" | |
| } | |
| } |