Instructions to use rpreite/Apertus-8B-Instruct-2509-BNB-INT4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use rpreite/Apertus-8B-Instruct-2509-BNB-INT4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="rpreite/Apertus-8B-Instruct-2509-BNB-INT4") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("rpreite/Apertus-8B-Instruct-2509-BNB-INT4") model = AutoModelForCausalLM.from_pretrained("rpreite/Apertus-8B-Instruct-2509-BNB-INT4") 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]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use rpreite/Apertus-8B-Instruct-2509-BNB-INT4 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "rpreite/Apertus-8B-Instruct-2509-BNB-INT4" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "rpreite/Apertus-8B-Instruct-2509-BNB-INT4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/rpreite/Apertus-8B-Instruct-2509-BNB-INT4
- SGLang
How to use rpreite/Apertus-8B-Instruct-2509-BNB-INT4 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 "rpreite/Apertus-8B-Instruct-2509-BNB-INT4" \ --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": "rpreite/Apertus-8B-Instruct-2509-BNB-INT4", "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 "rpreite/Apertus-8B-Instruct-2509-BNB-INT4" \ --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": "rpreite/Apertus-8B-Instruct-2509-BNB-INT4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use rpreite/Apertus-8B-Instruct-2509-BNB-INT4 with Docker Model Runner:
docker model run hf.co/rpreite/Apertus-8B-Instruct-2509-BNB-INT4
| { | |
| "metadata": { | |
| "total_parameters": 8053338176, | |
| "total_size": 5748691272 | |
| }, | |
| "weight_map": { | |
| "lm_head.weight": "model-00002-of-00002.safetensors", | |
| "model.embed_tokens.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.0.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.0.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.0.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.0.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.1.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.1.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.1.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.1.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.10.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.10.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.10.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.10.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.11.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.11.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.11.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.11.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.12.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.12.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.12.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.12.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.13.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.13.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.13.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.13.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.14.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.14.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.14.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.14.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.15.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.15.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.15.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.15.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.16.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.16.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.16.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.16.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.17.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.17.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.17.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.17.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.18.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.18.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.18.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.18.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.19.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.19.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.19.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.19.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.2.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.2.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.2.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.2.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.20.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.20.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.20.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.20.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.21.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.21.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.21.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.21.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.22.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.22.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.22.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.22.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.23.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.23.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.23.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.23.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.24.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.24.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.24.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.24.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.25.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.25.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.25.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.25.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.26.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.26.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.26.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.26.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.27.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.27.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.27.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.27.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.28.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.28.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.28.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.28.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.29.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.29.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.29.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.29.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.3.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.3.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.3.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.3.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.30.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.30.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.30.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.30.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.31.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.31.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.31.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.31.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.4.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.4.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.4.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.4.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.5.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.5.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.5.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.5.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.6.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.6.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.6.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.6.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.7.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.7.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.7.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.7.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.8.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.8.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.8.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.8.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.9.attention_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.9.feedforward_layernorm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.act_fn.alpha_n": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.act_fn.alpha_p": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.act_fn.beta": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.act_fn.eps": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.down_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.down_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.down_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.down_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.down_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.up_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.up_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.up_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.up_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.9.mlp.up_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.k_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.k_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.k_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.k_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.k_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.k_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.o_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.o_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.o_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.o_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.o_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.q_norm.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.q_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.q_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.q_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.q_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.q_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.v_proj.weight.absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.v_proj.weight.nested_absmax": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.v_proj.weight.nested_quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.v_proj.weight.quant_map": "model-00001-of-00002.safetensors", | |
| "model.layers.9.self_attn.v_proj.weight.quant_state.bitsandbytes__nf4": "model-00001-of-00002.safetensors", | |
| "model.norm.weight": "model-00001-of-00002.safetensors" | |
| } | |
| } | |