Text Generation
MLX
Safetensors
Transformers
English
qwen2
cdxgen
sbom
supply-chain-security
conversational
text-generation-inference
4-bit precision
Instructions to use CycloneDX/cdx1-mlx-MXFP4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use CycloneDX/cdx1-mlx-MXFP4 with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("CycloneDX/cdx1-mlx-MXFP4") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Transformers
How to use CycloneDX/cdx1-mlx-MXFP4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="CycloneDX/cdx1-mlx-MXFP4") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("CycloneDX/cdx1-mlx-MXFP4") model = AutoModelForCausalLM.from_pretrained("CycloneDX/cdx1-mlx-MXFP4") 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
- LM Studio
- vLLM
How to use CycloneDX/cdx1-mlx-MXFP4 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "CycloneDX/cdx1-mlx-MXFP4" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CycloneDX/cdx1-mlx-MXFP4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/CycloneDX/cdx1-mlx-MXFP4
- SGLang
How to use CycloneDX/cdx1-mlx-MXFP4 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 "CycloneDX/cdx1-mlx-MXFP4" \ --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": "CycloneDX/cdx1-mlx-MXFP4", "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 "CycloneDX/cdx1-mlx-MXFP4" \ --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": "CycloneDX/cdx1-mlx-MXFP4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Pi
How to use CycloneDX/cdx1-mlx-MXFP4 with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "CycloneDX/cdx1-mlx-MXFP4"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "CycloneDX/cdx1-mlx-MXFP4" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use CycloneDX/cdx1-mlx-MXFP4 with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "CycloneDX/cdx1-mlx-MXFP4"
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default CycloneDX/cdx1-mlx-MXFP4
Run Hermes
hermes
- OpenClaw new
How to use CycloneDX/cdx1-mlx-MXFP4 with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "CycloneDX/cdx1-mlx-MXFP4"
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "CycloneDX/cdx1-mlx-MXFP4" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- MLX LM
How to use CycloneDX/cdx1-mlx-MXFP4 with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "CycloneDX/cdx1-mlx-MXFP4"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "CycloneDX/cdx1-mlx-MXFP4" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CycloneDX/cdx1-mlx-MXFP4", "messages": [ {"role": "user", "content": "Hello"} ] }' - Docker Model Runner
How to use CycloneDX/cdx1-mlx-MXFP4 with Docker Model Runner:
docker model run hf.co/CycloneDX/cdx1-mlx-MXFP4
Upload folder using huggingface_hub
Browse files- config.json +2 -2
- model-00001-of-00002.safetensors +2 -2
- model-00002-of-00002.safetensors +2 -2
- model.safetensors.index.json +85 -85
config.json
CHANGED
|
@@ -17,11 +17,11 @@
|
|
| 17 |
"num_key_value_heads": 8,
|
| 18 |
"pad_token_id": 151665,
|
| 19 |
"quantization": {
|
| 20 |
-
"group_size":
|
| 21 |
"bits": 4
|
| 22 |
},
|
| 23 |
"quantization_config": {
|
| 24 |
-
"group_size":
|
| 25 |
"bits": 4
|
| 26 |
},
|
| 27 |
"rms_norm_eps": 1e-06,
|
|
|
|
| 17 |
"num_key_value_heads": 8,
|
| 18 |
"pad_token_id": 151665,
|
| 19 |
"quantization": {
|
| 20 |
+
"group_size": 32,
|
| 21 |
"bits": 4
|
| 22 |
},
|
| 23 |
"quantization_config": {
|
| 24 |
+
"group_size": 32,
|
| 25 |
"bits": 4
|
| 26 |
},
|
| 27 |
"rms_norm_eps": 1e-06,
|
model-00001-of-00002.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ed3e62338f559a062f7c75420601897743f192436c71ddab440254bed31cfaf8
|
| 3 |
+
size 5343896747
|
model-00002-of-00002.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48b28da2093899c954f6efa5375c6d157d11d3502830895a86224d8836fc7a90
|
| 3 |
+
size 3888673587
|
model.safetensors.index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
{
|
| 2 |
"metadata": {
|
| 3 |
-
"total_size":
|
| 4 |
"total_parameters": 14770033664
|
| 5 |
},
|
| 6 |
"weight_map": {
|
|
@@ -556,17 +556,17 @@
|
|
| 556 |
"model.layers.27.self_attn.v_proj.biases": "model-00001-of-00002.safetensors",
|
| 557 |
"model.layers.27.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
|
| 558 |
"model.layers.27.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 559 |
-
"model.layers.28.input_layernorm.weight": "model-
|
| 560 |
-
"model.layers.28.mlp.down_proj.biases": "model-
|
| 561 |
-
"model.layers.28.mlp.down_proj.scales": "model-
|
| 562 |
-
"model.layers.28.mlp.down_proj.weight": "model-
|
| 563 |
-
"model.layers.28.mlp.gate_proj.biases": "model-
|
| 564 |
-
"model.layers.28.mlp.gate_proj.scales": "model-
|
| 565 |
-
"model.layers.28.mlp.gate_proj.weight": "model-
|
| 566 |
-
"model.layers.28.mlp.up_proj.biases": "model-
|
| 567 |
-
"model.layers.28.mlp.up_proj.scales": "model-
|
| 568 |
-
"model.layers.28.mlp.up_proj.weight": "model-
|
| 569 |
-
"model.layers.28.post_attention_layernorm.weight": "model-
|
| 570 |
"model.layers.28.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 571 |
"model.layers.28.self_attn.k_proj.biases": "model-00001-of-00002.safetensors",
|
| 572 |
"model.layers.28.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
|
|
@@ -582,32 +582,32 @@
|
|
| 582 |
"model.layers.28.self_attn.v_proj.biases": "model-00001-of-00002.safetensors",
|
| 583 |
"model.layers.28.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
|
| 584 |
"model.layers.28.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 585 |
-
"model.layers.29.input_layernorm.weight": "model-
|
| 586 |
-
"model.layers.29.mlp.down_proj.biases": "model-
|
| 587 |
-
"model.layers.29.mlp.down_proj.scales": "model-
|
| 588 |
-
"model.layers.29.mlp.down_proj.weight": "model-
|
| 589 |
-
"model.layers.29.mlp.gate_proj.biases": "model-
|
| 590 |
-
"model.layers.29.mlp.gate_proj.scales": "model-
|
| 591 |
-
"model.layers.29.mlp.gate_proj.weight": "model-
|
| 592 |
-
"model.layers.29.mlp.up_proj.biases": "model-
|
| 593 |
-
"model.layers.29.mlp.up_proj.scales": "model-
|
| 594 |
-
"model.layers.29.mlp.up_proj.weight": "model-
|
| 595 |
-
"model.layers.29.post_attention_layernorm.weight": "model-
|
| 596 |
-
"model.layers.29.self_attn.k_proj.bias": "model-
|
| 597 |
-
"model.layers.29.self_attn.k_proj.biases": "model-
|
| 598 |
-
"model.layers.29.self_attn.k_proj.scales": "model-
|
| 599 |
-
"model.layers.29.self_attn.k_proj.weight": "model-
|
| 600 |
-
"model.layers.29.self_attn.o_proj.biases": "model-
|
| 601 |
-
"model.layers.29.self_attn.o_proj.scales": "model-
|
| 602 |
-
"model.layers.29.self_attn.o_proj.weight": "model-
|
| 603 |
-
"model.layers.29.self_attn.q_proj.bias": "model-
|
| 604 |
-
"model.layers.29.self_attn.q_proj.biases": "model-
|
| 605 |
-
"model.layers.29.self_attn.q_proj.scales": "model-
|
| 606 |
-
"model.layers.29.self_attn.q_proj.weight": "model-
|
| 607 |
-
"model.layers.29.self_attn.v_proj.bias": "model-
|
| 608 |
-
"model.layers.29.self_attn.v_proj.biases": "model-
|
| 609 |
-
"model.layers.29.self_attn.v_proj.scales": "model-
|
| 610 |
-
"model.layers.29.self_attn.v_proj.weight": "model-
|
| 611 |
"model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 612 |
"model.layers.3.mlp.down_proj.biases": "model-00001-of-00002.safetensors",
|
| 613 |
"model.layers.3.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
|
|
@@ -634,58 +634,58 @@
|
|
| 634 |
"model.layers.3.self_attn.v_proj.biases": "model-00001-of-00002.safetensors",
|
| 635 |
"model.layers.3.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
|
| 636 |
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 637 |
-
"model.layers.30.input_layernorm.weight": "model-
|
| 638 |
-
"model.layers.30.mlp.down_proj.biases": "model-
|
| 639 |
-
"model.layers.30.mlp.down_proj.scales": "model-
|
| 640 |
-
"model.layers.30.mlp.down_proj.weight": "model-
|
| 641 |
-
"model.layers.30.mlp.gate_proj.biases": "model-
|
| 642 |
-
"model.layers.30.mlp.gate_proj.scales": "model-
|
| 643 |
-
"model.layers.30.mlp.gate_proj.weight": "model-
|
| 644 |
-
"model.layers.30.mlp.up_proj.biases": "model-
|
| 645 |
-
"model.layers.30.mlp.up_proj.scales": "model-
|
| 646 |
-
"model.layers.30.mlp.up_proj.weight": "model-
|
| 647 |
-
"model.layers.30.post_attention_layernorm.weight": "model-
|
| 648 |
-
"model.layers.30.self_attn.k_proj.bias": "model-
|
| 649 |
-
"model.layers.30.self_attn.k_proj.biases": "model-
|
| 650 |
-
"model.layers.30.self_attn.k_proj.scales": "model-
|
| 651 |
-
"model.layers.30.self_attn.k_proj.weight": "model-
|
| 652 |
-
"model.layers.30.self_attn.o_proj.biases": "model-
|
| 653 |
-
"model.layers.30.self_attn.o_proj.scales": "model-
|
| 654 |
-
"model.layers.30.self_attn.o_proj.weight": "model-
|
| 655 |
-
"model.layers.30.self_attn.q_proj.bias": "model-
|
| 656 |
-
"model.layers.30.self_attn.q_proj.biases": "model-
|
| 657 |
-
"model.layers.30.self_attn.q_proj.scales": "model-
|
| 658 |
-
"model.layers.30.self_attn.q_proj.weight": "model-
|
| 659 |
-
"model.layers.30.self_attn.v_proj.bias": "model-
|
| 660 |
-
"model.layers.30.self_attn.v_proj.biases": "model-
|
| 661 |
-
"model.layers.30.self_attn.v_proj.scales": "model-
|
| 662 |
-
"model.layers.30.self_attn.v_proj.weight": "model-
|
| 663 |
"model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 664 |
-
"model.layers.31.mlp.down_proj.biases": "model-
|
| 665 |
-
"model.layers.31.mlp.down_proj.scales": "model-
|
| 666 |
-
"model.layers.31.mlp.down_proj.weight": "model-
|
| 667 |
-
"model.layers.31.mlp.gate_proj.biases": "model-
|
| 668 |
-
"model.layers.31.mlp.gate_proj.scales": "model-
|
| 669 |
-
"model.layers.31.mlp.gate_proj.weight": "model-
|
| 670 |
"model.layers.31.mlp.up_proj.biases": "model-00002-of-00002.safetensors",
|
| 671 |
"model.layers.31.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
|
| 672 |
"model.layers.31.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 673 |
"model.layers.31.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 674 |
-
"model.layers.31.self_attn.k_proj.bias": "model-
|
| 675 |
-
"model.layers.31.self_attn.k_proj.biases": "model-
|
| 676 |
-
"model.layers.31.self_attn.k_proj.scales": "model-
|
| 677 |
-
"model.layers.31.self_attn.k_proj.weight": "model-
|
| 678 |
-
"model.layers.31.self_attn.o_proj.biases": "model-
|
| 679 |
-
"model.layers.31.self_attn.o_proj.scales": "model-
|
| 680 |
-
"model.layers.31.self_attn.o_proj.weight": "model-
|
| 681 |
-
"model.layers.31.self_attn.q_proj.bias": "model-
|
| 682 |
-
"model.layers.31.self_attn.q_proj.biases": "model-
|
| 683 |
-
"model.layers.31.self_attn.q_proj.scales": "model-
|
| 684 |
-
"model.layers.31.self_attn.q_proj.weight": "model-
|
| 685 |
-
"model.layers.31.self_attn.v_proj.bias": "model-
|
| 686 |
-
"model.layers.31.self_attn.v_proj.biases": "model-
|
| 687 |
-
"model.layers.31.self_attn.v_proj.scales": "model-
|
| 688 |
-
"model.layers.31.self_attn.v_proj.weight": "model-
|
| 689 |
"model.layers.32.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 690 |
"model.layers.32.mlp.down_proj.biases": "model-00002-of-00002.safetensors",
|
| 691 |
"model.layers.32.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
|
|
|
|
| 1 |
{
|
| 2 |
"metadata": {
|
| 3 |
+
"total_size": 9232427008,
|
| 4 |
"total_parameters": 14770033664
|
| 5 |
},
|
| 6 |
"weight_map": {
|
|
|
|
| 556 |
"model.layers.27.self_attn.v_proj.biases": "model-00001-of-00002.safetensors",
|
| 557 |
"model.layers.27.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
|
| 558 |
"model.layers.27.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 559 |
+
"model.layers.28.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 560 |
+
"model.layers.28.mlp.down_proj.biases": "model-00002-of-00002.safetensors",
|
| 561 |
+
"model.layers.28.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
|
| 562 |
+
"model.layers.28.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 563 |
+
"model.layers.28.mlp.gate_proj.biases": "model-00002-of-00002.safetensors",
|
| 564 |
+
"model.layers.28.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
|
| 565 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 566 |
+
"model.layers.28.mlp.up_proj.biases": "model-00002-of-00002.safetensors",
|
| 567 |
+
"model.layers.28.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
|
| 568 |
+
"model.layers.28.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 569 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 570 |
"model.layers.28.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 571 |
"model.layers.28.self_attn.k_proj.biases": "model-00001-of-00002.safetensors",
|
| 572 |
"model.layers.28.self_attn.k_proj.scales": "model-00001-of-00002.safetensors",
|
|
|
|
| 582 |
"model.layers.28.self_attn.v_proj.biases": "model-00001-of-00002.safetensors",
|
| 583 |
"model.layers.28.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
|
| 584 |
"model.layers.28.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 585 |
+
"model.layers.29.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 586 |
+
"model.layers.29.mlp.down_proj.biases": "model-00002-of-00002.safetensors",
|
| 587 |
+
"model.layers.29.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
|
| 588 |
+
"model.layers.29.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 589 |
+
"model.layers.29.mlp.gate_proj.biases": "model-00002-of-00002.safetensors",
|
| 590 |
+
"model.layers.29.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
|
| 591 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 592 |
+
"model.layers.29.mlp.up_proj.biases": "model-00002-of-00002.safetensors",
|
| 593 |
+
"model.layers.29.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
|
| 594 |
+
"model.layers.29.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 595 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 596 |
+
"model.layers.29.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
| 597 |
+
"model.layers.29.self_attn.k_proj.biases": "model-00002-of-00002.safetensors",
|
| 598 |
+
"model.layers.29.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
|
| 599 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 600 |
+
"model.layers.29.self_attn.o_proj.biases": "model-00002-of-00002.safetensors",
|
| 601 |
+
"model.layers.29.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
|
| 602 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 603 |
+
"model.layers.29.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
| 604 |
+
"model.layers.29.self_attn.q_proj.biases": "model-00002-of-00002.safetensors",
|
| 605 |
+
"model.layers.29.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
|
| 606 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 607 |
+
"model.layers.29.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
| 608 |
+
"model.layers.29.self_attn.v_proj.biases": "model-00002-of-00002.safetensors",
|
| 609 |
+
"model.layers.29.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
|
| 610 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 611 |
"model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 612 |
"model.layers.3.mlp.down_proj.biases": "model-00001-of-00002.safetensors",
|
| 613 |
"model.layers.3.mlp.down_proj.scales": "model-00001-of-00002.safetensors",
|
|
|
|
| 634 |
"model.layers.3.self_attn.v_proj.biases": "model-00001-of-00002.safetensors",
|
| 635 |
"model.layers.3.self_attn.v_proj.scales": "model-00001-of-00002.safetensors",
|
| 636 |
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 637 |
+
"model.layers.30.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 638 |
+
"model.layers.30.mlp.down_proj.biases": "model-00002-of-00002.safetensors",
|
| 639 |
+
"model.layers.30.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
|
| 640 |
+
"model.layers.30.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 641 |
+
"model.layers.30.mlp.gate_proj.biases": "model-00002-of-00002.safetensors",
|
| 642 |
+
"model.layers.30.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
|
| 643 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 644 |
+
"model.layers.30.mlp.up_proj.biases": "model-00002-of-00002.safetensors",
|
| 645 |
+
"model.layers.30.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
|
| 646 |
+
"model.layers.30.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 647 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 648 |
+
"model.layers.30.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
| 649 |
+
"model.layers.30.self_attn.k_proj.biases": "model-00002-of-00002.safetensors",
|
| 650 |
+
"model.layers.30.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
|
| 651 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 652 |
+
"model.layers.30.self_attn.o_proj.biases": "model-00002-of-00002.safetensors",
|
| 653 |
+
"model.layers.30.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
|
| 654 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 655 |
+
"model.layers.30.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
| 656 |
+
"model.layers.30.self_attn.q_proj.biases": "model-00002-of-00002.safetensors",
|
| 657 |
+
"model.layers.30.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
|
| 658 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 659 |
+
"model.layers.30.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
| 660 |
+
"model.layers.30.self_attn.v_proj.biases": "model-00002-of-00002.safetensors",
|
| 661 |
+
"model.layers.30.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
|
| 662 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 663 |
"model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 664 |
+
"model.layers.31.mlp.down_proj.biases": "model-00002-of-00002.safetensors",
|
| 665 |
+
"model.layers.31.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
|
| 666 |
+
"model.layers.31.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 667 |
+
"model.layers.31.mlp.gate_proj.biases": "model-00002-of-00002.safetensors",
|
| 668 |
+
"model.layers.31.mlp.gate_proj.scales": "model-00002-of-00002.safetensors",
|
| 669 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 670 |
"model.layers.31.mlp.up_proj.biases": "model-00002-of-00002.safetensors",
|
| 671 |
"model.layers.31.mlp.up_proj.scales": "model-00002-of-00002.safetensors",
|
| 672 |
"model.layers.31.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 673 |
"model.layers.31.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 674 |
+
"model.layers.31.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
| 675 |
+
"model.layers.31.self_attn.k_proj.biases": "model-00002-of-00002.safetensors",
|
| 676 |
+
"model.layers.31.self_attn.k_proj.scales": "model-00002-of-00002.safetensors",
|
| 677 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 678 |
+
"model.layers.31.self_attn.o_proj.biases": "model-00002-of-00002.safetensors",
|
| 679 |
+
"model.layers.31.self_attn.o_proj.scales": "model-00002-of-00002.safetensors",
|
| 680 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 681 |
+
"model.layers.31.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
| 682 |
+
"model.layers.31.self_attn.q_proj.biases": "model-00002-of-00002.safetensors",
|
| 683 |
+
"model.layers.31.self_attn.q_proj.scales": "model-00002-of-00002.safetensors",
|
| 684 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 685 |
+
"model.layers.31.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
| 686 |
+
"model.layers.31.self_attn.v_proj.biases": "model-00002-of-00002.safetensors",
|
| 687 |
+
"model.layers.31.self_attn.v_proj.scales": "model-00002-of-00002.safetensors",
|
| 688 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 689 |
"model.layers.32.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 690 |
"model.layers.32.mlp.down_proj.biases": "model-00002-of-00002.safetensors",
|
| 691 |
"model.layers.32.mlp.down_proj.scales": "model-00002-of-00002.safetensors",
|